/* ============================================================================
   SITE FRONT MÍDIA · site.css
   v5 · 28 de agosto de 2026

   Porte do handoff do Claude Design (design_handoff_home_frontmidia/README.md)
   para código de produção. Tokens copiados literalmente do :root de
   `01. Branding/2. Claude Design System/fm-core/fm-core.css`, que continua
   sendo a fonte da verdade de cor e tipografia.

   Diferenças propositais em relação ao protótipo, todas comentadas no ponto:
   - Bloco 05 usa o carrossel da versão anterior, não o do protótipo
   - H1 e H2 do filtro ganharam clamp() em vez de tamanho fixo
   - Menu hambúrguer abaixo de 860px, que o protótipo não tinha
   - FAQ centralizado, sem o deslocamento de 147px de arraste acidental
   ========================================================================== */

/* ---- 01. FONTES ---------------------------------------------------------- */
@font-face { font-family:'Mena'; src:url('../fonts/mena-bold.woff2')     format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Mena'; src:url('../fonts/mena-black.woff2')    format('woff2'); font-weight:900; font-style:normal; font-display:swap; }
@font-face { font-family:'Fira'; src:url('../fonts/fira-regular.woff2')  format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Fira'; src:url('../fonts/fira-medium.woff2')   format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Fira'; src:url('../fonts/fira-semibold.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }

/* ---- 02. TOKENS (espelho do fm-core) ------------------------------------- */
:root {
  --fm-dark:      #211742;
  --fm-mid:       #4b398e;
  --fm-vibrant:   #a576ff;
  --fm-orange:    #ff7f00;
  --fm-cream:     #fff5df;
  --fm-white:     #ffffff;

  --fm-dark-deep: #140e28;
  --fm-dark-soft: #2a1f57;
  --fm-mist:      #f3eeff;
  --fm-peach:     #ffd9b3;

  --fm-line-dark:   rgba(165,118,255,.20);
  --fm-line-light:  rgba(75,57,142,.18);
  --fm-mute-dark:   rgba(255,245,223,.72);
  --fm-mute-light:  rgba(33,23,66,.62);

  --fm-display: 'Mena', system-ui, sans-serif;
  --fm-text:    'Fira', system-ui, sans-serif;

  --fm-t-xs: .75rem;   --fm-t-sm: .8125rem; --fm-t-base: 1rem;
  --fm-t-md: 1.125rem; --fm-t-lg: 1.375rem; --fm-t-xl: 1.75rem;
  --fm-t-2xl: 2.25rem; --fm-t-3xl: 3rem;

  --fm-lead-tight: 1.08;  --fm-lead-snug: 1.25;
  --fm-lead-normal: 1.55; --fm-lead-relaxed: 1.7;
  --fm-track-tight: -.03em; --fm-track-label: .14em;

  --fm-s1:4px; --fm-s2:8px; --fm-s3:12px; --fm-s4:16px; --fm-s5:20px;
  --fm-s6:24px; --fm-s8:32px; --fm-s10:40px; --fm-s12:48px; --fm-s16:64px;
  --fm-s20:80px; --fm-s24:96px;

  --fm-r-sm: 2px;
  --fm-r-pill: 9999px;
  --fm-ease: 250ms ease;
  --fm-ease-fast: 150ms ease;

  --wrap: 1140px;
  --wrap-narrow: 760px;
  --header-h: 68px;

  --fm-fg: var(--fm-dark);
  --fm-fg-mute: var(--fm-mute-light);
  --fm-fg-title: var(--fm-mid);
  --fm-line: var(--fm-line-light);
}

/* ---- 03. RESET ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--fm-s6));
}
body {
  margin: 0;
  padding-top: var(--header-h);
  background: var(--fm-white);
  color: var(--fm-fg);
  font-family: var(--fm-text);
  font-size: var(--fm-t-base);
  line-height: var(--fm-lead-normal);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4,p,ul,ol,figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; }
a { color: inherit; }

/* ---- 04. ACESSIBILIDADE -------------------------------------------------- */
:focus-visible { outline: 3px solid var(--fm-orange); outline-offset: 3px; border-radius: var(--fm-r-sm); }
:focus:not(:focus-visible) { outline: none; }

.skip {
  position: absolute; left: var(--fm-s4); top: calc(-1 * var(--fm-s20)); z-index: 100;
  padding: var(--fm-s3) var(--fm-s5);
  background: var(--fm-orange); color: var(--fm-dark);
  font-family: var(--fm-display); font-weight: 700; text-decoration: none;
  transition: top var(--fm-ease-fast);
}
.skip:focus { top: var(--fm-s4); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---- 05. SUPERFÍCIES ----------------------------------------------------- */
.s-dark {
  background: var(--fm-dark);
  --fm-fg: var(--fm-cream); --fm-fg-mute: var(--fm-mute-dark);
  --fm-fg-title: var(--fm-cream); --fm-line: var(--fm-line-dark);
  color: var(--fm-fg);
}
.s-deep { background: var(--fm-dark-deep); }
.s-light { background: var(--fm-white); }
.s-panel { background: var(--fm-mist); }

/* ---- 06. LAYOUT ---------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--fm-s5); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(72px, 8.3vw, 120px); }
.stack > * + * { margin-top: var(--fm-s5); }

.grid { display: grid; gap: clamp(24px, 2.8vw, 40px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--cols { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(32px, 3vw, 48px); }

/* ---- 07. TIPOGRAFIA ------------------------------------------------------ */
.eyebrow {
  display: flex; align-items: center; gap: var(--fm-s3);
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase;
  color: var(--fm-vibrant); margin-bottom: var(--fm-s5);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--fm-orange); flex: none; }
.s-light .eyebrow, .s-panel .eyebrow { color: var(--fm-mid); }

.h1, .h2, .h3 {
  font-family: var(--fm-display); font-weight: 900;
  line-height: var(--fm-lead-tight); letter-spacing: var(--fm-track-tight);
  color: var(--fm-fg-title); text-wrap: balance;
}
/* O protótipo tinha 54px e 53px fixos, vindos de edição direta no canvas. Em
   375px isso quebra em três linhas apertadas, e a maior parte do tráfego é
   celular. Viraram clamp. */
.h1 { font-size: clamp(2.125rem, 4.4vw, 3.375rem); }
.h2 { font-size: clamp(1.75rem, 3.3vw, var(--fm-t-3xl)); }
.h3 { font-size: var(--fm-t-lg); font-weight: 700; line-height: var(--fm-lead-snug); letter-spacing: 0; }

.lead { font-size: var(--fm-t-md); line-height: var(--fm-lead-relaxed); color: var(--fm-fg-mute); max-width: 58ch; }
.body { line-height: var(--fm-lead-relaxed); color: var(--fm-fg-mute); max-width: 62ch; }
.body strong, .lead strong { color: var(--fm-fg); font-weight: 600; }
.micro { font-size: var(--fm-t-sm); line-height: var(--fm-lead-normal); color: var(--fm-fg-mute); }
.mark { color: var(--fm-orange); }

.secnum {
  font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-sm);
  letter-spacing: var(--fm-track-label); color: var(--fm-orange);
}
.s-light .secnum, .s-panel .secnum { color: var(--fm-mid); }

/* ---- 08. BOTÃO ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--fm-s2);
  min-height: 52px; padding: 0 var(--fm-s8);
  background: var(--fm-orange); color: var(--fm-dark);
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-base);
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  border: 3px solid var(--fm-orange); border-radius: var(--fm-r-sm);
  cursor: pointer; text-align: center;
  transition: transform var(--fm-ease-fast), background var(--fm-ease-fast), border-color var(--fm-ease-fast);
}
.btn:hover { background: var(--fm-peach); border-color: var(--fm-peach); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { min-width: min(100%, 315px); min-height: 74px; padding: 20px 24px; font-size: var(--fm-t-md); }
.btn--sm { min-height: 44px; padding: 0 var(--fm-s5); font-size: var(--fm-t-sm); }

.link-alt {
  display: inline-flex; align-items: center; min-height: 40px;
  color: var(--fm-vibrant); text-decoration: underline; text-underline-offset: 3px;
}
.link-alt:hover { color: var(--fm-orange); }
.s-light .link-alt, .s-panel .link-alt { color: var(--fm-mid); }

/* ---- 09. HEADER E MENU MOBILE -------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: var(--fm-dark); border-bottom: 1px solid var(--fm-line-dark);
}
.header__in { display: flex; align-items: center; justify-content: space-between; gap: var(--fm-s5); min-height: var(--header-h); }
.header__logo { display: inline-flex; align-items: center; min-height: 44px; }
.header__logo img { width: 132px; height: auto; }
.header .btn { white-space: nowrap; }
.header__right { display: flex; align-items: center; gap: var(--fm-s3); }

.header__nav { display: none; }
@media (min-width: 861px) {
  .header__nav { display: flex; gap: var(--fm-s6); }
  .header__nav a {
    display: inline-flex; align-items: center; min-height: 44px; padding-inline: var(--fm-s2);
    font-size: var(--fm-t-sm); color: var(--fm-mute-dark); text-decoration: none;
    transition: color var(--fm-ease-fast);
  }
  .header__nav a:hover { color: var(--fm-cream); }
  .header__logo img { width: 148px; }
}

.only-wide { display: none; }
@media (min-width: 560px) { .only-wide { display: inline; } .only-narrow { display: none; } }

/* Hambúrguer. O protótipo não tinha navegação nenhuma abaixo de 860px.
   Decisão do Zé em 28/08/2026: painel em tela cheia. */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--fm-cream); transition: transform var(--fm-ease), opacity var(--fm-ease-fast); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 861px) { .burger { display: none; } }

