/* Brazu — Treinamento e Consultoria sobre Café
   Tokens vindos do design (Claude Design → Brazu Site.dc.html) */

:root {
  --green: #16300d;
  --cream: #f2ebdd;
  --sand: #e8e0cf;
  --wine: #8f1220;
  --gold: #d8c15c;
  --olive: #5c5334;
  --ink-72: rgba(22, 48, 13, .72);
  --ink-62: rgba(22, 48, 13, .74);
  --ink-55: rgba(22, 48, 13, .72);
  --line: rgba(22, 48, 13, .18);
  --line-strong: rgba(22, 48, 13, .35);
  --cream-65: rgba(242, 235, 221, .65);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  /* centraliza 1152px de conteúdo em telas largas; fundo vai até a borda */
  --pad-x: max(64px, calc((100% - 1152px) / 2));
  --ease: cubic-bezier(.16, 1, .3, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--green); }
h1, h2, h3, h4 { margin: 0; font-weight: 300; }
p { margin: 0; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
::placeholder { color: rgba(22, 48, 13, .55); }

/* clip (nao hidden): recorta o transbordo lateral sem virar scroll container — hidden mata o sticky da nav */
.page { background: var(--cream); overflow-x: clip; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.serif { font-family: var(--serif); }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .24em; color: var(--wine); text-transform: uppercase; }
.deco { position: absolute; pointer-events: none; user-select: none; }

/* ---------- animações ---------- */
@keyframes rev { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes girar { to { transform: rotate(360deg); } }
@keyframes desenha { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes sobe { to { translate: 0 -70px; } }
@keyframes desce { to { translate: 0 60px; } }
@keyframes progresso { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.rev {
  animation: rev .8s linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}
/* cascata: quando os cards dividem a mesma linha, cada um entra um pouco depois */
.gallery .rev:nth-child(3n+2) { animation-range: entry 0% cover 36%; }
.gallery .rev:nth-child(3n) { animation-range: entry 0% cover 44%; }
.journey .step:nth-child(3) { animation-range: entry 0% cover 33%; }
.journey .step:nth-child(4) { animation-range: entry 0% cover 38%; }
.journey .step:nth-child(5) { animation-range: entry 0% cover 43%; }
.journey .step:nth-child(6) { animation-range: entry 0% cover 48%; }
.team-grid .person:nth-child(2) { animation-range: entry 0% cover 36%; }
.team-grid .person:nth-child(3) { animation-range: entry 0% cover 44%; }
.reels .reel:nth-child(even) { animation-range: entry 0% cover 38%; }

/* barra de progresso de leitura */
.progresso {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 40;
  background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  animation: progresso linear both;
  animation-timeline: scroll(root);
}

/* folhas decorativas derivam devagar com o scroll */
.hero-bg-l, .hero-bg-r, .team-bg, .contact-bg {
  animation: sobe linear both;
  animation-timeline: view();
  animation-range: cover 0% cover 100%;
}
.hero-bg-r, .contact-bg { animation-name: desce; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .progresso { display: none; }
  .cta-fixo { translate: 0 !important; }
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 34px; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  /* gradiente de 200%: a cor de hover entra varrendo da esquerda */
  background-size: 200% 100%; background-position: 100% 0; background-repeat: no-repeat;
  transition: background-position .45s var(--ease), color .35s, border-color .35s;
}
.btn-green { background-image: linear-gradient(to right, var(--wine) 50%, var(--green) 50%); color: var(--cream); }
.btn-wine { background-image: linear-gradient(to right, var(--green) 50%, var(--wine) 50%); color: var(--cream); }
.btn-ghost { border: 1px solid rgba(22, 48, 13, .3); color: var(--green); background-image: linear-gradient(to right, rgba(22, 48, 13, .09) 50%, transparent 50%); }
.btn:hover { background-position: 0 0; }
.btn-green:hover, .btn-wine:hover { color: var(--cream); }
.btn-ghost:hover { color: var(--green); border-color: var(--line-strong); }
.link-line {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); padding: 12px 0 5px;
  white-space: nowrap;
  /* camada 1: traco vinho que cresce no hover; camada 2: linha de repouso */
  background-image: linear-gradient(var(--wine), var(--wine)), linear-gradient(var(--line-strong), var(--line-strong));
  background-repeat: no-repeat; background-position: 0 100%, 0 100%;
  background-size: 0 1px, 100% 1px;
  transition: color .3s, background-size .45s var(--ease);
}
.link-line:hover { color: var(--wine); background-size: 100% 1px, 100% 1px; }

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px max(52px, calc((100% - 1176px) / 2)); background: var(--green);
  position: sticky; top: 0; z-index: 20;
  animation: nav-encolhe linear both;
  animation-timeline: scroll(root);
  animation-range: 0 140px;
}
@keyframes nav-encolhe {
  to { padding-top: 8px; padding-bottom: 8px; box-shadow: 0 8px 26px rgba(22, 48, 13, .26); }
}
.nav-logo {
  height: 66px; width: auto;
  animation: logo-encolhe linear both;
  animation-timeline: scroll(root);
  animation-range: 0 140px;
}
@keyframes logo-encolhe { to { height: 46px; } }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--cream-65); }
.nav-links a {
  color: inherit; padding-bottom: 4px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0 1px;
  transition: color .3s, background-size .4s var(--ease);
}
.nav-links a:hover, .nav-links a.ativo { color: var(--gold); background-size: 100% 1px; }
.nav-cta {
  background-image: linear-gradient(to right, var(--gold) 50%, var(--wine) 50%);
  background-size: 200% 100%; background-position: 100% 0; background-repeat: no-repeat;
  color: #f6f3e9; padding: 12px 20px;
  transition: background-position .45s var(--ease), color .35s;
}
.nav-cta:hover { background-position: 0 0; color: var(--green); }

