@import url('https://fonts.cdnfonts.com/css/garet');

*{
  font-family: 'Garet', sans-serif;
}

#scroll-animate {
  overflow: hidden;
}

#scroll-animate-main {
  width: 100%;
  left: 0;
  position: fixed;
}

header {
  width: 100%;
  height: 100%;
  background: url(../assets/background.png) no-repeat 50% 50%;
  top: 0;
  position: fixed;
  word-wrap: break-word;
}

footer {
  width: 100%;
  height: 150px;
  background-color: rgb(190, 142, 43);
  color: rgb(240, 230, 205);
  bottom: -300px;
  position: fixed;
}

.content {
  min-height: 100vh;
  background: #f4f4f4;
  position: relative;
  z-index: 1000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

h2 {
  max-width: 100vh;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 40px;
  color: rgb(190, 142, 43);
  font-family: "Rubik";
  font-weight: 600;
  text-align: left;
}

h3 {
  max-width: 800px;
  margin-bottom: 50px;
  font-size: 30px;
  color: rgb(190, 142, 43);
  font-family: "Rubik";
  font-weight: 300;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-picture-container {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
}



.profile-picture {
  width: 563px;
  height: 563px;
}

.quote-box {
  text-align: center;
}

.quote-box p {
  border: 1px solid #ccc;
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
  max-width: 400px;
  display: inline-block;
  font-size: 16px;
  color: rgb(190, 142, 43);
  font-family: "Rubik";
  font-weight: 300;
}

.wrapper-parallax {
  margin-top: 100%;
  margin-bottom: 300px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

span{
  font-size: 2vw; 
  color: rgb(190, 142, 43);
  text-shadow: 0px 4px 4px #282828;
}

.tituloBanner {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-family: Helvetica;
  font-size: 7vw;
  word-wrap: break-word;
  color: rgb(190, 142, 43);
  font-family: "Rubik";
  font-weight: 400;
  text-shadow: 0px 4px 4px #282828;
}

.content h1 {
  line-height: 1; 
  color: #db887d;
}

.content p {
  text-align: center;
  font-size: 18px;
  color: rgb(190, 142, 43);
  margin-top: 20px;
}

.museu{
  width: 20vw;
  height: auto;
  margin-right: 2vw;
}

.agendamento{
  font-size: 2vw;
  color:rgb(190, 142, 43);
}

footer h1 {
  line-height: 300px;
}

header,
footer,
#scroll-animate-main {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;

  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;

  -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0, 1);
  transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.icon-box {
  margin: 0 10px;
}

.icon-box img {
  width: 60px; /* Ajuste conforme necessário */
  height: 60px; /* Ajuste conforme necessário */
  border-radius: 50%;
  border: 2px solid #00000000; /* Cor da borda do ícone */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Adicionado box-shadow para o efeito de brilho */
}

.icon-box img:hover {
  border-color: #00000000; /* Cor da borda do ícone ao passar o mouse */
  box-shadow: 0 0 10px rgba(219, 136, 125, 0.7); /* Efeito de brilho ao passar o mouse */
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.header-text {
  word-wrap: break-word;
  position: absolute; /* Adicione esta linha */
  top: 10vh; /* Ajuste conforme necessário para posicionar o texto abaixo do h1 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 5vw;
  color: rgb(240, 230, 205);
  text-align: center;
  margin-top: 1vh;
  font-family: "Rubik";
  font-weight: 300;
}


.footer-content {
  display: flex;
  justify-content: space-between;
}

.contact-info,
.additional-info,
.copyright {
  margin-top: 0;
  flex: 1;
  text-align: center;
}

h4 {
  font-size: 20px;
  font-family: "Rubik";
  font-weight: 300;
  font-size: 20px;
}

h5 {
  margin: 5px 0;
  font-family: "Rubik";
  font-weight: 300;
  font-size: 15px;
}

.copyright {
  margin-top: 30px;
  font-size: 14px;
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.menu {
  padding: 50px;
  text-align: right;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline;
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: rgb(240, 230, 205);
  font-weight: bold;
  font-family: "Rubik";
}

.profile-section-container {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: left;
  justify-items: center;
  text-align: center;
  margin-left: 2vw;
}

@media screen and (max-width: 768px) {

  .museu{
    width: 50vw;
    height: auto;
  }

  .text-container{
    font-size: 2vw;
    margin-top: 2%;

  }

  .main-content{
    display: grid;
    width: 80vw;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    margin-left: 2vw;
  }

  .profile-section-container {
    font-size: 3vw;
    margin-left: 0;
    display: grid;
    align-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  span{
    font-size: 5vw; 
    color: rgb(190, 142, 43);
  }

  .tituloDepoimentos{
    font-size: 7vw;
  }

  .agendamento{
    font-size: 5vw;
    color:rgb(190, 142, 43);
  }
  
}

.profile-picture-container {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  margin-right: 20px; /* Ajuste a margem conforme necessário */
}

.profile-picture {
  width: 100%;
  height: auto;
  display: block;
}

.text-container {
  margin-top: 2%;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}
