/* ============================================================
   Superar Espaço Terapêutico
   Paleta enxuta: 2 verdes + dourado + neutros + WhatsApp.
   Tipografia: Baloo 2 (títulos, rounded acolhedora) + Nunito (corpo/UI) + Caveat (acento pontual).
   ============================================================ */

:root {
  /* Marca */
  --ouro: #B57E2E;
  --ouro-claro: #E2AC55;
  --verde: #4E8F2C;          /* verde de ação (texto branco passa em peso bold) */
  --verde-escuro: #356018;   /* títulos, hover, links sobre branco */
  --verde-claro: #8FC95A;    /* acentos suaves, badges */
  --whatsapp: #25D366;

  /* Neutros */
  --tinta: #2B2722;
  --ink: #305018;            /* tinta dos títulos: verde-floresta, acolhedor e legível */
  --texto: #514c44;
  --branco: #ffffff;
  --creme: #F4EFE2;
  --verde-lav: #E8F1DA;      /* fundo verde muito claro */
  --linha: #E7E3D8;
  --linha-suave: rgba(78, 143, 44, .12);

  /* Sistema */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(43, 39, 34, .06);
  --shadow: 0 14px 40px rgba(43, 39, 34, .10);
  --shadow-lg: 0 24px 60px rgba(43, 39, 34, .14);
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --grad-ouro: linear-gradient(120deg, var(--ouro) 0%, var(--ouro-claro) 55%, #f0c277 100%);

  /* Tipografia */
  --font-display: "Baloo 2", "Nunito", system-ui, sans-serif;  /* títulos: rounded, calorosa */
  --font-ui: "Nunito", system-ui, -apple-system, sans-serif;      /* corpo, botões, rótulos */

  /* Easing (entradas com desaceleração natural, sem bounce) */
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.7;
  color: var(--texto);
  /* atmosfera suave em vez de branco duro */
  background:
    radial-gradient(1100px 720px at 100% 0%, rgba(143, 201, 90, .07), transparent 60%),
    radial-gradient(900px 680px at 0% 100%, rgba(226, 172, 85, .06), transparent 55%),
    #F7F8F2;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.1vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.45rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--verde-escuro); text-decoration: none; }

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

.text-grad { color: var(--ouro); }   /* destaque em dourado sólido */

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 800px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(32px, 5vw, 56px) 0; }
.section--cream { background: var(--creme); }
.section--green { background: var(--verde-lav); }
.center { text-align: center; }

.section__head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); }
.section__head.center { text-align: center; }
.section__lead { font-size: 1.125rem; color: var(--texto); margin: 0; }

.kicker {
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde-escuro);
  margin-bottom: .6rem;
}

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--verde); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--verde); outline-offset: 3px; border-radius: 6px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: "Nunito", sans-serif; font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease-out-quart), box-shadow .25s var(--ease-out-quart), background .2s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .08s; }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn--wpp { background: var(--verde); color: #fff; box-shadow: 0 8px 22px rgba(78, 143, 44, .32); }
.btn--wpp:hover { background: var(--verde-escuro); color: #fff; box-shadow: 0 12px 30px rgba(78, 143, 44, .4); }

.btn--ghost { background: transparent; color: var(--verde-escuro); border-color: var(--verde-claro); }
.btn--ghost:hover { background: var(--verde-lav); }

.ico-wpp { width: 1.25em; height: 1.25em; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--linha);
}
.header__inner { display: flex; align-items: center; gap: 18px; min-height: 74px; }

.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__img { height: 52px; width: auto; display: none; }
.logo__img.is-loaded { display: block; }
.logo__img.is-loaded ~ .logo__text { display: none; }
.logo__text { display: inline-grid; grid-template-columns: auto auto; align-items: center; column-gap: 8px; line-height: 1; }
.logo__leaf { grid-row: span 2; color: var(--verde-claro); width: 26px; height: 26px; }
.logo__leaf svg { width: 100%; height: 100%; }
.logo__name { font-family: "Caveat", cursive; font-size: 1.85rem; font-weight: 600; color: var(--ouro); line-height: .9; }
.logo__sub { font-family: "Nunito", sans-serif; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tinta); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  font-family: "Nunito", sans-serif; font-weight: 500; font-size: .92rem; white-space: nowrap;
  color: var(--tinta); padding: 8px 12px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--verde-escuro); background: var(--verde-lav); }