.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
  background: var(--fm-dark); padding: var(--fm-s10) var(--fm-s5);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer a {
  display: flex; align-items: center; min-height: 60px;
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-lg);
  color: var(--fm-cream); text-decoration: none;
  border-bottom: 1px solid var(--fm-line-dark);
}
.drawer a:hover { color: var(--fm-orange); }
.drawer .btn { margin-top: var(--fm-s10); }
@media (min-width: 861px) { .drawer { display: none !important; } }
body.is-locked { overflow: hidden; }

/* ---- 10. HERO ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 6vw, 88px) clamp(72px, 7vw, 104px); }
.hero__grid { display: grid; gap: clamp(40px, 4vw, 64px); align-items: center; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.hero .h1 { margin-bottom: var(--fm-s6); max-width: 560px; }
.hero .lead { max-width: 540px; }
.hero__cta { margin-top: var(--fm-s10); }
.hero__micro { margin-top: var(--fm-s4); max-width: 46ch; }
.hero__photo { border-radius: var(--fm-r-sm); overflow: hidden; }
.hero__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%; }

.rings { position: absolute; right: -160px; top: -140px; width: 620px; height: 620px; pointer-events: none; }
.rings span { position: absolute; inset: 0; border: 1px solid var(--fm-vibrant); border-radius: var(--fm-r-pill); opacity: .22; }
.rings span:nth-child(2) { inset: 78px; opacity: .16; }
.rings span:nth-child(3) { inset: 156px; opacity: .12; }
.rings span:nth-child(4) { inset: 234px; opacity: .08; }
@media (max-width: 899px) { .rings { display: none; } }

/* ---- 11. FILTRO ---------------------------------------------------------- */
.filter { padding: clamp(24px, 2.5vw, 32px); border-radius: var(--fm-r-sm); }
.filter--yes { background: var(--fm-dark); border: 2px solid var(--fm-dark); color: var(--fm-cream); }
.filter--no  { background: var(--fm-white); border: 2px solid var(--fm-mid); }
.filter__head { font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-lg); margin-bottom: var(--fm-s6); }
.filter--yes .filter__head { color: var(--fm-cream); }
.filter--no  .filter__head { color: var(--fm-mid); }

