/* =========================================================================
   Yara Honda — folha de estilo única
   Ordem: reset · tokens · temas · tipografia · componentes · seções · responsivo
   Mobile-first: as regras base valem para o celular; media queries sobem daí.
   ========================================================================= */

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul[class] { list-style: none; padding: 0; }
img, picture, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }

/* ----------------------------------------------------------------- tokens */
:root {
  /* Paleta Honda */
  --red:        #CC0000;
  --red-bright: #E20A17;
  --red-soft:   #FF4A4A;   /* vermelho legível sobre fundo escuro */
  --ink:        #0B0B0C;
  --graphite:   #161719;
  --steel:      #2A2C2F;
  --gray:       #8A8F96;
  --paper:      #F4F5F6;
  --white:      #FFFFFF;

  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --gutter: 20px;
  --radius: 14px;
  --radius-lg: 22px;

  --header-h: 62px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Tema padrão (claro) — sobrescrito por seção */
  --bg: var(--white);
  --fg: var(--ink);
  --muted: #5B6167;
  --line: rgba(11, 11, 12, .12);
  --card: var(--white);
  --card-line: rgba(11, 11, 12, .10);
  --card-shadow: 0 1px 2px rgba(11,11,12,.06), 0 12px 28px -14px rgba(11,11,12,.30);
  --accent: var(--red);
  --plate-light: linear-gradient(160deg, #FFFFFF 0%, #ECEEF0 100%);
  --plate-dark:  linear-gradient(160deg, #17181B 0%, #0A0A0B 100%);
}

/* ------------------------------------------------------------------ temas */
.theme-light { --bg: var(--white); --fg: var(--ink); --muted: #5B6167;
  --line: rgba(11,11,12,.12); --card: var(--white); --card-line: rgba(11,11,12,.10);
  --card-shadow: 0 1px 2px rgba(11,11,12,.06), 0 12px 28px -14px rgba(11,11,12,.30);
  --accent: var(--red); }

.theme-paper { --bg: var(--paper); --fg: var(--ink); --muted: #5B6167;
  --line: rgba(11,11,12,.12); --card: var(--white); --card-line: rgba(11,11,12,.08);
  --card-shadow: 0 1px 2px rgba(11,11,12,.05), 0 14px 30px -16px rgba(11,11,12,.28);
  --accent: var(--red); }

.theme-dark { --bg: var(--graphite); --fg: var(--white); --muted: #A9AEB4;
  --line: rgba(255,255,255,.14); --card: #1D1E21; --card-line: rgba(255,255,255,.10);
  --card-shadow: 0 18px 40px -22px rgba(0,0,0,.9);
  --accent: var(--red-soft); }

.theme-ink { --bg: var(--ink); --fg: var(--white); --muted: #9CA1A8;
  --line: rgba(255,255,255,.12); --card: #141517; --card-line: rgba(255,255,255,.09);
  --card-shadow: 0 18px 40px -22px rgba(0,0,0,.9);
  --accent: var(--red-soft); }

.theme-red { --bg: var(--red); --fg: var(--white); --muted: rgba(255,255,255,.86);
  --line: rgba(255,255,255,.28); --card: rgba(0,0,0,.20); --card-line: rgba(255,255,255,.22);
  --card-shadow: 0 18px 40px -24px rgba(0,0,0,.6);
  --accent: var(--white); }

/* -------------------------------------------------------------- tipografia */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.js-motion { scroll-behavior: auto; } /* o Lenis assume o controle */

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: .98;
  letter-spacing: -.005em; text-wrap: balance; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.82); }
.eyebrow--light span { color: var(--red-soft); }

.section__title { font-size: clamp(2.25rem, 9vw, 4.25rem); text-transform: uppercase; }
.section__lead { color: var(--muted); font-size: 1.03rem; max-width: 56ch; margin-top: 16px; }

.nota {
  border-left: 3px solid var(--red);
  padding: 14px 0 14px 16px;
  color: var(--muted);
  font-size: .95rem;
  max-width: 70ch;
}

/* ------------------------------------------------------------------ layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }

.section {
  background: var(--bg); color: var(--fg);
  padding-block: clamp(64px, 12vw, 128px);
  position: relative;
}
/* usada quando duas seções do mesmo tema se encostam e o padding dobraria */
.section--tight { padding-block: clamp(26px, 4vw, 42px); }
.section__head { margin-bottom: clamp(32px, 6vw, 56px); }

