@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

:root {
  --bege-fundo: #f9f6f2;
  --terracota-suave: #e1c1a9;
  --rosa-queimado: #d3a3a2;
  --cinza-chumbo: #4a4747;
  --branco: #ffffff;
  --footer-height: 62px; /* Altura padrão de fallback */
}

@font-face {
  font-family: "Amanda";
  src: url("fonts/Amanda.woff2") format("woff2"),
    url("fonts/Amanda.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bege-fundo);
  color: var(--cinza-chumbo);
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Amanda", serif;
  color: var(--cinza-chumbo);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

header.header-scroll {
  background-color: var(--branco);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 35px;
  width: auto;
  transition: opacity 0.4s ease;
  content: url("img/logo1.png");
}

header.header-scroll .logo-img {
  content: url("img/logo2.png");
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul li a {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: var(--branco);
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

header.header-scroll nav ul li a {
  color: var(--cinza-chumbo);
}

nav ul li a:hover {
  color: var(--rosa-queimado);
  text-decoration: none;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--rosa-queimado);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

a.icone-social::after {
  content: none;
}

#menu-hamburguer {
  display: none;
}

#menu-hamburguer .linha {
  background-color: var(--branco);
  transition: background-color 0.4s ease;
}

header.header-scroll #menu-hamburguer .linha {
  background-color: var(--cinza-chumbo);
}

.item-redes-sociais {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(221, 221, 221, 0.5);
  margin-left: 0;
  padding-left: 2rem;
  transition: border-color 0.4s ease;
}

header.header-scroll .item-redes-sociais {
  border-left-color: #ddd;
}

.container-icones {
  display: flex;
  gap: 1.05rem;
}

.icone-social {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--branco);
  transition: background-color 0.3s ease, transform 0.3s ease;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

header.header-scroll .icone-social {
  background-color: var(--cinza-chumbo);
}

.icone-social:hover {
  background-color: var(--rosa-queimado);
  transform: scale(1.1);
}

.icone-instagram {
  -webkit-mask-image: url(img/instagram.svg);
  mask-image: url(img/instagram.svg);
}

.icone-tiktok {
  -webkit-mask-image: url(img/tiktok.svg);
  mask-image: url(img/tiktok.svg);
}

#inicio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem 5%;
  color: var(--branco);
  overflow: hidden;
}

#inicio::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 71, 71, 0.6);
  z-index: -1;
}

#video-fundo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -2;
  background-size: cover;
}

#inicio h1 {
  font-family: "Amanda", serif;
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  max-width: 800px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--branco);
}

#inicio p {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  max-width: 600px;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

section[id] {
  scroll-margin-top: 80px;
}

main > section {
  padding: 4rem 5%;
  box-sizing: border-box;
}

.animar-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animar-scroll.visivel {
  opacity: 1;
  transform: translateY(0);
}

.container-geral {
  max-width: 1100px;
  margin: 0 auto;
}

#sobre,
#depoimentos,
#contato {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sobre-layout-novo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sobre-imagem-wrapper {
  max-width: 280px;
  width: 100%;
  margin-bottom: 2rem;
}

.sobre-imagem-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 8px solid var(--branco);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-texto-wrapper h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sobre-texto-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.credibilidade-box {
  background-color: transparent;
  border-left: 3px solid var(--rosa-queimado);
  padding: 0.5rem 1rem;
  margin: 2rem auto;
  text-align: left;
  max-width: 250px;
}

.numero-destaque {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cinza-chumbo);
  line-height: 1;
}

.texto-destaque {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--cinza-chumbo);
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.btn-principal {
  display: inline-block;
  background-color: var(--rosa-queimado);
  color: var(--branco);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.btn-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(211, 163, 162, 0.5);
}

.sobre-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10%;
  left: -20%;
  width: 70%;
  padding-bottom: 70%;
  background-color: var(--terracota-suave);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(50px);
}

#servicos {
  background-color: var(--branco);
}