.marklist > li { display: grid; grid-template-columns: 24px 1fr; gap: var(--fm-s3); align-items: start; line-height: var(--fm-lead-normal); }
.marklist > li + li { margin-top: var(--fm-s5); }
.marklist > li::before { font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-md); line-height: 1.35; }
/* Marcador diferencia por forma antes de por cor. O ✕ é roxo médio porque
   laranja sobre branco dá 2,53:1 e reprova em WCAG AA. */
.marklist--yes > li { color: var(--fm-mute-dark); }
.marklist--yes > li::before { content: "✓"; color: var(--fm-orange); }
.marklist--no  > li { color: var(--fm-mute-light); }
.marklist--no  > li::before { content: "✕"; color: var(--fm-mid); }

.closer {
  margin-top: clamp(32px, 3vw, 48px); padding: var(--fm-s6) var(--fm-s8);
  border-left: 5px solid var(--fm-orange); background: var(--fm-mist);
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-md);
  line-height: var(--fm-lead-snug); color: var(--fm-dark);
}
.s-panel .closer { background: var(--fm-white); }

/* ---- 12. CALLOUT E FRASE DE IMPACTO -------------------------------------- */
.callout {
  padding: clamp(24px, 2.5vw, 32px);
  background: var(--fm-orange); color: var(--fm-dark); border-radius: var(--fm-r-sm);
  font-family: var(--fm-display); font-weight: 900;
  font-size: clamp(1.25rem, 2vw, var(--fm-t-xl)); line-height: var(--fm-lead-snug);
  letter-spacing: -.02em; text-wrap: balance;
}
.shout {
  font-family: var(--fm-display); font-weight: 900;
  font-size: clamp(1.625rem, 3.2vw, 2.75rem); line-height: 1.1;
  letter-spacing: var(--fm-track-tight); color: var(--fm-vibrant); text-wrap: balance;
}

/* ---- 13. DIAGRAMA DE FUNIL (bloco 03) ------------------------------------ */
.fdiag {
  padding: clamp(24px, 2.5vw, 32px);
  background: var(--fm-dark-soft); border: 1px solid var(--fm-line-dark);
  border-radius: var(--fm-r-sm);
}
.fnode { display: grid; grid-template-columns: 14px 1fr; gap: var(--fm-s4); align-items: start; }
.fnode__dot { width: 14px; height: 14px; border-radius: var(--fm-r-pill); background: var(--fm-orange); margin-top: 5px; }
.fnode__t { font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-base); color: var(--fm-cream); }
.fnode__d { font-size: var(--fm-t-sm); color: var(--fm-mute-dark); margin-top: var(--fm-s1); }
.fbar { width: 2px; height: 28px; background: var(--fm-orange); margin-left: 6px; }

