/* ===== VARIÁVEIS ===== */
:root {
  --verde-escuro: #2c4a3e;
  --verde: #3d6b57;
  --verde-claro: #7fa892;
  --areia: #f4efe6;
  --areia-escura: #e8dfd0;
  --terracota: #c67b5c;
  --terracota-claro: #e0a583;
  --texto: #2a2a26;
  --texto-suave: #5a5a52;
  --branco: #fffdf9;
  --sombra: 0 18px 50px -20px rgba(44, 74, 62, .35);
  --sombra-suave: 0 8px 30px -12px rgba(44, 74, 62, .25);
  --raio: 22px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.65;
  overflow-x: hidden
}

h1,
h2,
h3,
.serif {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  font-weight: 600
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap
}

.btn-primario {
  background: var(--terracota);
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(198, 123, 92, .7)
}

.btn-primario:hover {
  transform: translateY(-3px);
  background: #b56a4c;
  box-shadow: 0 16px 32px -12px rgba(198, 123, 92, .8)
}

.btn-secundario {
  background: transparent;
  color: var(--verde-escuro);
  border: 1.5px solid var(--verde-claro)
}

.btn-secundario:hover {
  background: var(--verde-escuro);
  color: #fff;
  border-color: var(--verde-escuro)
}

.btn-branco {
  background: #fff;
  color: var(--verde-escuro)
}

.btn-branco:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra)
}

/* NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: .4s
}

header.rolado {
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px -20px rgba(0, 0, 0, .4);
  padding: .7rem 0
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--verde-escuro);
  display: flex;
  align-items: center;
  gap: .6rem
}

.logo span {
  width: 34px;
  height: 34px;
  background: var(--terracota);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center
}

.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--texto-suave);
  transition: .3s;
  position: relative
}

.nav-links a:hover {
  color: var(--verde-escuro)
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracota);
  transition: .3s
}

.nav-links a:hover::after {
  width: 100%
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--verde-escuro);
  cursor: pointer
}

/* HERO */
.hero {
  padding: 9rem 0 5rem;
  position: relative;
  background: linear-gradient(160deg, var(--areia) 0%, #fbf7ef 60%)
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  height: 130%;
  background: radial-gradient(circle, rgba(127, 168, 146, .28), transparent 65%);
  z-index: 0
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(61, 107, 87, .1);
  color: var(--verde);
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem
}

.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--terracota);
  border-radius: 50%
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  color: var(--verde-escuro);
  margin-bottom: 1.3rem;
  font-weight: 700
}

.hero h1 em {
  color: var(--terracota);
  font-style: italic
}

.hero p {
  font-size: 1.15rem;
  color: var(--texto-suave);
  max-width: 520px;
  margin-bottom: 2.2rem
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-visual {
  position: relative
}

.hero-img {
  border-radius: 30px 30px 120px 30px;
  overflow: hidden;
  box-shadow: var(--sombra);
  aspect-ratio: 4/5
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.3rem;
  box-shadow: var(--sombra-suave);
  display: flex;
  align-items: center;
  gap: .8rem
}

.hero-badge-1 {
  bottom: 30px;
  left: -30px
}

.hero-badge-2 {
  top: 40px;
  right: -20px
}

.hero-badge .icone {
  width: 44px;
  height: 44px;
  background: var(--areia);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--verde-escuro)
}

.hero-badge small {
  font-size: .78rem;
  color: var(--texto-suave)
}

/* MARCAS/CONFIANÇA */
.trust {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--areia-escura)
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.trust-item strong {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--terracota);
  display: block
}

.trust-item span {
  font-size: .9rem;
  color: var(--texto-suave)
}

/* SEÇÕES */
section {
  padding: 6rem 0
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem
}

.sec-tag {
  color: var(--terracota);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .8rem;
  display: block
}

.sec-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--verde-escuro);
  margin-bottom: 1rem
}

.sec-head p {
  color: var(--texto-suave);
  font-size: 1.08rem
}

/* SOBRE */
.sobre {
  background: var(--areia)
}

.sobre-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center
}

.sobre-img {
  border-radius: 120px 30px 30px 30px;
  overflow: hidden;
  box-shadow: var(--sombra);
  aspect-ratio: 1/1
}

.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sobre-txt h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--verde-escuro);
  margin-bottom: 1.3rem
}

.sobre-txt p {
  color: var(--texto-suave);
  margin-bottom: 1.2rem
}

.sobre-lista {
  list-style: none;
  margin: 1.8rem 0
}

.sobre-lista li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-weight: 500
}

.sobre-lista li::before {
  content: '✓';
  background: var(--verde);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px
}

/* O QUE É */
.oque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem
}

.card {
  background: var(--branco);
  border: 1px solid var(--areia-escura);
  border-radius: var(--raio);
  padding: 2.2rem;
  transition: .4s
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra);
  border-color: transparent
}

.card .icone {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--verde), var(--verde-claro));
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem
}

.card h3 {
  font-size: 1.3rem;
  color: var(--verde-escuro);
  margin-bottom: .7rem
}

.card p {
  color: var(--texto-suave);
  font-size: .97rem
}

/* SERVIÇOS */
.servicos {
  background: var(--verde-escuro);
  color: #fff;
  border-radius: 40px;
  margin: 3rem 4%;
  padding: 6rem 0
}

.servicos .sec-head h2 {
  color: #fff
}

.servicos .sec-head p {
  color: rgba(255, 255, 255, .75)
}

.serv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: min(1000px, 90%);
  margin: 0 auto
}

.serv-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--raio);
  padding: 2rem;
  transition: .4s
}

.serv-card:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-5px)
}

.serv-card .num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--terracota-claro);
  margin-bottom: .8rem
}

.serv-card h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem
}