/* Aplica os temas às seções nomeadas */
.section--light { --bg: var(--white); --fg: var(--ink); --muted: #5B6167;
  --line: rgba(11,11,12,.12); --card: var(--white); --card-line: rgba(11,11,12,.10);
  --card-shadow: 0 1px 2px rgba(11,11,12,.06), 0 12px 28px -14px rgba(11,11,12,.30);
  --accent: var(--red); }
.section--paper { --bg: var(--paper); --fg: var(--ink); --muted: #5B6167;
  --line: rgba(11,11,12,.12); --card: var(--white); --card-line: rgba(11,11,12,.08);
  --card-shadow: 0 1px 2px rgba(11,11,12,.05), 0 14px 30px -16px rgba(11,11,12,.28);
  --accent: var(--red); }
.section--dark { --bg: var(--graphite); --fg: var(--white); --muted: #A9AEB4;
  --line: rgba(255,255,255,.14); --card: #1D1E21; --card-line: rgba(255,255,255,.10);
  --card-shadow: 0 18px 40px -22px rgba(0,0,0,.9); --accent: var(--red-soft); }
.section--ink { --bg: var(--ink); --fg: var(--white); --muted: #9CA1A8;
  --line: rgba(255,255,255,.12); --card: #141517; --card-line: rgba(255,255,255,.09);
  --card-shadow: 0 18px 40px -22px rgba(0,0,0,.9); --accent: var(--red-soft); }
.section--red { --fg: var(--white); --muted: rgba(255,255,255,.88);
  --line: rgba(255,255,255,.3); --card: rgba(0,0,0,.2); --card-line: rgba(255,255,255,.22);
  --accent: var(--white);
  background: linear-gradient(150deg, var(--red-bright) 0%, var(--red) 55%, #A80000 100%); }

/* Fio vermelho fino separando blocos de tema igual */
.section + .section::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 1px;
  background: var(--line);
}
.section--red::before, .section--dark::before, .section--ink::before { display: none; }

/* ---------------------------------------------------------------- utilitários */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--red-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

.tag {
  display: inline-block; vertical-align: middle;
  font-family: var(--font-body); font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
  border: 1px solid var(--red); color: var(--red);
  background: rgba(204, 0, 0, .07);
  white-space: nowrap;
}
.theme-dark .tag, .theme-ink .tag, .section--dark .tag, .section--ink .tag {
  border-color: var(--red-soft); color: var(--red-soft); background: rgba(255, 74, 74, .12);
}
.tag--soft { border-color: var(--line); color: var(--muted); background: transparent; }

.placeholder-box {
  border: 1px dashed var(--red-soft);
  background: rgba(255, 74, 74, .07);
  padding: 18px 20px; border-radius: var(--radius);
  color: var(--fg); font-size: .95rem; margin-block: 20px;
}
.section--light .placeholder-box, .section--paper .placeholder-box {
  border-color: var(--red); background: rgba(204, 0, 0, .05);
}

/* ---------------------------------------------------------------- botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-body); font-size: .98rem; font-weight: 600; line-height: 1;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: .9rem; }
.btn--lg { min-height: 62px; padding: 0 36px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn--wa {
  background: var(--red); color: var(--white);
  box-shadow: 0 10px 26px -12px rgba(204, 0, 0, .85);
}
.btn--wa:hover { background: var(--red-bright); box-shadow: 0 16px 30px -12px rgba(226, 10, 23, .9); }

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,.4); color: var(--white);
  background: rgba(255,255,255,.04); backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

.btn--onred { background: var(--white); color: var(--red); box-shadow: 0 14px 34px -14px rgba(0,0,0,.6); }
.btn--onred:hover { background: var(--paper); }

.btn--outline {
  border: 1.5px solid var(--card-line); color: var(--fg); background: transparent;
}
.btn--outline:hover { border-color: var(--red); color: var(--red); }

.ico-wa { flex: none; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  color: var(--white);
  background: transparent;
  transition: background-color .3s var(--ease), backdrop-filter .3s var(--ease),
              border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(11, 11, 12, .86);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: rgba(255,255,255,.10);
}
.site-header__inner { display: flex; align-items: center; gap: 14px; }

.wordmark { display: flex; align-items: center; gap: 9px; text-decoration: none; flex: none; }
.wordmark__mark {
  display: grid; place-items: center; width: 34px; height: 34px; flex: none;
  border-radius: 9px; background: var(--red); color: var(--white);
}
.wordmark__text { font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  letter-spacing: .01em; text-transform: uppercase; display: flex; gap: 6px; align-items: baseline; }
.wordmark__text b { font-weight: 700; }
.wordmark__text i { font-style: normal; font-weight: 600; color: var(--red-soft); }
/* nome da loja ao lado do wordmark — o logo da Serrana é o próprio da Honda,
   que já está na marca "Yara Honda", então aqui vai só o nome */
.wordmark__loja {
  display: none; margin-left: 10px; padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, .26);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255, 255, 255, .7); white-space: nowrap;
}