.fbreak { display: flex; align-items: center; gap: var(--fm-s3); margin-block: var(--fm-s3); }
.fbreak::before { content: ""; width: 20px; height: 2px; background: var(--fm-orange); flex: none; }
.fbreak span {
  font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase; color: var(--fm-orange);
}

.fnode--off .fnode__dot { background: transparent; border: 2px dashed rgba(255,245,223,.6); }
.fnode--off .fnode__t { color: rgba(255,245,223,.66); }
.fnode--off .fnode__d { color: rgba(255,245,223,.55); }
.fbar--off { background: repeating-linear-gradient(to bottom, rgba(255,245,223,.32) 0 4px, transparent 4px 8px); }

/* ---- 14. MÉTODO FRONT ---------------------------------------------------- */
.step {
  padding: clamp(24px, 2.5vw, 32px);
  background: var(--fm-white); border: 1px solid var(--fm-line-light);
  border-top: 5px solid var(--fm-orange); border-radius: var(--fm-r-sm);
}
.step__n { display: block; font-family: var(--fm-display); font-weight: 900; font-size: 4rem; line-height: .82; letter-spacing: var(--fm-track-tight); color: var(--fm-vibrant); margin-bottom: var(--fm-s4); }
.step .h3 { color: var(--fm-mid); margin-bottom: var(--fm-s3); }
.step p { line-height: var(--fm-lead-relaxed); color: var(--fm-mute-light); }

/* ---- 15. CARROSSEL DE DEPOIMENTOS ---------------------------------------- */
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 86%;
  gap: var(--fm-s5); overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-block: var(--fm-s2); scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media (min-width: 720px)  { .carousel__track { grid-auto-columns: 46%; gap: var(--fm-s6); } }
@media (min-width: 1040px) { .carousel__track { grid-auto-columns: 31%; } }

.slide {
  scroll-snap-align: start; display: flex; flex-direction: column;
  background: var(--fm-white); border: 1px solid var(--fm-line-light);
  border-radius: var(--fm-r-sm); overflow: hidden;
}
.slide__media { position: relative; aspect-ratio: 16/9; background: var(--fm-dark); overflow: hidden; }
.slide__media iframe, .slide__media img { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }

.slide__play { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; padding: 0; }
.slide__play img { opacity: .58; transition: opacity var(--fm-ease-fast); }
.slide__play:hover img { opacity: .78; }
.slide__play::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: var(--fm-r-pill); background: var(--fm-orange);
}
.slide__play-ico {
  position: absolute; left: 50%; top: 50%; transform: translate(-40%, -50%); z-index: 1;
  width: 0; height: 0;
  border-left: 19px solid var(--fm-dark);
  border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}

.slide--print .slide__media { aspect-ratio: 4/5; background: var(--fm-mist); }
.slide--print .slide__media img { object-fit: contain; }

.slide__body { padding: clamp(20px, 2vw, 24px); display: flex; flex-direction: column; gap: var(--fm-s2); flex: 1; }
.slide__meta { font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-xs); letter-spacing: var(--fm-track-label); text-transform: uppercase; color: var(--fm-mid); }
.slide__who { font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-base); color: var(--fm-mid); }
.slide__txt { font-size: var(--fm-t-sm); line-height: var(--fm-lead-relaxed); color: var(--fm-mute-light); }

.carousel__ctrl { display: flex; align-items: center; justify-content: space-between; gap: var(--fm-s5); margin-top: var(--fm-s8); }
.carousel__arrows { display: flex; gap: var(--fm-s3); }
.carousel__btn {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--fm-white); color: var(--fm-mid);
  border: 2px solid var(--fm-mid); border-radius: var(--fm-r-sm);
  cursor: pointer; font-size: var(--fm-t-md); line-height: 1;
  transition: background var(--fm-ease-fast), color var(--fm-ease-fast);
}
.carousel__btn:hover:not(:disabled) { background: var(--fm-mid); color: var(--fm-white); }
.carousel__btn:disabled { opacity: .35; cursor: default; }
.carousel__hint { font-size: var(--fm-t-sm); color: var(--fm-mute-light); }

/* ---- 16. FOTO EM BLOCO --------------------------------------------------- */
.photo { border-radius: var(--fm-r-sm); overflow: hidden; }
.photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 10%; }

/* ---- 17. PLANOS EM FAIXAS ------------------------------------------------ */
.bands { display: grid; gap: var(--fm-s4); }
.band { padding: clamp(28px, 3vw, 40px) clamp(24px, 4vw, 72px); border-radius: var(--fm-r-sm); }
.band--dark   { background: var(--fm-dark); }
.band--light  { background: var(--fm-white); border: 2px solid var(--fm-mid); }
.band--orange { background: var(--fm-orange); }
.band--ghost  { background: var(--fm-mist); border: 1px dashed var(--fm-mid); }