/* menu mobile */
.nav-menu { display: none; position: relative; }
.nav-menu summary { list-style: none; cursor: pointer; width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary i { display: block; height: 1px; background: var(--cream); }
.nav-menu-list {
  position: absolute; right: 0; top: 52px; min-width: 200px; padding: 8px 0;
  background: var(--green); border: 1px solid rgba(216, 193, 92, .3);
  display: flex; flex-direction: column;
}
.nav-menu-list a { color: var(--cream-65); padding: 12px 20px; }
.nav-menu-list a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* ---------- hero ---------- */
.hero {
  position: relative; text-align: center; overflow: hidden;
  padding: 112px max(96px, calc((100% - 1088px) / 2)) 100px;
  background: radial-gradient(70% 62% at 50% 0%, rgba(143, 18, 32, .12), transparent 70%), var(--cream);
}
.hero-bg-l { left: -52px; top: 10px; height: 540px; opacity: .15; transform: rotate(-10deg); }
.hero-bg-r { right: -60px; bottom: -90px; height: 580px; opacity: .12; transform: scaleX(-1) rotate(-4deg); }
.hero-inner { position: relative; }
.hero-inner > * { animation: rev .9s var(--ease) both; }
.hero-leaf {
  height: 150px; width: auto; margin: 0 auto 24px;
  animation: rev .9s var(--ease) both, float 8s ease-in-out 1s infinite;
}
.hero-kicker { animation-delay: .12s; }
.hero h1 { animation-delay: .24s; }
.hero-sub { animation-delay: .36s; }
.hero-ctas { animation-delay: .48s; }
.hero-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .26em; color: var(--wine); }
.hero h1 {
  margin: 24px auto 0; max-width: 900px;
  font-family: var(--serif); font-size: clamp(48px, 7.2vw, 92px); line-height: .98; letter-spacing: -.02em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--wine); }
.hero-sub { margin: 32px auto 0; max-width: 600px; font-size: 19px; line-height: 1.65; color: var(--ink-72); text-wrap: pretty; }
.hero-ctas { display: flex; justify-content: center; gap: 16px; margin-top: 42px; flex-wrap: wrap; }

/* ---------- fatos ---------- */
.facts { display: flex; justify-content: space-between; gap: 20px; padding: 34px var(--pad-x); background: var(--green); color: var(--cream); }
.fact { flex: 1; text-align: center; }
.fact b { display: block; font-family: var(--serif); font-weight: 400; font-size: 44px; color: var(--gold); line-height: 1; }
.fact span { display: block; margin-top: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(242, 235, 221, .6); }
.fact-sep { width: 1px; background: rgba(216, 193, 92, .25); }