.site-nav { display: none; }
.site-nav a {
  text-decoration: none; font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.82);
  padding: 8px 2px; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--red-bright); transition: right .25s var(--ease);
}
.site-nav a:hover::after, .site-nav a.is-active::after { right: 0; }
.site-nav a:hover, .site-nav a.is-active { color: var(--white); }

.header-cta { margin-left: auto; }
.header-cta span { display: none; }

.nav-toggle {
  width: 44px; height: 44px; flex: none; display: grid; place-content: center; gap: 5px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.22);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--white);
  transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu aberto no celular */
.site-nav.is-open {
  display: flex; flex-direction: column; gap: 2px;
  position: fixed; inset: var(--header-h) 0 auto 0;
  background: rgba(11,11,12,.97);
  backdrop-filter: blur(16px);
  padding: 12px var(--gutter) 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-nav.is-open a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-nav.is-open a::after { display: none; }

/* ---------------------------------------------------------------- aviso config */
.config-alert {
  /* No celular fica no topo: embaixo cobriria os CTAs do herói e o botão
     flutuante. No desktop volta para o canto inferior direito. */
  /* abaixo do header (z-index 100) para o menu aberto no celular passar por cima */
  position: fixed; left: 12px; right: 12px; top: calc(var(--header-h) + 8px); z-index: 90;
  display: flex; align-items: flex-start; gap: 10px;
  background: #2A1A00; color: #FFD79A;
  border: 1px solid #7A5200; border-radius: 12px;
  padding: 12px 14px; font-size: .82rem; line-height: 1.45;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,.9);
}
.config-alert strong { color: #FFC24D; flex: none; }
.config-alert__close { margin-left: auto; font-size: 1.4rem; line-height: 1; color: inherit;
  flex: none; display: grid; place-items: center; width: 40px; height: 40px;
  margin: -8px -6px -8px 0; border-radius: 8px; }
.config-alert__close:hover { background: rgba(255,255,255,.1); }

/* ================================================================== HERÓI */
.hero { position: relative; background: var(--ink); }

.hero__stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  background: var(--ink);
}
.hero__canvas, .hero__poster {
  grid-area: 1 / 1;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* O bitmap do canvas é sempre dimensionado para bater exatamente com o
   elemento, então `fill` é o correto. Com `cover`, se o bitmap ficasse
   dessincronizado por um instante (barra de endereço aparecendo, svh sem
   suporte), o navegador recortaria — e no celular isso vira um zoom enorme
   no meio da moto. `fill` no pior caso estica de leve; nunca recorta. */
.hero__canvas { object-fit: fill; }
.hero__poster { z-index: 0; }
/* Em tela em pé o poster acompanha o enquadramento do canvas (moto inteira,
   no terço superior) em vez de cortar 3/4 da largura. */
@media (max-aspect-ratio: 3/4) {
  .hero__poster { object-fit: contain; object-position: 50% 33%; }
  /* véu mais leve em cima: no retrato a moto fica no terço superior e o
     gradiente do modo paisagem a apagaria */
  .hero__scrim {
    background:
      radial-gradient(140% 55% at 50% 30%, rgba(11,11,12,0) 0%, rgba(11,11,12,.25) 75%, rgba(11,11,12,.7) 100%),
      linear-gradient(to top, rgba(11,11,12,.95) 0%, rgba(11,11,12,.9) 34%, rgba(11,11,12,.1) 62%, rgba(11,11,12,.35) 100%);
  }
}
.hero__canvas { z-index: 1; opacity: 0; transition: opacity .5s var(--ease); }
.hero__canvas.is-ready { opacity: 1; }

.hero__scrim {
  grid-area: 1 / 1; z-index: 2;
  background:
    radial-gradient(120% 80% at 50% 25%, rgba(11,11,12,0) 0%, rgba(11,11,12,.55) 70%, rgba(11,11,12,.88) 100%),
    linear-gradient(to top, rgba(11,11,12,.92) 0%, rgba(11,11,12,.15) 42%, rgba(11,11,12,.55) 100%);
}

.hero__beats {
  grid-area: 1 / 1; z-index: 3;
  display: grid;
  align-content: end;
  padding: calc(var(--header-h) + 24px) var(--gutter) 108px;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
}
/* `ch` aqui resolveria contra a fonte de corpo e espremeria o título em 5+
   linhas, empurrando o texto por baixo do header — por isso a medida é em rem. */
.hero__beat { grid-area: 1 / 1; align-self: end; max-width: 22rem; color: var(--white); }
.hero__beat[data-beat="2"], .hero__beat[data-beat="3"] { display: none; }

.hero__title {
  font-size: clamp(2.5rem, 11vw, 5rem);
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,.55);
}
.hero__title--md { font-size: clamp(2.2rem, 9.5vw, 4.4rem); }
.hero__sub {
  margin-top: 18px; color: rgba(255,255,255,.86); font-size: 1rem; max-width: 46ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero__cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: opacity .4s var(--ease);
}
.hero__cue i { display: block; width: 1px; height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); }