.serv-card p {
  color: rgba(255, 255, 255, .72);
  font-size: .95rem
}

/* COMO FUNCIONA */
.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative
}

.passo {
  text-align: center
}

.passo .circulo {
  width: 80px;
  height: 80px;
  background: var(--areia);
  border: 2px dashed var(--verde-claro);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--verde-escuro);
  margin: 0 auto 1.4rem
}

.passo h3 {
  font-size: 1.2rem;
  color: var(--verde-escuro);
  margin-bottom: .6rem
}

.passo p {
  color: var(--texto-suave);
  font-size: .95rem;
  max-width: 280px;
  margin: 0 auto
}

/* DEPOIMENTOS */
.depo {
  background: var(--areia)
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem
}

.depo-card {
  background: #fff;
  border-radius: var(--raio);
  padding: 2.2rem;
  box-shadow: var(--sombra-suave)
}

.depo-card .estrelas {
  color: var(--terracota);
  margin-bottom: 1rem;
  letter-spacing: 2px
}

.depo-card p {
  font-style: italic;
  color: var(--texto);
  margin-bottom: 1.4rem
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: .9rem
}

.depo-autor .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--verde-claro);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-family: 'Fraunces', serif
}

.depo-autor strong {
  display: block;
  color: var(--verde-escuro)
}

.depo-autor small {
  color: var(--texto-suave)
}

/* INSTAGRAM CTA */
.insta {
  text-align: center;
  background: linear-gradient(135deg, #fbf7ef, var(--areia));
  border-radius: 40px;
  margin: 0 4%;
  padding: 5rem 2rem
}

.insta-icone {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 14px 30px -10px rgba(220, 39, 67, .5)
}

.insta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--verde-escuro);
  margin-bottom: 1rem
}

.insta p {
  color: var(--texto-suave);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.08rem
}

.insta-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 2.5rem auto 0
}

.insta-galeria div {
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--verde-claro), var(--areia-escura));
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  transition: .4s;
  cursor: pointer
}

.insta-galeria div:hover {
  transform: scale(1.05);
  box-shadow: var(--sombra-suave)
}

/* FAQ */
.faq-lista {
  max-width: 760px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--areia-escura);
  padding: 1.4rem 0
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--verde-escuro);
  font-size: 1.1rem;
  gap: 1rem
}

.faq-q span {
  font-size: 1.5rem;
  color: var(--terracota);
  transition: .3s;
  flex-shrink: 0
}

.faq-item.ativo .faq-q span {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: .4s;
  color: var(--texto-suave)
}

.faq-item.ativo .faq-a {
  max-height: 200px;
  margin-top: .9rem
}

/* CTA FINAL */
.cta-final {
  background: var(--verde-escuro);
  color: #fff;
  text-align: center;
  border-radius: 40px;
  margin: 0 4% 4rem;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(198, 123, 92, .3), transparent 65%)
}

.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative
}

.cta-final p {
  color: rgba(255, 255, 255, .8);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  position: relative;
  font-size: 1.1rem
}

.cta-final .hero-cta {
  justify-content: center;
  position: relative
}

/* FOOTER */
footer {
  background: var(--areia);
  padding: 4rem 0 2rem
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.foot-col h4 {
  color: var(--verde-escuro);
  margin-bottom: 1.2rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem
}

.foot-col p,
.foot-col a {
  color: var(--texto-suave);
  font-size: .95rem;
  margin-bottom: .6rem;
  display: block;
  transition: .3s
}

.foot-col a:hover {
  color: var(--terracota)
}

.foot-social {
  display: flex;
  gap: .8rem;
  margin-top: 1rem
}

.foot-social a {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--verde-escuro);
  margin: 0;
  box-shadow: var(--sombra-suave)
}

.foot-social a:hover {
  background: var(--verde-escuro);
  color: #fff;
  transform: translateY(-3px)
}

.foot-bottom {
  border-top: 1px solid var(--areia-escura);
  padding-top: 2rem;
  text-align: center;
  color: var(--texto-suave);
  font-size: .88rem
}

/* WHATSAPP FLOAT */
.wpp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .6);
  z-index: 99;
  transition: .3s;
  color: #fff
}

.wpp:hover {
  transform: scale(1.1)
}

/* ANIMAÇÃO */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.vis {
  opacity: 1;
  transform: none
}

/* RESPONSIVO */
@media(max-width:900px) {

  .hero-grid,
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto
  }

  .oque-grid,
  .depo-grid,
  .passos,
  .serv-grid {
    grid-template-columns: 1fr
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: var(--branco);
    height: 100vh;
    width: 75%;
    padding: 6rem 2rem;
    box-shadow: -10px 0 40px -20px rgba(0, 0, 0, .4);
    transition: .4s;
    align-items: flex-start;
    gap: 1.8rem
  }

  .nav-links.aberto {
    right: 0
  }

  .menu-toggle {
    display: block;
    z-index: 101
  }

  .insta-galeria {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-badge-1 {
    left: 0
  }

  .hero-badge-2 {
    right: 0
  }
}

@media (max-width: 768px) {

  /* Hero: empilha imagem + badges, tira o position absolute problemático */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: relative;
    width: 100%;
  }

  .hero-badge {
    position: static;
    /* tira do "flutuante" que estava cortando */
    width: 100%;
    max-width: 100%;
    margin-top: 0.75rem;
    box-sizing: border-box;
  }

  .hero-badge-1,
  .hero-badge-2 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  /* Trust bar (+35 anos / Atendimento / Treinamentos / CRP) empilha em coluna */
  .trust-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .trust-item {
    width: 100%;
  }

  /* Qualquer texto grande tipo "Atendimento" não estoura mais a tela */
  h1,
  h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
  }

}