.band__eyebrow {
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase; margin-bottom: var(--fm-s3);
}
.band--dark   .band__eyebrow { color: var(--fm-vibrant); }
.band--light  .band__eyebrow { color: var(--fm-mid); }
.band--orange .band__eyebrow { color: var(--fm-dark); }
.band--ghost  .band__eyebrow { color: var(--fm-mid); }

.band__t { font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-lg); margin-bottom: var(--fm-s3); }
.band--dark .band__t { color: var(--fm-cream); }
.band--light .band__t, .band--ghost .band__t { color: var(--fm-mid); }
.band--orange .band__t { color: var(--fm-dark); }

.band__d { line-height: var(--fm-lead-relaxed); max-width: 68ch; }
.band--dark .band__d { color: var(--fm-mute-dark); }
.band--light .band__d, .band--ghost .band__d { color: var(--fm-mute-light); }
.band--orange .band__d { color: var(--fm-dark); }

.chips { display: flex; flex-wrap: wrap; gap: var(--fm-s2); margin-top: var(--fm-s5); }
.chips li { padding: var(--fm-s2) 14px; border-radius: var(--fm-r-sm); font-size: 14px; line-height: 1.35; }
.band--dark   .chips li { border: 1px solid rgba(165,118,255,.35); color: var(--fm-mute-dark); }
.band--light  .chips li { border: 1px solid rgba(75,57,142,.28); color: var(--fm-mute-light); }
.band--orange .chips li { border: 1px solid rgba(33,23,66,.32); color: var(--fm-dark); }

.band__note { margin-top: var(--fm-s5); font-size: var(--fm-t-sm); line-height: var(--fm-lead-normal); }
.band--dark .band__note { color: var(--fm-mute-dark); }
.band--light .band__note, .band--ghost .band__note { color: var(--fm-mute-light); }
.band--orange .band__note { color: var(--fm-dark); }

.band__price { margin-top: var(--fm-s5); font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-xl); color: var(--fm-mid); }

.arrow-link { text-align: center; font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-xl); color: var(--fm-mid); line-height: 1; }

/* ---- 18. ONBOARDING ------------------------------------------------------ */
.ruler { margin-bottom: clamp(32px, 3vw, 48px); }
.ruler__bar { height: 10px; background: rgba(75,57,142,.14); border-radius: var(--fm-r-sm); overflow: hidden; }
.ruler__fill { height: 100%; width: 71%; background: var(--fm-orange); }
.ruler__labels { display: flex; justify-content: space-between; gap: var(--fm-s3); margin-top: var(--fm-s3); }
/* O protótipo pedia laranja nos dois primeiros rótulos, mas laranja sobre
   branco em 12px dá 2,53:1 e reprova em WCAG AA. Viraram roxo médio. O laranja
   continua no preenchimento da barra, que é elemento gráfico e não texto. */
.ruler__labels span {
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase; color: var(--fm-mid);
}
.ruler__labels span:last-child { color: var(--fm-mute-light); }

.ostep {
  padding: var(--fm-s6);
  background: var(--fm-white); border: 1px solid var(--fm-line-light);
  border-top: 5px solid var(--fm-orange); border-radius: var(--fm-r-sm);
}
.ostep__d { font-family: var(--fm-display); font-weight: 900; font-size: 30px; line-height: 1; color: var(--fm-vibrant); margin-bottom: var(--fm-s3); }
.ostep__t { font-size: 15px; line-height: 1.6; color: var(--fm-mute-light); }
.ostep--hit { background: var(--fm-orange); border-color: var(--fm-orange); border-top-color: var(--fm-dark); }
.ostep--hit .ostep__d, .ostep--hit .ostep__t { color: var(--fm-dark); }

/* ---- 19. PASSOS NUMERADOS (bloco 09) ------------------------------------- */
.steps { display: grid; gap: var(--fm-s5); margin-block: var(--fm-s10); }
.nstep { display: grid; grid-template-columns: 36px 1fr; gap: var(--fm-s4); align-items: start; }
.nstep__n {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--fm-orange); color: var(--fm-dark); border-radius: var(--fm-r-sm);
  font-family: var(--fm-display); font-weight: 900; font-size: 15px;
}
.nstep__t { color: var(--fm-mute-dark); line-height: var(--fm-lead-relaxed); padding-top: 5px; }

/* ---- 20. FAQ ------------------------------------------------------------- */
/* Centralizado. O protótipo tinha left:147px de arraste acidental no editor,
   mais uma media query só para não vazar da tela no celular. Os dois saíram. */
.qa { border-bottom: 1px solid var(--fm-line-light); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--fm-s5);
  min-height: 56px; padding: var(--fm-s4) 0;
  font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-md);
  color: var(--fm-mid); cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; flex: none; font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-lg); line-height: 1; color: var(--fm-orange); transition: transform var(--fm-ease); }