.hero__loader {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; height: 2px;
  background: rgba(255,255,255,.10); opacity: 0; transition: opacity .4s var(--ease);
}
.hero__loader.is-active { opacity: 1; }
.hero__loader i { display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-bright)); transition: width .25s linear; }

/* Modo com movimento (JS + GSAP + sem prefers-reduced-motion).
   No celular a rolagem do herói é mais curta: 3,8 telas cansam no toque.
   `vh` primeiro e `svh` só onde há suporte: em iOS anterior ao 15.4 a
   declaração com svh é descartada e o palco ficaria sem altura. */
.js-motion .hero { height: 300vh; }
.js-motion .hero__stage { position: sticky; top: 0; height: 100vh; min-height: 0; }
@media (min-width: 900px) { .js-motion .hero { height: 380vh; } }

@supports (height: 100svh) {
  .js-motion .hero { height: 300svh; }
  .js-motion .hero__stage { height: 100svh; }
  @media (min-width: 900px) { .js-motion .hero { height: 380svh; } }
}
.js-motion .hero__beat { position: absolute; left: var(--gutter); right: var(--gutter);
  bottom: 108px; max-width: 22rem; opacity: 0; will-change: transform, opacity; }
/* O beat 1 nasce visível: é o estado de repouso do herói e também o valor
   para o qual o ScrollTrigger reverte quando o usuário volta ao topo. */
.js-motion .hero__beat[data-beat="1"] { opacity: 1; }
.js-motion .hero__beats { position: relative; }
.js-motion .hero__beat[data-beat="2"], .js-motion .hero__beat[data-beat="3"] { display: block; }

/* ============================================================== CARDS */
/* `auto-fit` em vez de um número fixo de colunas: as faixas com 2 modelos
   preenchem a linha inteira em vez de deixar uma coluna vazia, e a de 4
   destaques cabe em uma linha só nas telas largas. */
.grid { display: grid; gap: 20px; }
.grid--cards, .grid--quotes {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 264px), 1fr));
}

.card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
@media (hover: hover) {
  .card:hover { transform: translateY(-4px); border-color: var(--red); }
}

.card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.card__media--light { background: var(--plate-light); }
.card__media--dark  { background: var(--plate-dark); }
.card__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease); }
@media (hover: hover) { .card:hover .card__media img { transform: scale(1.045); } }

/* ---------------------------------------------------- placa foto+vídeo
   A foto carrega na hora e fica de base; o vídeo entra por cima com fade
   quando começa a tocar. Se ele falhar ou não for carregado (movimento
   reduzido, economia de dados), a foto permanece. */
.plate { position: absolute; inset: 0; }
.plate picture, .plate img, .plate__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.plate__video { opacity: 0; transition: opacity .5s var(--ease); border: 0; }
.plate__video.is-playing { opacity: 1; }

.card__badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(11, 11, 12, .62); color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
}

.card__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
@media (hover: hover) { .card:hover .card__media::after { transform: scaleX(1); } }

.card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px 20px 22px; flex: 1; }
.card__cat { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); }
/* sem `text-transform`: o nome sai exatamente como está no config.js —
   caso contrário "POP 110i" viraria "POP 110I". */
.card__name { font-size: 1.9rem; display: flex; flex-wrap: wrap;
  align-items: center; gap: 8px; }