.servicos-container-novo {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#servicos h2 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.servico-card-novo {
  background-color: var(--branco);
  border-radius: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card-novo:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.servico-imagem-wrapper,
.layout-imagem {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.servico-imagem-wrapper::after,
.layout-imagem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--terracota-suave);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.servico-card-novo:hover .servico-imagem-wrapper::after,
.layout-alternado:hover .layout-imagem::after {
  opacity: 0;
}

.servico-imagem {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.servico-conteudo {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.servico-conteudo h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.servico-conteudo p {
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.servico-beneficios {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.servico-beneficios li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: var(--terracota-suave);
  font-variation-settings: "FILL" 1;
}

.btn-servico {
  background-color: var(--rosa-queimado);
  color: var(--branco);
  border-radius: 50px;
  padding: 12px 28px;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-servico:hover {
  background-color: var(--cinza-chumbo);
  color: var(--branco);
}

.servico-conteudo .btn-servico {
  margin-top: auto;
  align-self: flex-start;
}

.detalhe-servico {
  background-color: var(--bege-fundo);
}

.detalhe-servico#taro-detalhes {
  background-color: var(--branco);
}

.detalhe-servico h2 {
  font-size: clamp(2.5rem, 7vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.detalhe-servico h3 {
  font-size: clamp(2rem, 6vw, 2.5rem);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.detalhe-servico p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.layout-alternado {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.layout-imagem img {
  width: 100%;
  border-radius: 15px;
}

.sub-secao {
  margin-bottom: 3rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.beneficio-item {
  background-color: var(--branco);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid #eee;
  font-size: 1rem;
}

#taro-detalhes .beneficio-item {
  background-color: var(--bege-fundo);
  border: 1px solid var(--terracota-suave);
}

.beneficio-item span:last-child {
  flex: 1;
}

.processo-container {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.processo-passo {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.passo-numero {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  background-color: var(--terracota-suave);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  font-family: "Open Sans", sans-serif;
}

.passo-texto h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#depoimentos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden; /* Alterado para visible no mobile */
}

#depoimentos h2 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2; /* Adicionado para padronizar */
}

.depoimentos-wrapper {
  max-width: 100%;
  position: relative;
}

.swiper {
  width: 100%;
  height: 500px;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 65%;
  max-width: 380px;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  filter: blur(3px) brightness(0.7);
  transform: scale(0.85);
}

.swiper-slide-active {
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: scale(1);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#contato {
  min-height: calc(100vh - var(--footer-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contato h2 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  text-align: center;
}

.subtitulo-secao {
  text-align: center;
  max-width: 650px;
  margin: 1rem auto 3rem auto;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contato-layout-simplificado {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contato-icone-principal {
  font-size: 128px;
  color: var(--terracota-suave);
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--rosa-queimado);
  color: var(--branco);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(211, 163, 162, 0.5);
}

.contato-redes {
  margin-top: 3rem;
}

.contato-redes h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contato-redes-sociais {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

#contato .icone-social {
  background-color: var(--cinza-chumbo);
}

#contato .icone-social:hover {
  background-color: var(--rosa-queimado);
}

#rodape {
  background-color: var(--cinza-chumbo);
  color: var(--bege-fundo);
  padding: 2rem 5%;
}

#rodape p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

#rodape a {
  color: var(--bege-fundo);
}

#rodape a:hover {
  color: var(--rosa-queimado);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(74, 71, 71, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-conteudo {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 85vh;
}

.lightbox-fechar {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--branco);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 1100;
  margin-top: 10px;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--cinza-chumbo);
  white-space: nowrap;
}

.dropdown.ativo .dropdown-menu {
  display: block;
}

.dropdown.ativo .dropdown-icon {
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  #menu-hamburguer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
  }

  #menu-hamburguer .linha {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  #menu-navegacao {
    display: none;
  }

  #menu-navegacao.ativo {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bege-fundo);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 40px;
    gap: 2rem;
    z-index: 1000;
  }

  #menu-navegacao.ativo li a {
    font-size: 1.2rem;
    color: var(--cinza-chumbo);
  }

  #menu-navegacao.ativo li a:hover {
    color: var(--rosa-queimado);
  }

  #menu-hamburguer.ativo .linha:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  #menu-hamburguer.ativo .linha:nth-child(2) {
    opacity: 0;
  }
  #menu-hamburguer.ativo .linha:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  #menu-hamburguer.ativo .linha {
    background-color: var(--cinza-chumbo);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    background-color: transparent;
    min-width: unset;
  }

  #menu-navegacao.ativo .icone-social {
    background-color: var(--cinza-chumbo);
  }

  .item-redes-sociais {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .visao-geral-link {
    display: none;
  }

  .dropdown.ativo .visao-geral-link {
    display: block;
  }

  /* --- AJUSTES MOBILE ANTERIORES --- */
  .logo-img {
    height: 25px;
  }

  #depoimentos .swiper {
    height: 350px;
  }

  /* --- CORREÇÃO ROBUSTA PARA O CARROSSEL MOBILE --- */

  /* 1. Garante que a seção não corte o conteúdo que vaza para os lados */
  #depoimentos {
    overflow: visible;
  }

  /* 2. Força cada imagem (slide) a ser mais estreita para revelar as vizinhas */
  #depoimentos .swiper-slide {
    width: 65% !important; /* Reduzindo a largura do slide central. 
                              O !important é uma segurança extra contra estilos da biblioteca Swiper. */
  }
}

@media (max-width: 768px) {
  #depoimentos .depoimentos-wrapper {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .sobre-layout-novo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "texto imagem";
    align-items: center;
    gap: 4rem;
    text-align: left;
  }

  .sobre-imagem-wrapper {
    grid-area: imagem;
    max-width: 400px;
    margin-bottom: 0;
  }

  .sobre-texto-wrapper {
    grid-area: texto;
  }

  .sobre-texto-wrapper p,
  .credibilidade-box {
    margin-left: 0;
    margin-right: 0;
  }

  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .layout-alternado {
    grid-template-columns: 1fr 1fr;
  }
}

.detalhe-servico#taro-detalhes .layout-alternado .layout-texto {
  order: 2;
}