.qa[open] summary::after { transform: rotate(45deg); }
.qa__a { padding-bottom: var(--fm-s6); padding-right: clamp(0px, 4vw, 48px); line-height: var(--fm-lead-relaxed); color: var(--fm-mute-light); }

/* ---- 21. RODAPÉ ---------------------------------------------------------- */
.footer { padding: var(--fm-s16) 0 var(--fm-s8); }
.footer__grid { display: grid; gap: var(--fm-s12); grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.footer img { width: 148px; margin-bottom: var(--fm-s5); }
.footer h4 {
  font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase;
  color: var(--fm-vibrant); margin: 0 0 var(--fm-s5);
}
.footer li a, .footer__bar a { display: inline-flex; align-items: center; gap: var(--fm-s3); min-height: 40px; }
.footer a { color: var(--fm-mute-dark); text-decoration: none; font-size: var(--fm-t-sm); transition: color var(--fm-ease-fast); }
.footer a:hover { color: var(--fm-cream); }
.footer a:hover .ico { fill: var(--fm-orange); }

.ico { width: 18px; height: 18px; flex: none; fill: var(--fm-vibrant); transition: fill var(--fm-ease-fast); }

.footer__bar {
  margin-top: var(--fm-s12); padding-top: var(--fm-s6);
  border-top: 1px solid var(--fm-line-dark);
  display: flex; flex-wrap: wrap; gap: var(--fm-s3) var(--fm-s5);
  justify-content: space-between; align-items: center;
  font-size: var(--fm-t-xs); color: var(--fm-mute-dark);
}
.footer__legal { display: flex; flex-direction: column; gap: var(--fm-s1); }

/* ============================================================================
   v6 · 29 de agosto de 2026
   Correções depois da revisão do Zé no celular, e os três desenhos de
   depoimento para comparação.
   ========================================================================== */

/* ---- Respiro. A home tinha 14.892px no celular, cansativo de rolar. ------- */
.section { padding-block: clamp(56px, 7vw, 112px); }

/* ---- Eyebrow com o número dentro ----------------------------------------
   Antes o número de seção e o eyebrow eram dois parágrafos empilhados, e no
   celular viravam duas linhas de rótulo competindo. Agora é uma linha só. */
.eyebrow { flex-wrap: wrap; row-gap: var(--fm-s2); }
.eyebrow b {
  font-family: var(--fm-display); font-weight: 900;
  color: var(--fm-orange); letter-spacing: var(--fm-track-label);
}
.s-light .eyebrow b, .s-panel .eyebrow b { color: var(--fm-mid); }

/* ---- Profundidade nas fotos ----------------------------------------------
   O Zé pediu sombra. A gramática da casa proíbe sombra pesada, então a
   profundidade vem do mesmo recurso do FM-01: um painel diagonal em roxo
   vibrante atrás da foto, deslocado. A sombra existe, mas discreta. */
.photo, .hero__photo { position: relative; isolation: isolate; overflow: visible; }
.photo::before, .hero__photo::before {
  content: ""; position: absolute; z-index: -1;
  inset: -14px -14px 14px 14px;
  background: var(--fm-vibrant);
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
  border-radius: var(--fm-r-sm);
  opacity: .9;
}
.photo img, .hero__photo img {
  position: relative;
  box-shadow: 0 18px 40px rgba(20,14,40,.34);
  border-radius: var(--fm-r-sm);
}
@media (max-width: 560px) {
  .photo::before, .hero__photo::before { inset: -10px -10px 10px 10px; }
}

/* ---- Régua do onboarding -------------------------------------------------
   Os rótulos quebravam em duas linhas e não batiam com os marcos da barra.
   Viraram grade de três colunas ancoradas no início, meio e fim. */
.ruler__labels { display: grid; grid-template-columns: auto 1fr auto; align-items: start; }
.ruler__labels span { font-size: 11px; letter-spacing: .1em; line-height: 1.3; }
.ruler__labels span:nth-child(2) { text-align: center; }
.ruler__labels span:last-child { text-align: right; }

/* ---- Planos em cards verticais com profundidade --------------------------
   As faixas empilhadas ocupavam mais de uma tela cada no celular. Viraram
   três cards verticais, com o mesmo painel diagonal das fotos criando o
   efeito de camada que o Zé pediu. */
.pcards { display: grid; gap: clamp(28px, 3vw, 40px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.pcard { position: relative; display: flex; flex-direction: column; padding: clamp(26px, 2.6vw, 34px); background: var(--fm-white); border-radius: var(--fm-r-sm); }

/* Três camadas, todas em z-index POSITIVO. Com z-index negativo os pseudo
   elementos escapam para o contexto de empilhamento da raiz e somem atrás do
   fundo branco da seção. Camada 0: painel diagonal. Camada 1: face do card.
   Camada 2: o conteúdo. */
.pcard::before {
  content: ""; position: absolute; z-index: 0;
  inset: -12px -12px 12px 12px;
  background: var(--fm-vibrant);
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
  border-radius: var(--fm-r-sm);
  opacity: .85;
}
.pcard::after {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: var(--fm-white);
  border: 1px solid var(--fm-line-light);
  border-radius: var(--fm-r-sm);
  box-shadow: 0 14px 34px rgba(20,14,40,.10);
}
.pcard > * { position: relative; z-index: 2; }

/* O card do meio é o que a gente quer vender. */
.pcard--best { background: var(--fm-dark); }
.pcard--best::after { background: var(--fm-dark); border-color: var(--fm-dark); }
.pcard--best::before { background: var(--fm-orange); opacity: 1; }

.pcard__etapa {
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase;
  color: var(--fm-mid); margin-bottom: var(--fm-s3);
}
.pcard--best .pcard__etapa { color: var(--fm-orange); }

.pcard__t { font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-lg); color: var(--fm-mid); margin-bottom: var(--fm-s3); }
.pcard--best .pcard__t { color: var(--fm-cream); }

.pcard__d { font-size: 15px; line-height: 1.65; color: var(--fm-mute-light); }
.pcard--best .pcard__d { color: var(--fm-mute-dark); }

.pcard__list { margin: var(--fm-s6) 0 0; }
.pcard__list li {
  display: grid; grid-template-columns: 18px 1fr; gap: var(--fm-s2);
  font-size: 14px; line-height: 1.5; color: var(--fm-mute-light);
}
.pcard__list li + li { margin-top: var(--fm-s3); }
.pcard__list li::before { content: "✓"; font-family: var(--fm-display); font-weight: 900; color: var(--fm-mid); }
.pcard--best .pcard__list li { color: var(--fm-mute-dark); }
.pcard--best .pcard__list li::before { color: var(--fm-orange); }

.pcard__note { margin-top: auto; padding-top: var(--fm-s6); font-size: var(--fm-t-xs); line-height: 1.5; color: var(--fm-mute-light); }
.pcard--best .pcard__note { color: var(--fm-mute-dark); }

/* Rodapé de landing page e e-commerce, que saiu de card e virou nota. */
.pfoot {
  margin-top: clamp(32px, 3vw, 48px);
  padding: var(--fm-s6) var(--fm-s8);
  border-left: 5px solid var(--fm-orange);
  background: var(--fm-mist);
  font-size: var(--fm-t-sm); line-height: var(--fm-lead-relaxed); color: var(--fm-mute-light);
}
.s-panel .pfoot { background: var(--fm-white); }
.pfoot b { color: var(--fm-mid); font-family: var(--fm-display); font-weight: 900; }

/* ============================================================================
   DEPOIMENTOS · três desenhos
   ========================================================================== */

/* ---- Comum aos três ------------------------------------------------------ */
.dp-quote {
  font-family: var(--fm-text); font-style: italic;
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem); line-height: var(--fm-lead-relaxed);
  color: var(--fm-fg); max-width: 46ch;
}
.dp-name { padding-left: var(--fm-s4); border-left: 3px solid var(--fm-orange); }
.dp-name b { display: block; font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-lg); color: var(--fm-fg-title); }
.dp-name span { font-size: var(--fm-t-sm); color: var(--fm-fg-mute); }
.dp-kind {
  display: inline-flex; align-items: center; gap: var(--fm-s2);
  font-family: var(--fm-display); font-weight: 700; font-size: var(--fm-t-xs);
  letter-spacing: var(--fm-track-label); text-transform: uppercase; color: var(--fm-mid);
}