.card__line { color: var(--muted); font-size: .95rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.card__meta li {
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 999px;
  border: 1px solid var(--card-line); color: var(--muted);
}
.card__cta { margin-top: auto; padding-top: 14px; }

/* ==================================================== FAIXA DE VÍDEO */
/* o fundo branco é full-bleed; só o conteúdo é limitado pela wrap */
.showcase {
  background: var(--white); color: var(--ink);
  --muted: #5B6167; --accent: var(--red);
  padding-block: clamp(48px, 8vw, 88px);
}
.showcase__inner {
  display: grid; gap: clamp(24px, 4vw, 40px);
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
}
/* `contain`: o vídeo é um produto em fundo branco — cortar a moto no `cover`
   destruiria justamente o que a faixa mostra */
.showcase__media { position: relative; width: 100%; height: clamp(220px, 42vh, 460px); }
.showcase__media picture, .showcase__media img, .showcase__media .plate__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}
.showcase__texto { display: grid; justify-items: start; gap: 4px; }
.showcase__texto .section__title { font-size: clamp(1.9rem, 7vw, 3.4rem); text-transform: uppercase; }
.showcase__texto .btn { margin-top: 22px; }

@media (min-width: 900px) {
  .showcase__inner {
    grid-template-columns: 1fr 1fr; align-items: center;
    gap: clamp(32px, 5vw, 64px);
  }
  .showcase__media { order: 2; height: clamp(320px, 46vh, 520px); }
  .showcase__texto { order: 1; }
}

/* =========================================================== CATÁLOGO */
.catalogo { position: relative; background: var(--paper); }

.catalogo__nav {
  position: sticky; top: var(--header-h); z-index: 60;
  background: rgba(11,11,12,.9);
  backdrop-filter: saturate(150%) blur(14px);
  border-block: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.catalogo__nav-inner { display: flex; align-items: center; gap: 14px; padding-block: 10px; }
.catalogo__nav-label {
  display: none;
  font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase;
  letter-spacing: .04em; color: rgba(255,255,255,.5); flex: none;
}
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; padding-block: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; min-height: 44px; padding: 0 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.82);
  font-size: .86rem; font-weight: 600; white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.chip:hover { border-color: var(--white); color: var(--white); }
.chip.is-active { background: var(--red); border-color: var(--red); color: var(--white); }

.banda { padding-block: clamp(56px, 10vw, 110px); background: var(--bg); color: var(--fg); }
.banda[hidden] { display: none; }
.banda--light { --bg: var(--white); --fg: var(--ink); --muted: #5B6167;
  --card: var(--white); --card-line: rgba(11,11,12,.10); --accent: var(--red);
  --card-shadow: 0 1px 2px rgba(11,11,12,.06), 0 12px 28px -14px rgba(11,11,12,.30); }
.banda--dark { --bg: var(--graphite); --fg: var(--white); --muted: #A9AEB4;
  --card: #1D1E21; --card-line: rgba(255,255,255,.10); --accent: var(--red-soft);
  --card-shadow: 0 18px 40px -22px rgba(0,0,0,.9); }
.banda--ink { --bg: var(--ink); --fg: var(--white); --muted: #9CA1A8;
  --card: #141517; --card-line: rgba(255,255,255,.09); --accent: var(--red-soft);
  --card-shadow: 0 18px 40px -22px rgba(0,0,0,.9); }
.banda--red { --fg: var(--white); --muted: rgba(255,255,255,.88);
  --card: rgba(0,0,0,.22); --card-line: rgba(255,255,255,.24); --accent: var(--white);
  --card-shadow: 0 18px 40px -24px rgba(0,0,0,.6);
  background: linear-gradient(150deg, var(--red-bright) 0%, var(--red) 60%, #A80000 100%); }
.banda--red .card__meta li { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.9); }
/* na faixa vermelha o selo vermelho sumiria no fundo */
.banda--red .tag { border-color: rgba(255,255,255,.55); color: var(--white);
  background: rgba(0,0,0,.22); }
.banda--red .btn--wa { background: var(--white); color: var(--red); box-shadow: none; }
.banda--red .btn--wa:hover { background: var(--paper); }

.banda__head { margin-bottom: clamp(28px, 5vw, 48px); }
.banda__nome { font-size: clamp(1.9rem, 7.5vw, 3.4rem); text-transform: uppercase; }
.banda__titulo { color: var(--muted); font-size: 1.05rem; margin-top: 14px; max-width: 52ch; }

/* ============================================================== SPLIT */
.split { display: grid; gap: clamp(28px, 6vw, 56px); align-items: center; }
.split__media { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--card-line); background: var(--plate-light); }
/* proporção fixa como nos cards: sem isso o parallax corta a moto, porque a
   altura da moldura vinha da própria imagem que está sendo deslocada */
.split__media { aspect-ratio: 16 / 9; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
/* retrato da Yara: 4:5 em vez do 16:9 dos blocos de moto */
.split__media.split__media--retrato { aspect-ratio: 4 / 5; }

.benefits { display: grid; gap: 4px; margin-top: 28px; }
.benefits li { padding: 18px 0; border-top: 1px solid var(--line); }
.benefits li:last-child { border-bottom: 1px solid var(--line); }
.benefits h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700;
  letter-spacing: 0; line-height: 1.3; margin-bottom: 6px; }