/* ---------- section head ---------- */
.section { padding: 88px var(--pad-x); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--serif); font-size: 46px; }
.section-head .mono { color: var(--wine); text-transform: none; }
.section-head .mono.olive { color: var(--olive); }

/* ---------- jornada ---------- */
.journey { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; view-timeline: --jornada; }
.journey-line {
  position: absolute; left: 6%; right: 6%; top: 29px; height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(22, 48, 13, .4) 0 6px, transparent 6px 14px);
  transform-origin: 0 50%;
  animation: desenha linear both;
  animation-timeline: --jornada;
  animation-range: entry 20% cover 45%;
}
.step { position: relative; text-align: center; }
.step-num {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 20px;
  border: 1px solid var(--line-strong); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--wine);
}
.step h3 { margin-bottom: 8px; font-size: 17px; font-weight: 500; }
.step p { font-size: 14px; line-height: 1.7; color: var(--ink-62); }
.step.final .step-num { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.step.final h3 { color: var(--wine); }

/* ---------- programas ---------- */
.programs { padding: 20px var(--pad-x) 96px; }
.programs .section-head { align-items: end; margin-bottom: 44px; }
.programs .section-head h2 { font-size: 56px; line-height: 1.05; }
.program {
  display: grid; grid-template-columns: 88px 200px minmax(0, 1fr) 220px 140px; gap: 32px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--line); transition: background .4s;
}
.program:last-child { border-bottom: 1px solid var(--line); }
.program:hover { background: rgba(22, 48, 13, .04); }
.program-num {
  font-family: var(--serif); font-size: 56px; line-height: 1; color: rgba(143, 18, 32, .75);
  transition: color .4s var(--ease), translate .4s var(--ease);
}
.program:hover .program-num { color: var(--wine); translate: 6px 0; }
.program-cta { padding-right: 7px; }
.program-cta::after { content: '\2192'; display: inline-block; margin-left: 9px; transition: translate .35s var(--ease); }
.program:hover .program-cta { color: var(--wine); background-size: 100% 1px, 100% 1px; }
.program:hover .program-cta::after { translate: 5px 0; }
.program-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.program-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.program:hover .program-photo img { transform: scale(1.04); }
.program h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.1; }
.program p { font-size: 15px; line-height: 1.6; color: rgba(22, 48, 13, .65); max-width: 520px; }
.program-publico { display: block; margin-bottom: 10px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--wine); }
.program-meta { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 12px; color: var(--ink-55); }
.program-meta b { font-weight: 400; color: var(--green); }
.program-cta { justify-self: end; }

/* ---------- sensorial ---------- */
.sensory { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--sand); }
.sensory-text { padding: 96px 64px 96px max(64px, calc(100% - 576px)); display: flex; flex-direction: column; justify-content: center; }
.sensory-text h2 { margin: 20px 0; font-family: var(--serif); font-size: 50px; line-height: 1.08; }
.sensory-text p { margin-bottom: 28px; font-size: 17px; line-height: 1.7; color: rgba(22, 48, 13, .7); max-width: 460px; }
.sensory-tags { display: grid; grid-template-columns: repeat(2, auto); gap: 14px 34px; justify-content: start; font-family: var(--mono); font-size: 12px; color: rgba(22, 48, 13, .6); }
.sensory-wheel { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; background: var(--green); overflow: hidden; }
.wheel { position: relative; width: 400px; height: 400px; display: flex; align-items: center; justify-content: center; }
.wheel i { position: absolute; border-radius: 50%; border: 1px solid rgba(216, 193, 92, .35); }
.wheel i:nth-child(1) { inset: 0; }
.wheel i:nth-child(2) { inset: 64px; border-color: rgba(216, 193, 92, .28); }
.wheel i:nth-child(3) { inset: 128px; border-style: dashed; border-color: rgba(216, 193, 92, .25); animation: girar 70s linear infinite; }
.wheel img { height: 190px; width: auto; position: relative; opacity: .95; animation: float 10s ease-in-out infinite; }
.wheel span {
  position: absolute; background: var(--green); padding: 0 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--gold);
}
.wheel .n { top: -10px; left: 50%; transform: translateX(-50%); }
.wheel .e { right: -30px; top: 50%; transform: translateY(-50%); }
.wheel .s { bottom: -10px; left: 50%; transform: translateX(-50%); }
.wheel .w { left: -24px; top: 50%; transform: translateY(-50%); }