/* Botão de play em círculo creme, igual ao do FM-01. */
.dp-play {
  position: absolute; left: 22px; bottom: 22px; z-index: 3;
  width: 62px; height: 62px; border-radius: var(--fm-r-pill);
  background: var(--fm-cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: transform var(--fm-ease-fast), background var(--fm-ease-fast);
}
.dp-play::before {
  content: ""; width: 0; height: 0;
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--fm-dark);
  margin-left: 4px;
}
.dp-play:hover { transform: scale(1.06); background: var(--fm-orange); }

/* Moldura com painel diagonal atrás, o recurso de profundidade da casa. */
.dp-frame { position: relative; isolation: isolate; border-radius: var(--fm-r-sm); }
.dp-frame::before {
  content: ""; position: absolute; z-index: -1;
  inset: -14px -14px 14px 14px;
  background: var(--fm-vibrant);
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
  border-radius: var(--fm-r-sm);
}
.dp-frame > img, .dp-frame > iframe {
  position: relative; display: block; width: 100%; height: 100%;
  border: 0; border-radius: var(--fm-r-sm);
  box-shadow: 0 18px 40px rgba(20,14,40,.30);
}

/* ---- VERSÃO A · Editorial -------------------------------------------------
   Um depoimento por vez, grande. Foto à esquerda com painel diagonal, texto à
   direita com aspa gigante em outline. É a linguagem do FM-01. */