.benefits h3::before { content: "—"; color: var(--red); margin-right: 8px; font-weight: 700; }
.benefits p { color: var(--muted); font-size: .95rem; }

/* ========================================================= DEPOIMENTOS */
.quote {
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--card-shadow);
}
.quote__mark { font-family: var(--font-display); font-size: 3rem; line-height: .6;
  color: var(--red); height: 26px; }
.quote .tag { align-self: flex-start; } /* senão o selo estica na coluna flex */
.quote blockquote { font-size: 1.02rem; }
.quote figcaption { color: var(--muted); font-size: .88rem; margin-top: auto; }
.quote figcaption b { color: var(--fg); font-weight: 600; }

/* ================================================================= FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-weight: 600; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg) translate(-3px, -3px); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq .faq__answer { padding: 0 20px 20px; color: var(--muted); font-size: .96rem; }

/* =========================================================== CTA FINAL */
.cta-final { text-align: center; display: grid; gap: 22px; justify-items: center; }
/* rosto da Yara logo acima do CTA: dá a quem o visitante vai falar */
.cta-final__quem { display: grid; justify-items: center; gap: 12px; margin: 0 0 4px; }
.cta-final__quem img {
  width: 124px; height: 124px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .6);
}
.cta-final__quem figcaption {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  text-transform: uppercase; display: grid; gap: 5px;
}
.cta-final__quem figcaption span {
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; color: rgba(255, 255, 255, .85);
}
.cta-final .section__lead { margin-inline: auto; }
/* ------------------------------------------ formulário "Fale com a Yara"
   Vai sobre a faixa vermelha: campos brancos com texto escuro para o
   contraste dar conta e o formulário não parecer decoração. */