/* ---------- quem ensina ---------- */
.team { position: relative; padding: 96px var(--pad-x); background: var(--green); color: var(--cream); overflow: hidden; }
.team-bg { right: 40px; bottom: -100px; height: 480px; opacity: .14; transform: scaleX(-1); }
.team-head { position: relative; margin-bottom: 56px; }
.team-head .eyebrow { color: var(--gold); }
.team-head h2 { margin-top: 18px; font-family: var(--serif); font-size: 48px; line-height: 1.1; }
.team-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.person { display: flex; flex-direction: column; text-align: left; }
.avatar {
  width: 160px; height: 160px; border-radius: 50%; margin-bottom: 26px; overflow: hidden;
  border: 1px solid rgba(216, 193, 92, .4);
  background-image: repeating-linear-gradient(135deg, rgba(216, 193, 92, .1) 0 2px, transparent 2px 11px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 56px; color: var(--gold);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1.1; }
.person .role { display: block; margin: 10px 0 16px; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.person p { font-size: 15px; line-height: 1.7; color: rgba(242, 235, 221, .72); max-width: 360px; }
.person .tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 20px; }
.person .tags span { border: 1px solid rgba(216, 193, 92, .45); color: var(--gold); padding: 8px 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

/* ---------- depoimentos (reels) ---------- */
.reels-section { background: var(--sand); }
.reels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 48px; }
.reel { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 28px; align-items: start; }
.reel-body { display: flex; flex-direction: column; }
/* card órfão em grid de 2 colunas: centraliza mantendo largura dos irmãos */
.reel:nth-child(odd):last-child { grid-column: 1 / -1; justify-self: center; width: calc(50% - 24px); }
.reel h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.1; }
.reel-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--wine); }
.reel p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--ink-62); }
.reel .link-line { align-self: flex-start; margin-top: 18px; }
.reel-texto { position: relative; overflow: hidden; transition: max-height .4s var(--ease); }
.reel-texto::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 56px;
  background: linear-gradient(to top, var(--sand), transparent); pointer-events: none;
}
.reel-texto.aberto { max-height: 1400px; }
@media (min-width: 1025px) { .reel-texto::after, .reel-mais { display: none; } }
@media (max-width: 1024px) { .reel-texto { max-height: 168px; } }
.reel-texto.aberto::after { opacity: 0; }
.reel-mais {
  align-self: flex-start; margin-top: 10px; padding: 12px 0 4px; cursor: pointer;
  background: none; border: 0; border-bottom: 1px solid rgba(143, 18, 32, .5); color: var(--wine);
}
.reel-mais[hidden] { display: none; }

/* reels na galeria de bastidores */
.g-reel a { position: relative; display: block; height: 100%; }
.g-reel img { width: 100%; height: 100%; object-fit: cover; }
.g-reel span {
  position: absolute; left: 12px; bottom: 12px; padding: 8px 12px;
  background: rgba(22, 48, 13, .8); color: var(--gold);
}
.reel-frame {
  padding: 0; border: 0; cursor: pointer; display: block;
  position: relative; width: 100%; aspect-ratio: 340 / 730; background: var(--green);
  background-image: repeating-linear-gradient(135deg, rgba(216, 193, 92, .09) 0 2px, transparent 2px 12px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.reel-frame::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(22, 48, 13, .85), transparent);
  pointer-events: none;
}
.reel-frame:has(iframe)::after { display: none; }
.reel-play {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 16px; border: 1px solid rgba(216, 193, 92, .6);
  background: rgba(22, 48, 13, .75); color: var(--gold);
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.reel-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #fff; }
.reel-frame:hover .reel-play { background: var(--wine); color: var(--cream); border-color: var(--wine); }

/* ---------- CTA fixo mobile ---------- */
.cta-fixo {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  padding: 16px; text-align: center; background: var(--wine); color: var(--cream);
  box-shadow: 0 -6px 20px rgba(22, 48, 13, .18);
  translate: 0 100%;
  animation: cta-sobe linear both;
  animation-timeline: scroll(root);
  animation-range: 50vh 85vh;
}
@keyframes cta-sobe { to { translate: 0 0; } }

/* ---------- erro de formulário ---------- */
.form-erro { margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--wine); }