.depoA__stage { display: grid; gap: clamp(40px, 4vw, 72px); align-items: center; }
@media (min-width: 900px) { .depoA__stage { grid-template-columns: 420px 1fr; } }

.depoA__media { position: relative; aspect-ratio: 4/5; }
.depoA__media .dp-frame { height: 100%; }
.depoA__media img { height: 100%; object-fit: cover; }
.depoA__media--print img { object-fit: contain; background: var(--fm-white); }

.depoA__body { position: relative; }
.depoA__mark {
  position: absolute; top: -56px; left: -10px; z-index: 0;
  font-family: var(--fm-text); font-weight: 700; font-size: 220px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--fm-line);
  pointer-events: none; user-select: none;
}
.depoA__content { position: relative; z-index: 1; display: grid; gap: var(--fm-s6); }
@media (max-width: 899px) { .depoA__mark { font-size: 128px; top: -74px; left: -6px; } }

.depoA__slide[hidden] { display: none; }

/* Em 390px as 6 bolinhas (264px) mais as duas setas (108px) não cabem nos
   350px úteis e empurravam a página para 453px de largura. A barra quebra. */
.dp-nav {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--fm-s4) var(--fm-s5);
  margin-top: clamp(32px,3vw,48px);
}
.dp-dots { flex-wrap: wrap; }
@media (max-width: 560px) {
  .dp-nav { justify-content: center; }
  .dp-dot { width: 40px; height: 40px; }
}
.dp-dots { display: flex; gap: var(--fm-s2); }
.dp-dot {
  width: 44px; height: 44px; display: grid; place-items: center;
  cursor: pointer; padding: 0; background: none;
}
.dp-dot::before { content: ""; width: 10px; height: 10px; border-radius: var(--fm-r-pill); background: rgba(75,57,142,.28); transition: background var(--fm-ease-fast); }
.dp-dot[aria-current="true"]::before { background: var(--fm-mid); }
.s-dark .dp-dot::before { background: rgba(255,245,223,.3); }
.s-dark .dp-dot[aria-current="true"]::before { background: var(--fm-orange); }

.dp-arrows { display: flex; gap: var(--fm-s3); }
.dp-arrow {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--fm-white); color: var(--fm-mid);
  border: 2px solid var(--fm-mid); border-radius: var(--fm-r-sm);
  cursor: pointer; font-size: var(--fm-t-md); line-height: 1;
  transition: background var(--fm-ease-fast), color var(--fm-ease-fast);
}
.dp-arrow:hover { background: var(--fm-mid); color: var(--fm-white); }

/* ---- VERSÃO B · Vitrine --------------------------------------------------
   Sem carrossel. Dois vídeos em 16:9 no topo, com corpo de uma linha só, e os
   quatro prints numa grade uniforme embaixo. Nada esticado, nada escondido. */
.depoB__videos { display: grid; gap: clamp(28px, 3vw, 44px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.depoB__vid { display: grid; gap: var(--fm-s5); }
.depoB__frame { position: relative; aspect-ratio: 16/9; }
.depoB__frame .dp-frame { height: 100%; }
.depoB__frame img { height: 100%; object-fit: cover; }

.depoB__prints {
  margin-top: clamp(40px, 4vw, 64px);
  display: grid; gap: clamp(16px, 1.8vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(min(48%, 200px), 1fr));
}
.depoB__print { background: var(--fm-white); border: 1px solid var(--fm-line-light); border-radius: var(--fm-r-sm); overflow: hidden; box-shadow: 0 10px 26px rgba(20,14,40,.08); }
.depoB__print img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.depoB__cap { padding: var(--fm-s4); font-family: var(--fm-display); font-weight: 900; font-size: var(--fm-t-sm); color: var(--fm-mid); }
.depoB__label { margin-bottom: var(--fm-s5); }

/* ---- VERSÃO C · Carrossel uniforme ---------------------------------------
   Um trilho só, todos os slides com a mesma proporção de mídia (4:5) e corpo
   compacto. Resolve o vão morto sem mudar a estrutura. */
.depoC__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: var(--fm-s5); overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-block: var(--fm-s2) var(--fm-s6); scrollbar-width: none;
}
.depoC__track::-webkit-scrollbar { display: none; }
@media (min-width: 720px)  { .depoC__track { grid-auto-columns: 42%; gap: var(--fm-s6); } }
@media (min-width: 1040px) { .depoC__track { grid-auto-columns: 29%; } }

.depoC__card { scroll-snap-align: start; display: grid; gap: var(--fm-s5); align-content: start; }
.depoC__media { position: relative; aspect-ratio: 4/5; }
.depoC__media .dp-frame { height: 100%; }
.depoC__media img { height: 100%; object-fit: cover; }
.depoC__media--print img { object-fit: cover; object-position: top center; background: var(--fm-white); }
.depoC__txt { font-size: var(--fm-t-sm); line-height: var(--fm-lead-relaxed); color: var(--fm-fg-mute); font-style: italic; }