.form-wa {
  width: 100%; max-width: 560px; text-align: left;
  display: grid; gap: 16px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 26px);
}
.form-wa .campos { display: grid; gap: 14px; }
.form-wa .campo { display: grid; gap: 6px; }
.form-wa label {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
.form-wa label em { font-style: normal; font-weight: 600; letter-spacing: .06em;
  text-transform: none; color: rgba(255, 255, 255, .68); }
.form-wa input, .form-wa select {
  width: 100%; min-height: 52px; padding: 0 14px;
  border-radius: 12px; border: 1px solid transparent;
  background: var(--white); color: var(--ink);
  font-size: 1rem; /* 16px: abaixo disso o iOS dá zoom ao focar o campo */
  appearance: none;
}
.form-wa select {
  /* seta desenhada em CSS para não depender de arquivo externo */
  background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%),
                    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-wa input:focus-visible, .form-wa select:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .95); outline-offset: 2px;
}
.form-wa input[aria-invalid="true"], .form-wa select[aria-invalid="true"] {
  border-color: #7A0000; box-shadow: 0 0 0 3px rgba(122, 0, 0, .35);
}
.form-wa__erro, .form-wa__ok {
  margin: 0; padding: 11px 14px; border-radius: 10px; font-size: .9rem; font-weight: 600;
}
.form-wa__erro { background: #4A0000; color: #FFD9D9; border: 1px solid #8C1414; }
.form-wa__ok { background: #06381C; color: #B6F2CE; border: 1px solid #178348; }
.form-wa__nota { margin: 0; font-size: .78rem; line-height: 1.5; color: rgba(255, 255, 255, .8); }

.cta-final__ou {
  display: flex; align-items: center; gap: 14px; width: 100%; max-width: 560px;
  margin: 0; color: rgba(255, 255, 255, .7);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.cta-final__ou::before, .cta-final__ou::after {
  content: ""; flex: 1; height: 1px; background: rgba(255, 255, 255, .3);
}

@media (min-width: 620px) {
  .form-wa .campos { grid-template-columns: 1fr 1fr; }
  .form-wa .campo--largo { grid-column: 1 / -1; }
}

.cta-final__contatos { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px;
  font-size: .9rem; color: rgba(255,255,255,.9); }
.cta-final__contatos a { text-decoration: underline; text-underline-offset: 4px;
  display: inline-flex; align-items: center; min-height: 40px; padding-inline: 4px; }

/* ============================================================== RODAPÉ */
.site-footer { background: var(--ink); color: var(--white); padding-block: 56px 28px;
  border-top: 3px solid var(--red); }
.site-footer__inner { display: grid; gap: 34px; }
.site-footer h2 { font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red-soft); margin-bottom: 14px; }
.site-footer__nav, .site-footer__contato { display: grid; gap: 2px; align-content: start; }
.site-footer__nav a, .site-footer__contato a {
  text-decoration: none; color: rgba(255,255,255,.78); font-size: .94rem; width: fit-content;
  /* alvo de toque confortável no celular */
  display: inline-flex; align-items: center; min-height: 40px;
}
.site-footer__nav a:hover, .site-footer__contato a:hover { color: var(--white); }
.site-footer__meta { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: 14px; }
/* o max-width tem que ir nos parágrafos: em `.wrap` ele encolheria e
   centralizaria o bloco inteiro, desalinhando do resto do rodapé */
.site-footer__legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: grid; gap: 8px; color: rgba(255,255,255,.58); font-size: .76rem; }
.site-footer__legal p { max-width: 90ch; }

/* ================================================== BOTÃO FLUTUANTE WA */
.fab-wa {
  position: fixed; right: 16px; bottom: 16px; z-index: 120;
  display: flex; align-items: center; gap: 10px;
  min-height: 58px; padding: 0 18px;
  border-radius: 999px;
  background: var(--red); color: var(--white); text-decoration: none;
  box-shadow: 0 14px 34px -12px rgba(204,0,0,.9), 0 0 0 4px rgba(255,255,255,.10);
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.fab-wa:hover { transform: translateY(-3px); background: var(--red-bright); }
.fab-wa__label { font-weight: 600; font-size: .94rem; white-space: nowrap; }
@media (max-width: 420px) {
  .fab-wa { padding: 0 16px; }
  .fab-wa__label { display: none; }
}

/* ================================================== REVEALS (entrada)
   Variantes por direção + cascata via --i, para o conteúdo não entrar todo
   igual. Funciona no toque: não depende de hover. */
.js-motion .reveal { opacity: 0; transform: translateY(26px); }
.js-motion .reveal[data-reveal="left"]  { transform: translateX(-32px); }
.js-motion .reveal[data-reveal="right"] { transform: translateX(32px); }
.js-motion .reveal[data-reveal="scale"] { transform: scale(.94); }
.js-motion .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ------------------------------------- barra de progresso de leitura */
.progress {
  position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0); transform-origin: left;
  pointer-events: none;
}

/* ------------------------------------- régua vermelha sob os títulos */
.js-motion .section__head, .js-motion .banda__head { position: relative; }
.js-motion .section__head::after, .js-motion .banda__head::after {
  content: ""; position: absolute; left: 0; bottom: -14px;
  width: 72px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s .25s var(--ease);
}
.banda--red .banda__head::after, .section--red .section__head::after { background: var(--white); }
.js-motion .section__head.is-in::after, .js-motion .banda__head.is-in::after { transform: scaleX(1); }

/* ------------------- parallax: a imagem é maior que a moldura e desliza
   O parallax vai no <picture> e o zoom de hover continua no <img> — assim o
   transform inline do GSAP não apaga o `scale` do hover.
   (o `will-change` fica por conta do GSAP: fixá-lo aqui manteria 13 camadas
   compostas na memória do celular o tempo todo) */
.card__media picture, .split__media picture { display: block; width: 100%; height: 100%; }

/* --------------------------------- feedback de toque (sem depender de hover) */
.card { -webkit-tap-highlight-color: transparent; }
.card:active { transform: scale(.985); transition-duration: .12s; }
.btn:active, .chip:active, .fab-wa:active { transform: scale(.96); transition-duration: .1s; }
.faq summary:active { background: rgba(204, 0, 0, .05); }

/* --------------------------------- FAQ: a resposta abre com altura animada */
.faq .faq__answer { overflow: hidden; }

/* ============================================================ RESPONSIVO */
@media (min-width: 600px) {
  :root { --gutter: 28px; }
  .header-cta span { display: inline; }
}

@media (min-width: 900px) {
  :root { --header-h: 74px; --gutter: 36px; }
  .site-nav { display: flex; gap: 26px; margin-left: 26px; }
  .nav-toggle { display: none; }
  .site-nav.is-open { position: static; flex-direction: row; background: none;
    padding: 0; border: 0; backdrop-filter: none; }
  .site-nav.is-open a { padding: 8px 2px; font-size: .93rem; border: 0; }
  .wordmark__loja { display: inline-block; }
  .catalogo__nav-label { display: block; }

  .grid--cards, .grid--quotes { gap: 26px; }

  .split { grid-template-columns: 1.05fr .95fr; }
  .split--reverse .split__text { order: 2; }
  .split--reverse .split__media { order: 1; }
  /* Centraliza na coluna: alinhado à esquerda sobrava um vão de ~220 px.
     O `width: 100%` é obrigatório — só com `margin-inline: auto` o item de
     grid para de esticar e encolhe para o min-content, que aqui é ZERO
     (todo o conteúdo da placa é `position: absolute`). Sem ele a foto
     colapsa para uma caixa de 2x3 px e desaparece. */
  .split__media--retrato { width: 100%; max-width: 380px; margin-inline: auto; }

  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }

  .hero__beats { padding-bottom: 132px; }
  .hero__beat { max-width: 38rem; }
  .js-motion .hero__beat { bottom: 132px; left: 0; right: 0; max-width: 38rem; }
  .hero__sub { font-size: 1.08rem; max-width: 34rem; }
  .fab-wa { right: 26px; bottom: 26px; }
  .config-alert { left: auto; right: 26px; top: auto; bottom: 96px; max-width: 460px; }
}