.header__cta { flex-shrink: 0; padding: 11px 20px; font-size: .92rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--tinta); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 74px 0 auto 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--linha);
  padding: 18px var(--gutter) 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 6px;
  animation: drop .25s ease;
}
.mobile-menu[hidden] { display: none; }
@keyframes drop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a { font-family: "Nunito", sans-serif; font-weight: 500; color: var(--tinta); padding: 12px 6px; border-bottom: 1px solid var(--linha); }
.mobile-menu .btn { margin-top: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(540px, 82vh, 760px);
  display: flex; align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  background:
    radial-gradient(1200px 640px at 82% -12%, #E4F1CF, transparent 62%),
    linear-gradient(180deg, #F3F8E8 0%, #F7F8F2 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(98deg, rgba(247,248,242,.97) 0%, rgba(247,248,242,.9) 26%, rgba(247,248,242,.55) 48%, rgba(247,248,242,.1) 70%, rgba(247,248,242,0) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero__inner { max-width: 600px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: "Nunito", sans-serif; font-weight: 600; font-size: .85rem; color: var(--verde-escuro); background: rgba(255,255,255,.85); border: 1px solid var(--linha-suave); padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--verde-claro); box-shadow: 0 0 0 4px rgba(143,201,90,.22); }

.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin: 0 0 16px; }
.hero__lead { font-size: 1.18rem; max-width: 33rem; margin: 0 0 26px; color: var(--texto); }
.hero__lead strong { font-weight: 800; color: var(--verde-escuro); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.ico-star { width: 18px; height: 18px; color: var(--ouro-claro); }

/* faixa de prova social sob o hero */
.trustbar { background: var(--verde-escuro); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 24px; padding-block: 14px; }
.trustbar__star { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; font-size: .95rem; }
.trustbar__star .ico-star { color: var(--ouro-claro); }
.trustbar__ages { font-family: "Nunito", sans-serif; font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.82); letter-spacing: .01em; }

/* mobile: véu mais forte e foco no topo da arte */
@media (max-width: 760px) {
  .hero { min-height: clamp(460px, 74vh, 600px); }
  .hero__bg img { object-position: 72% 18%; }
  .hero__scrim { background: linear-gradient(180deg, rgba(247,248,242,.82) 0%, rgba(247,248,242,.66) 38%, rgba(247,248,242,.9) 100%); }
  .hero__inner { max-width: 100%; }
  .trustbar .container { flex-direction: column; gap: 8px; }
  .trustbar__star { flex-direction: column; gap: 6px; text-align: center; }
  .trustbar__ages { text-align: center; }
}

/* ============================================================
   PLACEHOLDERS DE IMAGEM
   ============================================================ */
.img-ph { position: relative; background: var(--verde-lav); }
.img-ph img { transition: opacity .3s; }
.img-ph.is-missing img { opacity: 0; }
.img-ph.is-missing::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  font-family: "Nunito", sans-serif; font-weight: 600; font-size: .82rem; color: var(--verde-escuro);
  background:
    repeating-linear-gradient(45deg, rgba(143,201,90,.10) 0 12px, transparent 12px 24px),
    var(--verde-lav);
  border: 1.5px dashed var(--verde-claro);
  border-radius: inherit;
}
.img-ph--round, .img-ph--round.is-missing::after { border-radius: 50%; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature:hover .feature__ico { transform: scale(1.08) rotate(-3deg); }
.feature__ico { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--verde-lav); color: var(--verde-escuro); margin-bottom: 16px; transition: transform .3s var(--ease-out-quart); }
.feature__ico svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; font-size: .98rem; }

/* ============================================================
   SOBRE
   ============================================================ */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about__media { position: relative; }
