* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; }

#sobre-nos,
#servicos,
#contato { 
  scroll-margin-top: 8rem; 
}          

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4.5rem;                          
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 .25rem .5rem rgba(0,0,0,.1);
  user-select: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #1e1e1e;
  text-decoration: none;
}

nav a:hover { 
  color: #d9b34c;
  transition: color 0.3s ease;
}


.banner {
  background: url(assets/img/banner.png) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 40.5rem;                               
  min-width: 53rem;                              
  margin: 0 2.5rem;
  gap: 8rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.banner h1 {
  font-size: 3rem;
  color: #fff;
  margin-left: 6.25rem;
  width: 31.5rem;
  font-weight: 300;
  user-select: none;
}

.banner button {
  align-self: flex-start;
  margin-left: 6.25rem;
  padding: 1.25rem;
  font-size: 1.25rem;
  border: none;
  border-radius: .625rem;
  background: #d9b34c;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background .5s;
}

.banner button:hover {
  background: #fff;
  color: #d9b34c;
}

.Cards {
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 75rem;
  margin: 4rem auto;
}

.card-diferente,
.card-normal {
  background: #fff;
  border: .125rem solid #d9b34c;
  border-radius: 1.25rem;
  padding: 2rem 1.25rem;
  width: 18.75rem;
  box-shadow: 0 .25rem .625rem rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}

.card-diferente { 
  width: 25rem; 
}

.card-diferente:hover,
.card-normal:hover {
  transform: translateY(-.3rem);
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.1);
}

.card-diferente img,
.card-normal img { 
  width: 2.5rem; 
  margin-bottom: 1.25rem; 
}

.card-diferente h5,
.card-normal h5 {
  font-size: 1.125rem;
  color: #d9b34c;
  margin-bottom: .625rem;
  font-weight: 500;
}

.card-diferente h6,
.card-normal h6 {
  font-size: .875rem;
  color: #d9b34c;
  font-weight: 300;
  line-height: 1.4;
}

.destaque {
  user-select: none;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 31rem;
  margin: 12.5rem 0;
  padding: 3rem 0;
  background: #d9b24a;
  overflow: visible;
}

.destaque .conteudo {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 75rem;
  position: relative;
}

.destaque .coluna-imagens {
  position: relative;
  left: 9.5rem;
  margin-top: -8rem;
}

.destaque .coluna-imagens img {
  position: absolute;
  width: 18.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.2);
}

.img-1 { 
  top: 0; 
  left: 0; 
}
.img-2 { 
  top: 17rem; 
  left: 6.25rem; 
}

.destaque .coluna-textos {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 37.5rem;
  margin-left: 2.5rem;
  color: #fff;
}

.destaque h3 { 
  font-size: 1.8rem;
  margin-bottom: .5rem;
  font-weight: 300; 
}
.destaque h4 {
  font-size: 1rem; 
  color: #fff3d8; 
  line-height: 1.5; 
}


.sobre-box {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 .125rem 1.875rem #2b2b2b67;
  margin-bottom: 15rem;
}

.sobre-box img {
   width: 31rem;
  
}

.texto-sobre { 
  max-width: 40rem; 
}

.texto-sobre h1 { 
  font-size: 4.75rem; font-weight: 400; 
}
.texto-sobre p  { 
  font-size: 1.25rem; font-weight: 400; 
}

.divisor {
  width: 40rem;
  height: .125rem;
  background: #d9b24a;
  margin: .25rem 0 2rem;
  border: none;
}




.servicos h1 { 
  user-select: none;
  font-size: 4.75rem;
  font-weight: 300;
  margin-left: 10rem;
  background-color: #d9b24a;
  color: #fff;
  padding-left: 5rem;
  border-radius: 1rem 0 0 1rem;
 }

.listas {
  user-select: none;
  display: flex;
  justify-content: space-evenly;
  margin: 6rem 0;
}

.lista-1 ul,
.lista-2 {
  font-size: 2.25rem;
  list-style: none;
 
}


.depoimento-box {
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  background: #d9b24a;
  padding-bottom: 9.5rem;
  justify-content: center;
}

.depoimento-box h1 {
   color: #fff;
   font-size: 3rem;
   font-weight: 300;
   margin: 0 auto;
  }

.underline {
   border-bottom: .125rem solid #fff;
   padding: 0 3rem; 
  }

.depoimentos-row {
  display: flex;
  justify-content: space-evenly;
}

.onda {
  height: 25rem;
  background: url(assets/img/wave.svg) center/cover no-repeat;
}

.depoimento {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 26.5rem;
  height: 44rem;
  border-radius: 5rem 5rem 2rem 2rem;
  box-shadow: 0 .125rem 1.875rem #2b2b2b67;
  transition: transform .3s, box-shadow .3s;
}

.depoimento:hover {
  transform: translateY(-.3rem);
  box-shadow: 0 .25rem 3rem #2b2b2b67;
}

.depoimento img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border-radius: 5rem 5rem 2rem 2rem;
  user-select: none;
}