@media (min-width: 1200px) {
  .grid--cards { gap: 30px; }
}

/* ============================================== MOVIMENTO REDUZIDO
   Cada regra é presa a `:root:not(.movimento-forcado)`. Assim o visitante que
   tem "reduzir movimento" ligado no aparelho, mas quer ver o site animado,
   consegue: o JS marca `.movimento-forcado` no <html> e este bloco inteiro
   deixa de valer. Sem JS a classe nunca existe, então o modo estático
   continua sendo o padrão seguro. */
@media (prefers-reduced-motion: reduce) {
  :root:not(.movimento-forcado) { scroll-behavior: auto; }
  :root:not(.movimento-forcado) *,
  :root:not(.movimento-forcado) *::before,
  :root:not(.movimento-forcado) *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* Herói volta a ser uma seção estática com o quadro-chave */
  :root:not(.movimento-forcado) .hero { height: auto !important; }
  :root:not(.movimento-forcado) .hero__stage {
    position: relative !important; height: auto !important; min-height: 100svh !important; }
  :root:not(.movimento-forcado) .hero__canvas { display: none; }
  :root:not(.movimento-forcado) .hero__poster { opacity: 1 !important; }
  :root:not(.movimento-forcado) .hero__beat {
    position: relative !important; opacity: 1 !important; transform: none !important; }
  :root:not(.movimento-forcado) .hero__beat[data-beat="2"],
  :root:not(.movimento-forcado) .hero__beat[data-beat="3"] { display: none !important; }
  :root:not(.movimento-forcado) .hero__cue { display: none; }
  :root:not(.movimento-forcado) .reveal { opacity: 1 !important; transform: none !important; }
  :root:not(.movimento-forcado) .card:hover,
  :root:not(.movimento-forcado) .btn:hover,
  :root:not(.movimento-forcado) .fab-wa:hover,
  :root:not(.movimento-forcado) .card:active,
  :root:not(.movimento-forcado) .btn:active,
  :root:not(.movimento-forcado) .chip:active,
  :root:not(.movimento-forcado) .fab-wa:active { transform: none; }
  /* sem parallax nem barra de progresso; a régua dos títulos já nasce cheia */
  :root:not(.movimento-forcado) .progress { display: none; }
  :root:not(.movimento-forcado) .section__head::after,
  :root:not(.movimento-forcado) .banda__head::after { transform: scaleX(1) !important; }
  :root:not(.movimento-forcado) .card__media .plate,
  :root:not(.movimento-forcado) .split__media .plate { transform: none !important; }
  :root:not(.movimento-forcado) .plate__video { display: none; }
}

/* ------------------------------- aviso "seu aparelho reduziu o movimento" */
.movimento-off {
  /* no fluxo, logo abaixo dos botões do herói — absoluto cobria o
     "Ver o catálogo" no modo estático, onde o palco cresce com o conteúdo */
  position: relative; z-index: 6; margin-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  max-width: 38rem;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(11, 11, 12, .82);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .9); font-size: .82rem; line-height: 1.45;
}
.movimento-off p { margin: 0; flex: 1 1 15rem; }
.movimento-off button {
  flex: none; min-height: 42px; padding: 0 16px; border-radius: 999px;
  background: var(--red); color: var(--white); font-weight: 600; font-size: .86rem;
}
.movimento-off button:hover { background: var(--red-bright); }

/* ============================================== IMPRESSÃO (básico) */
@media print {
  .site-header, .fab-wa, .catalogo__nav, .hero__cue, .config-alert { display: none !important; }
  .hero { height: auto !important; }
  body { background: #fff; color: #000; }
}