.about__photo { aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.tag-placeholder { position: absolute; top: 14px; left: 14px; background: var(--ouro); color: #fff; font-family: "Nunito", sans-serif; font-weight: 600; font-size: .72rem; padding: 5px 12px; border-radius: 999px; letter-spacing: .03em; }

.quote-ethos {
  position: relative;
  font-family: "Caveat", cursive; font-size: 1.6rem; line-height: 1.4; color: var(--verde-escuro);
  margin: 26px 0; padding: 20px 24px 20px 56px;
  background: linear-gradient(135deg, var(--verde-lav), rgba(244, 239, 226, .6));
  border-radius: var(--radius);
}
.quote-ethos::before {
  content: "\201C";
  position: absolute; left: 18px; top: 6px;
  font-family: Georgia, serif; font-size: 3.4rem; line-height: 1; color: var(--verde-claro);
}
.about__rt { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--linha); }
.about__rt-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.about__rt-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about__rt strong { display: block; font-family: "Nunito", sans-serif; color: var(--tinta); }
.about__rt span { font-size: .9rem; color: var(--texto); }

/* ============================================================
   CUIDADO INTEGRADO (orbit)
   ============================================================ */
.orbit { display: flex; justify-content: center; padding: 8px 0; }
.orbit__stage { position: relative; width: 540px; max-width: 100%; aspect-ratio: 1; }

/* anéis decorativos */
.orbit__ring { position: absolute; inset: 5%; border-radius: 50%; border: 2px dashed rgba(78,143,44,.28); }
.orbit__ring::after { content: ""; position: absolute; inset: 15%; border-radius: 50%; border: 1px dashed rgba(181,126,46,.22); }

/* núcleo dourado */
.orbit__core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 196px; height: 196px; border-radius: 50%;
  background: linear-gradient(158deg, #5EA236 0%, #4E8F2C 55%, #3C7A1E 100%);
  color: #fff; box-shadow: 0 20px 46px rgba(60, 122, 30, .28);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 2px;
}
.orbit__core-leaf { width: 26px; height: 26px; margin-bottom: 4px; color: var(--ouro-claro); }
.orbit__core-leaf svg { width: 100%; height: 100%; }
.orbit__core strong { font-family: "Nunito", sans-serif; font-size: 1.5rem; font-weight: 800; }
.orbit__core span { font-size: .88rem; opacity: .92; }

/* especialidades orbitando */
.orbit__items { position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; animation: orbit-spin 80s linear infinite; }
.orbit__items li { position: absolute; top: 50%; left: 50%; width: 0; height: 0; transform: rotate(var(--a)) translate(212px) rotate(calc(-1 * var(--a))); }
.orbit__chip {
  position: absolute; left: 0; top: 0; transform: translate(-50%, -50%);
  animation: orbit-spin-rev 80s linear infinite;
  white-space: nowrap; font-family: "Nunito", sans-serif; font-weight: 600; font-size: .9rem; color: var(--verde-escuro);
  background: #fff; border: 1px solid var(--linha); padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-rev { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(-360deg); } }

/* tablet/mobile: vira lista de pills (sem círculo) */
@media (max-width: 820px) {
  .orbit__stage { width: auto; aspect-ratio: auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
  .orbit__ring { display: none; }
  .orbit__core { position: static; transform: none; width: 168px; height: 168px; }
  .orbit__items { position: static; inset: auto; animation: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 620px; }
  .orbit__items li { position: static; width: auto; height: auto; transform: none; }
  .orbit__chip { position: static; transform: none; animation: none; }
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spec { background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease-out-quart), box-shadow .2s, border-color .2s; }
.spec:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--verde-claro); }
.spec__art { width: 100%; aspect-ratio: 4 / 3; background: #F7F4EA; border-bottom: 1px solid var(--linha); }
.spec__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease-out-quart); }
.spec:hover .spec__art img { transform: scale(1.04); }
.spec h3 { margin: 18px 24px 8px; }
.spec p { font-size: .96rem; margin: 0 24px 24px; }
.spec__for { display: inline-block; font-family: "Nunito", sans-serif; font-weight: 600; font-size: .76rem; color: var(--ouro); background: #fbf4e6; padding: 5px 12px; border-radius: 999px; }

.approaches { margin-top: 34px; background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 24px 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; box-shadow: var(--shadow-sm); }
.approaches__label { font-family: "Nunito", sans-serif; font-weight: 700; color: var(--tinta); }
.approaches ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.approaches li { list-style: none; }
.approach-chip { font-family: "Nunito", sans-serif; font-weight: 600; font-size: .85rem; color: var(--verde-escuro); background: var(--verde-lav); padding: 8px 16px; border-radius: 999px; border: none; cursor: pointer; transition: background .15s, color .15s; }
.approach-chip:hover { background: #d9ebc6; }
.approach-chip[aria-expanded="true"] { background: var(--verde); color: #fff; }
.approach-panel { flex-basis: 100%; margin-top: 8px; background: var(--verde-lav); border-radius: var(--radius-sm); padding: 16px 20px; font-family: "Nunito", sans-serif; color: var(--texto); line-height: 1.6; font-size: .95rem; }
.approach-panel strong { color: var(--verde-escuro); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps { list-style: none; padding: 0; margin: 0 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease-out-quart), box-shadow .2s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__art { position: relative; width: 100%; aspect-ratio: 4 / 3; background: #F7F4EA; border-bottom: 1px solid var(--linha); }
.step__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease-out-quart); }
.step:hover .step__art img { transform: scale(1.04); }
.step__num { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--verde); color: #fff; font-family: "Nunito", sans-serif; font-weight: 700; font-size: 1.15rem; box-shadow: 0 4px 12px rgba(43, 39, 34, .25); }
.step h3 { margin: 16px 22px 6px; }
.step p { margin: 0 22px 22px; font-size: .95rem; }

/* ============================================================
   GALERIA / ESPAÇO
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; grid-auto-flow: dense; }
.gallery__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================================
   EQUIPE
   ============================================================ */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.team-card { flex: 0 1 200px; background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 18px 12px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease-out-quart), box-shadow .2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__photo { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin: 0 auto 12px; box-shadow: 0 0 0 3px var(--verde-lav); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card strong { display: block; font-family: "Nunito", sans-serif; font-weight: 700; color: var(--ink); line-height: 1.25; }
.team-card span { display: block; margin-top: 4px; font-family: "Nunito", sans-serif; font-weight: 600; font-size: .85rem; color: var(--ouro); }

/* Rolagem lateral da equipe + ver mais */
.team-scroll { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 6px 0 4px; max-width: 812px; margin: 0 auto; }
.team-scroll .team-card { flex: 0 0 172px; }
@media (max-width: 720px) {
  .team-scroll { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; gap: 12px; padding-bottom: 16px; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--verde-claro) transparent; }
  .team-scroll::-webkit-scrollbar { height: 8px; }
  .team-scroll::-webkit-scrollbar-thumb { background: var(--verde-claro); border-radius: 999px; }
  .team-scroll .team-card { flex: 0 0 43%; max-width: 190px; scroll-snap-align: start; }
}
.team-card .team-card__esp { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.team-card .team-card__esp.is-open { -webkit-line-clamp: unset; overflow: visible; }
.team-card__more { margin-top: 6px; background: none; border: none; color: var(--verde-escuro); font-family: var(--font-ui); font-weight: 700; font-size: .8rem; cursor: pointer; padding: 2px 4px; }
.team-card__more:hover { text-decoration: underline; }

/* Faixa de convênios */
.planos-band { background: var(--verde-lav); padding: 24px 0; }
.planos-band__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.planos-band__label { color: var(--verde-escuro); font-family: var(--font-ui); font-weight: 700; font-size: 1rem; }
.planos-band__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; padding: 0; margin: 0; }
.planos-band__item { height: 40px; display: flex; align-items: center; justify-content: center; }
.planos-band__item img { height: 36px; width: auto; display: block; }

/* Depoimentos estilo Google */
.greviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.greview { background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.greview__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.greview__avatar { display: none; }
.greview__who { display: flex; flex-direction: column; min-width: 0; }
.greview__name { font-family: var(--font-ui); font-weight: 700; color: var(--tinta); font-size: .98rem; line-height: 1.2; }
.greview__src { display: flex; align-items: center; gap: 5px; font-size: .76rem; color: #8a857b; margin-top: 2px; }
.greview__g { width: 15px; height: 15px; flex-shrink: 0; }
.greview__stars { color: #FBBC04; letter-spacing: 2px; font-size: 1.02rem; margin-bottom: 8px; }
.greview blockquote { margin: 0; font-family: var(--font-ui); font-size: .96rem; line-height: 1.55; color: var(--texto); }
.team-note { margin-top: 28px; font-size: .95rem; color: var(--texto); }

/* ============================================================
   FUNDADORA
   ============================================================ */
.founder { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.founder__photo { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.founder__role { font-family: var(--font-ui); font-weight: 700; color: var(--ouro); margin: 2px 0 16px; }
.founder__content p { margin: 0 0 12px; }
.founder__extra { margin-top: clamp(30px, 4vw, 48px); }
.formacao { max-width: 640px; margin-top: 18px; }
.formacao > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid var(--verde); color: var(--verde-escuro); font-family: var(--font-ui); font-weight: 700; font-size: 1rem; padding: 11px 22px; border-radius: 999px; box-shadow: var(--shadow-sm); transition: background .15s; }
.formacao > summary:hover { background: var(--verde-lav); }
.formacao > summary::-webkit-details-marker { display: none; }
.formacao > summary::after { content: "+"; font-size: 1.2rem; line-height: 1; color: var(--verde); font-weight: 800; }
.formacao[open] > summary::after { content: "\2212"; }
.formacao__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.formacao__list li { position: relative; padding-left: 26px; color: var(--texto); font-family: var(--font-ui); font-size: .97rem; }
.formacao__list li::before { content: ""; position: absolute; left: 6px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--verde); }
.founder__edu h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.2rem; margin: 0 0 14px; }
.founder__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.founder__chips li { background: var(--branco); border: 1px solid var(--linha); border-radius: 999px; padding: 8px 15px; font-family: var(--font-ui); font-weight: 600; font-size: .88rem; color: var(--verde-escuro); }
.founder__quote { margin: 0; font-family: "Caveat", cursive; font-size: 1.5rem; line-height: 1.42; color: var(--verde-escuro); background: var(--verde-lav); border-radius: var(--radius); padding: 22px 26px; }
@media (max-width: 980px) {
  .founder, .founder__extra { grid-template-columns: 1fr; }
  .founder__photo { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   CONVÊNIOS
   ============================================================ */
.convenios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 14px; }
.convenio-ph { display: flex; align-items: center; justify-content: center; height: 90px; background: #fff; border: 1.5px dashed var(--linha); border-radius: var(--radius-sm); color: #b9b2a4; font-family: "Nunito", sans-serif; font-weight: 600; font-size: .82rem; }
.convenio { display: flex; align-items: center; justify-content: center; height: 90px; background: #fff; border: 1px solid var(--linha); border-radius: var(--radius-sm); color: var(--verde-escuro); font-family: "Nunito", sans-serif; font-weight: 700; font-size: 1.02rem; text-align: center; padding: 0 14px; box-shadow: var(--shadow-sm); }
.convenios__obs { text-align: center; font-size: .9rem; color: var(--texto); margin: 0 0 4px; }
.validade { max-width: 720px; margin: 40px auto 0; background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-sm); }
.validade__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.3rem; text-align: center; margin: 0 0 10px; }
.validade__intro { text-align: center; color: var(--texto); margin: 0 auto 16px; max-width: 560px; }
.validade__pontos { list-style: none; padding: 0; margin: 0 auto 22px; max-width: 520px; display: grid; gap: 9px; }
.validade__pontos li { position: relative; padding-left: 24px; font-size: .95rem; color: var(--texto); }
.validade__pontos li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--verde); }
.validade__wrap { overflow-x: auto; }
.validade__table { width: 100%; border-collapse: collapse; }
.validade__table th { background: var(--verde-lav); color: var(--verde-escuro); font-family: var(--font-ui); font-weight: 700; font-size: .8rem; letter-spacing: .03em; text-transform: uppercase; padding: 12px 16px; text-align: left; white-space: nowrap; }
.validade__table th:last-child { text-align: right; }
.validade__table td { padding: 12px 16px; border-top: 1px solid var(--linha); font-weight: 600; color: var(--tinta); }
.validade__table td:last-child { text-align: right; }
.validade__badge { display: inline-block; padding: 4px 13px; border-radius: 999px; font-weight: 700; font-size: .85rem; }
.validade__badge--long { background: var(--verde-lav); color: var(--verde-escuro); }
.validade__badge--short { background: rgba(181, 126, 46, .14); color: #8a5a12; }
.validade__nota { text-align: center; font-size: .9rem; color: var(--texto); margin: 18px 0 0; }
.validade__nota a { color: var(--verde-escuro); font-weight: 700; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: #fff; border: 1px solid var(--linha); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column; gap: 12px; }
.testi__stars { color: var(--ouro-claro); letter-spacing: 2px; font-size: 1.05rem; }
.testi blockquote { margin: 0; font-size: 1.05rem; color: var(--tinta); font-weight: 500; line-height: 1.55; }
.testi figcaption { font-family: "Nunito", sans-serif; font-weight: 600; font-size: .9rem; color: var(--verde-escuro); margin-top: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--linha); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: "Nunito", sans-serif; font-weight: 600; color: var(--tinta); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--verde); border-radius: 2px; transition: transform .25s; }
.faq__plus::before { inset: 7px 0; height: 2px; }
.faq__plus::after { inset: 0 7px; width: 2px; }
.faq details[open] .faq__plus::after { transform: scaleY(0); }
.faq__body { padding: 0 22px 20px; }
.faq__body p { margin: 0; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.contato__list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 18px; }
.contato__list li { display: flex; gap: 14px; align-items: flex-start; }
.contato__ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: #fff; color: var(--verde-escuro); border: 1px solid var(--linha); flex-shrink: 0; }
.contato__ico svg { width: 22px; height: 22px; }
.contato__list strong { display: block; font-family: "Nunito", sans-serif; color: var(--tinta); }
.contato__list span { font-size: .96rem; }
.contato__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.contato__map iframe { width: 100%; height: 100%; min-height: 380px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--tinta); color: #d8d2c7; padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { margin-top: 14px; font-size: .95rem; max-width: 32ch; }
.logo__text--footer .logo__name { color: var(--ouro-claro); }
.logo__text--footer .logo__sub { color: #b6b0a4; }
.footer__col h4 { font-family: "Nunito", sans-serif; font-size: .95rem; color: #fff; margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; color: #cfc9bd; font-size: .94rem; margin-bottom: 9px; }
.footer__col a:hover { color: var(--verde-claro); }
.footer__bottom { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #a39d91; text-align: center; }
.footer__link { color: #cfc9bd; text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer__link:hover { color: var(--verde-claro); }

/* ============================================================
   FOLHAS FLUTUANTES (geradas via JS)
   ============================================================ */
.leaf-field { position: fixed; inset: 0; z-index: 60; pointer-events: none; overflow: hidden; }
.leaf-field .lf { position: absolute; top: 0; left: 0; will-change: transform; }
.leaf-field svg { display: block; }

/* ============================================================
   LIGHTBOX DA GALERIA
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: clamp(12px, 4vw, 48px); background: rgba(22, 28, 16, .92); animation: lb-fade .2s ease; }
.lightbox[hidden] { display: none; }
html.lb-open .header { visibility: hidden; }   /* header tem backdrop-filter e "fura" o empilhamento */
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 14px; box-shadow: 0 24px 70px rgba(0, 0, 0, .55); }
.lightbox__close, .lightbox__nav { position: absolute; display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; color: #fff; background: rgba(255, 255, 255, .14); border-radius: 50%; transition: background .2s, transform .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .28); }
.lightbox__close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 1.9rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.1rem; line-height: 1; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }
.gallery__item { cursor: zoom-in; }
@media (max-width: 560px) { .lightbox__nav { width: 44px; height: 44px; font-size: 1.8rem; } }

/* ============================================================
   REVELAÇÃO NO SCROLL (JS adiciona .js no html e .is-in nos itens)
   Conteúdo é visível por padrão; o estado oculto só existe com JS ativo.
   ============================================================ */
.js .reveal-item { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out-quart), transform .7s var(--ease-out-quart); }
.js .reveal-item.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .cards-3, .spec-grid, .steps, .testi-grid, .convenios { grid-template-columns: repeat(2, 1fr); }
  .contato__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .cards-3, .spec-grid, .steps, .testi-grid { grid-template-columns: 1fr; }
  .convenios { grid-template-columns: repeat(2, 1fr); }
  .hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--tall, .gallery__item--wide { grid-column: auto; grid-row: auto; }
}

/* Galeria e depoimentos em rolagem lateral no mobile (mesmo padrão do .team-scroll) */
@media (max-width: 720px) {
  .gallery { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 12px; padding-bottom: 16px; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--verde-claro) transparent; }
  .gallery::-webkit-scrollbar { height: 8px; }
  .gallery::-webkit-scrollbar-thumb { background: var(--verde-claro); border-radius: 999px; }
  .gallery__item, .gallery__item--tall, .gallery__item--wide { flex: 0 0 76%; max-width: 320px; height: 230px; scroll-snap-align: start; }

  .greviews { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 14px; padding-bottom: 16px; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--verde-claro) transparent; }
  .greviews::-webkit-scrollbar { height: 8px; }
  .greviews::-webkit-scrollbar-thumb { background: var(--verde-claro); border-radius: 999px; }
  .greview { flex: 0 0 80%; max-width: 320px; margin: 0; scroll-snap-align: start; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal-item { opacity: 1 !important; transform: none !important; }
}