/* ---------- bastidores ---------- */
.gallery-cta { margin-top: 32px; text-align: center; }
.lightbox {
  max-width: min(1100px, 92vw); max-height: 90vh; padding: 0; border: 0; background: transparent;
  opacity: 0; transform: scale(.96);
  transition: opacity .3s, transform .35s var(--ease), overlay .35s allow-discrete, display .35s allow-discrete;
}
.lightbox[open] { opacity: 1; transform: scale(1); }
@starting-style { .lightbox[open] { opacity: 0; transform: scale(.96); } }
.lightbox::backdrop {
  background: rgba(22, 48, 13, .88); opacity: 0;
  transition: opacity .35s, overlay .35s allow-discrete, display .35s allow-discrete;
}
.lightbox[open]::backdrop { opacity: 1; }
@starting-style { .lightbox[open]::backdrop { opacity: 0; } }
.lightbox img { width: 100%; max-height: 90vh; object-fit: contain; }
.gallery-section { padding: 96px var(--pad-x) 100px; }
.gallery-section .section-head { margin-bottom: 34px; }
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 16px; }
.g-reel { grid-column: span 2; grid-row: span 3; }
.gallery figure { margin: 0; overflow: hidden; background: var(--sand); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure:not(.g-reel) img { cursor: zoom-in; }
.g-tall { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 3; }
.g-2 { grid-column: span 2; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 64px; padding: 96px var(--pad-x); background: var(--sand); }
.faq-intro h2 { margin-top: 18px; font-family: var(--serif); font-size: 44px; line-height: 1.1; }
.faq-intro img { height: 230px; width: auto; margin-top: 40px; opacity: .9; }
.faq-list details { border-top: 1px solid rgba(22, 48, 13, .2); }
.faq-list details:last-child { border-bottom: 1px solid rgba(22, 48, 13, .2); }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; font-size: 18px; transition: color .3s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--wine); }
.faq-list summary::after {
  content: '+'; font-family: var(--mono); font-size: 18px; color: var(--wine);
  transition: transform .35s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(135deg); }
.faq-list details::details-content {
  block-size: 0; overflow: hidden;
  transition: block-size .4s var(--ease), content-visibility .4s allow-discrete;
}
.faq-list details[open]::details-content { block-size: auto; }
.faq-list details p { padding-bottom: 24px; font-size: 16px; line-height: 1.75; color: rgba(22, 48, 13, .65); max-width: 640px; }

/* ---------- contato ---------- */
.contact { position: relative; padding: 100px var(--pad-x); overflow: hidden; }
.contact-bg { right: -40px; top: -50px; height: 480px; opacity: .12; transform: scaleX(-1); }
.contact-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 72px; align-items: start; }
.contact-text h2 { margin: 18px 0 20px; font-family: var(--serif); font-size: 56px; line-height: 1.04; }
.contact-text p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; color: rgba(22, 48, 13, .7); max-width: 420px; }
.contact-links { display: flex; flex-direction: column; gap: 4px; font-family: var(--mono); font-size: 12px; }
.contact-links a { color: var(--ink-55); padding: 6px 0; }
.contact-links a:hover { color: var(--wine); }
.contact-form { display: flex; flex-direction: column; border-top: 1px solid rgba(22, 48, 13, .25); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(22, 48, 13, .2);
  padding: 18px 2px; color: var(--green); font-size: 16px; font-weight: 300; outline: none; border-radius: 0;
  transition: border-color .3s;
}
.contact-form select {
  color: var(--green); appearance: none; padding-right: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2316300d' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat right 4px center;
}
.contact-form label { display: block; margin-top: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); }
.contact-form label + :is(input, select, textarea) { padding-top: 8px; }
.contact-form textarea { resize: none; }
.contact-form :is(input, select, textarea):focus { border-color: var(--wine); }
.contact-form .btn { align-self: flex-start; margin-top: 34px; height: 56px; padding: 0 32px; }
.contact-form small { margin-top: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-55); }