.depoimento h2 {
  color: #d9b34c;
  font-size: 2rem;
  font-weight: 400;
  user-select: none;
}

.depoimento p {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 6.25rem;
  user-select: none;
}

.contato-box h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 6.25rem;
}

.tratamentos h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0;
}

.listas {
  display: flex;
  gap: 4rem;
}

.listas ul {
  list-style: none;
}

.listas li {
  margin-bottom: 0.5rem;
  color: #333;
}

.tratamentos img {
  height: 3rem;
}

.contato-infos {
  display: flex;
  margin-bottom: 3rem;
}

.contato-infos img {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.625rem;
  
}

.contato-infos h5 {
  margin: 0;
  font-weight: normal;
  font-size: 1rem;
}

.contato-infos a {
  text-decoration: none;
  color: inherit;
}

.contato-infos a:visited {
  color: inherit;
}

.contato-infos a:hover h5 {
  color: #d9b34c;
  transition: color 0.3s ease;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1e1e1e;
  border-radius: 5px;
  transition: 0.3s;
}
header {
  position: relative;
}
.mobile-img {
  display: none;
}
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  z-index: 999;
}

.whatsapp-fixo img {
  width: 40px;
  height: 40px;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
}




@media (max-width: 768px) {
  .contato-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 10px 15px;
  border: 1px solid #d9b34c;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}
  .whatsapp-fixo {
  bottom: 15px;
  right: 15px;
  padding: 8px;
}

.whatsapp-fixo img {
  width: 35px;
  height: 35px;
}
   .desktop-img {
    display: none;
  }
    .mobile-img {
    display: block;
  }
  header {
    height: 70px; /* altura do header */
    padding: 0 1rem;
  }

  header .logo {
    height: 38px;  
    width: auto;   
  }

  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
  }
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1e1e1e;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Animação ao abrir */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 65px;
  right: 1rem;
  background: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
nav ul.open {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
nav li {
    border-bottom: 0.25vh solid #1e1e1e2f;
    padding: 0vh 0vh 1vh 2vh;
  }

  .banner {
    margin: 0.5rem;
    height: auto;
    min-width: unset;
    gap: 1rem;
    padding: 2rem 1rem;
    border-radius: 1rem;
     margin-top: -2rem; /* Remove espaço extra acima */
    
  }

.banner h1 {
    font-size: 2rem;
    width: auto;
    margin-left: 0;
  }

 .banner button {
    margin-left: 0;
    font-size: 1rem;
    padding: 1rem;
  }


    .Cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }
 .card-diferente,
  .card-normal {
    width: 100%;
    max-width: 22rem;
  }
 .destaque {
    position: relative;
    
  }

  .destaque .coluna-imagens {
    position: absolute;
    bottom: -13rem; /* faz as imagens "descerem" para a próxima seção */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    width: auto;
  }

  .destaque .coluna-imagens img {
    position: static; /* remove posicionamento absoluto */
    width: 9.5rem;      /* tamanho proporcional */
    height: auto;
    border-radius: 1rem;
  }

.destaque .conteudo {
  flex-direction: column;
  align-items: center;
  
}

.destaque .coluna-textos {
  text-align: center;
  max-width: 100%;
  margin-top: -1rem;
}
  .destaque .coluna-textos {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
 .sobre-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 6rem;
  }

   .sobre-box img {
    width: 80%;
  }

  .texto-sobre {
    max-width: 100%;
  }

  .texto-sobre h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .texto-sobre p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .divisor {
    width: 6rem;
    margin: 1rem auto 2rem;
  }

  /* Serviços */
  .servicos h1 {
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
    background-color: #d9b24a;
    color: #fff;
    margin: 0 auto;
    border-radius: 1rem 1rem 0 0;
  }

  .listas {
    background: #fff;
    padding: 3rem 1rem;
    margin: 0;
  }

  .listas ul {
    font-size: 1.1rem;
    list-style: none;
    padding-left: 0;
  }

  .listas li {
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .onda {
    height: 5rem;
    background-size: cover;
  }
  
  .depoimentos-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .depoimento {
    width: 100%;
    max-width: 22rem;
    height: auto;
    padding-bottom: 2rem;
  }

  .depoimento img {
    height: auto;
    border-radius: 2rem 2rem 1rem 1rem;
  }

  .depoimento h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
  }

  .depoimento p {
    font-size: 1rem;
    padding: 1rem;
  }
   
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    gap: 3rem;
  }

  .tratamentos h1,
  .contato-box h1 {
    font-size: 1.5rem;
    
  }

  .contato-box h1 {
    margin-bottom: 2rem;
  }
 .contato-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo */
    gap: 0.5rem;
  }

  .contato-infos {
    display: flex;
    align-items: center; /* Alinha ícone e texto no meio */
    gap: 1rem;
  }

  .contato-infos img {
    width: 2rem;  /* Deixa todos os ícones do mesmo tamanho */
    height: 2rem;
  }

  .contato-infos h5 {
    font-size: 1rem;
    margin: 0;
  }
  .tratamentos img {
    display: none;
  }

}