/* ---------- footer ---------- */
.footer { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 40px var(--pad-x); background: var(--green); flex-wrap: wrap; }
.footer-logo { height: 84px; width: auto; }
.footer-links { display: flex; gap: 26px; color: rgba(242, 235, 221, .6); }
.footer-links a { color: inherit; padding: 12px 0; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-family: var(--mono); font-size: 11px; line-height: 1.8; color: rgba(242, 235, 221, .6); text-align: right; }

/* ---------- responsivo ---------- */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .nav { padding: 12px 28px; }
  .hero { padding: 88px 40px 80px; }
  .program {
    grid-template-columns: 60px 200px minmax(0, 1fr);
    grid-template-areas: "num photo text" "num photo meta";
    gap: 12px 24px; align-items: start;
  }
  .program-num { grid-area: num; font-size: 44px; }
  .program-photo { grid-area: photo; }
  .program > div:nth-child(3) { grid-area: text; }
  .program-meta { grid-area: meta; flex-direction: row; flex-wrap: wrap; gap: 6px 18px; align-items: center; }
  .program-cta { grid-column: 3; justify-self: start; }
  .program h3 { font-size: 28px; }
  .journey { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
  .journey-line { display: none; }
  .team-grid { gap: 28px; }
  .reels { grid-template-columns: 1fr; gap: 36px; }
  .reel:nth-child(odd):last-child { grid-column: auto; justify-self: stretch; width: auto; }
  .avatar { width: 130px; height: 130px; font-size: 44px; }
}

@media (max-width: 760px) {
  :root { --pad-x: 22px; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu { display: block; }
  .nav-logo { height: 52px; }
  .hero { padding: 64px 22px 64px; }
  .hero-bg-l, .hero-bg-r { height: 300px; opacity: .1; }
  .hero-bg-r { bottom: -60px; }
  .hero-sub { font-size: 17px; }
  .facts { flex-wrap: wrap; gap: 26px 0; padding: 30px 22px; }
  .fact { flex: 1 1 45%; }
  .fact-sep { display: none; }
  .section, .programs, .gallery-section, .team, .contact { padding-top: 64px; padding-bottom: 64px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2, .programs .section-head h2, .sensory-text h2, .team-head h2, .faq-intro h2, .contact-text h2 { font-size: 36px; }
  .journey { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .step.final { grid-column: span 2; }
  .program { grid-template-columns: 1fr; grid-template-areas: none; gap: 14px; padding: 26px 0; }
  .program-num, .program-photo, .program > div:nth-child(3), .program-meta { grid-area: auto; }
  .program-meta { flex-direction: column; gap: 6px; align-items: flex-start; }
  .program-cta { grid-column: auto; }
  .program-num { font-size: 40px; }
  .program-photo { aspect-ratio: 16 / 9; }
  .program-cta { justify-self: start; }
  .sensory { grid-template-columns: 1fr; }
  .sensory-text { padding: 64px 22px; }
  .sensory-wheel { min-height: 420px; }
  .wheel { width: 300px; height: 300px; }
  .wheel i:nth-child(2) { inset: 48px; }
  .wheel i:nth-child(3) { inset: 96px; }
  .wheel img { height: 140px; }
  .team-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 140px; gap: 10px; }
  .g-wide { grid-column: span 2; }
  .g-2 { grid-column: span 1; }
  .g-2:last-child { grid-column: span 2; }
  .g-reel { grid-column: span 1; grid-row: span 2; }
  .reels { grid-template-columns: 1fr; gap: 32px; }
  .reel { grid-template-columns: 1fr; gap: 16px; }
  .reel-frame { max-width: 340px; }
  .reel h3 { font-size: 22px; }
  .cta-fixo { display: block; }
  .footer { padding-bottom: 84px; }
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro img { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer { justify-content: center; text-align: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 520px) {
  .hero-ctas .btn { width: 100%; }
  .fact { flex: 1 1 100%; }
  .fact b { font-size: 36px; }
  .journey { grid-template-columns: 1fr; }
  .step.final { grid-column: auto; }
}
