/* =========================================================
   ZENTRA LOCADORA — ESTILOS DA LANDING PAGE
   Dica: tudo que se repete (cores, fontes, espaçamentos)
   está nas "variáveis" logo abaixo. Mude aqui e muda no site todo.
   ========================================================= */

/* ---------- 1. VARIÁVEIS (cores da marca) ---------- */
:root {
  --zentra-purple: #8A00FF;
  --zentra-purple-dark: #6200B8;
  --zentra-purple-deep: #39006B;
  --zentra-purple-light: #B85CFF;
  --zentra-purple-soft: #F3E6FF;

  --zentra-black: #0B0B0D;
  --zentra-graphite: #17171B;
  --zentra-dark-gray: #29292F;
  --zentra-gray: #73737D;
  --zentra-light-gray: #E8E8EC;
  --zentra-off-white: #F8F8FA;
  --zentra-white: #FFFFFF;

  --success: #16A34A;

  /* Fontes: Saira (títulos, lembra a logo) + Manrope (textos) */
  --font-display: "Saira", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --header-h: 72px;
  color-scheme: light;
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.1; text-wrap: balance; }
p { margin: 0; }

/* Container central: largura máxima + margem lateral de 20px no celular */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--zentra-purple); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip:focus { top: 12px; }

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

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- 3. TIPOGRAFIA ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--zentra-purple);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow--light { color: var(--zentra-purple-light); }

.h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: -.01em;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}
.accent { color: var(--zentra-purple); }
/* Nos títulos, a parte roxa sempre começa na linha de baixo */
.h2 .accent, .h2 .accent-light { display: block; }
.accent-light { color: var(--zentra-purple-light); }

/* ---------- 4. BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 28px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--zentra-purple); color: #fff; box-shadow: 0 8px 24px -8px rgba(138, 0, 255, .7); }
.btn--primary:hover { background: #9A1BFF; box-shadow: 0 12px 30px -8px rgba(138, 0, 255, .85); }
.btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn--ghost:hover { border-color: #fff; }
.btn--dark { background: var(--zentra-graphite); color: #fff; }
.btn--dark:hover { background: var(--zentra-purple-dark); }
.btn--light { background: #fff; color: var(--zentra-purple-deep); }
.btn--light:hover { background: var(--zentra-purple-soft); }

/* ---------- 5. HEADER ---------- */
.header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 50;
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background-color .3s ease;
}
.header.is-scrolled { background: rgba(11, 11, 13, .96); }
.header__inner { height: var(--header-h); display: flex; align-items: center; gap: 24px; }
.header__logo img { height: 40px; width: auto; }
.header__logo { flex: none; }

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav__link {
  color: #C9C9D1;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s, background-color .2s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__link.is-active { color: #fff; background: rgba(138, 0, 255, .22); }
.nav__cta-mobile { display: none; }
.header__cta { padding: 10px 20px; }

.burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.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); }

/* ---------- 6. HERO ---------- */
.hero { background: var(--zentra-black); color: #fff; overflow: hidden; }

/* Banner (computador/tablet) */
.hero-banner {
  position: relative;
  max-width: 1903px;
  margin-inline: auto;
  container-type: inline-size; /* permite usar "cqw" = % da largura do banner */
}
.hero-banner__img { width: 100%; height: auto; animation: fade .8s ease both; }

/* Botões reais posicionados em % sobre os botões desenhados na arte.
   Se trocar a imagem, ajuste left/top/width/height. */
.hb-btn {
  position: absolute;
  top: 70.13%;
  height: 10.52%;
  display: flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: max(13px, 1.45cqw);
  letter-spacing: .02em;
  color: #fff;
  text-decoration: none;
  border-radius: 1.1cqw;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  animation: rise .7s .25s cubic-bezier(.2,.7,.2,1) both;
}
.hb-btn .ico { width: 1.25em; height: 1.25em; }
.hb-btn--primary {
  left: 6.94%; width: 21.19%;
  background: #8203FB;
  box-shadow: 0 1cqw 2.4cqw -1cqw rgba(138, 0, 255, .8);
}
.hb-btn--primary:hover { background: #9A1BFF; transform: translateY(-3px); box-shadow: 0 1.4cqw 3cqw -1cqw rgba(138, 0, 255, .95); }
.hb-btn--ghost {
  left: 29.44%; width: 19.5%;
  border: max(2px, .13cqw) solid #8A00FF;
  background: #0B0C0F;
}
.hb-btn--ghost:hover { background: rgba(138, 0, 255, .22); transform: translateY(-3px); }
.hb-btn--ghost .ico { transition: transform .2s ease; }
.hb-btn--ghost:hover .ico { transform: translateX(4px); }

/* Arte do celular: botões posicionados em % sobre a arte vertical */
.hero-banner--mobile { display: none; }
.hero-banner--mobile .hb-btn {
  font-size: max(10px, 2.7cqw);
  white-space: nowrap;
  border-radius: 1.9cqw;
  gap: .45em;
}
.hero-banner--mobile .hb-btn--primary { left: 6.15%; width: 33.4%; top: 44.5%; height: 5.85%; }
.hero-banner--mobile .hb-btn--ghost   { left: 6.15%; width: 33.4%; top: 51.35%; height: 5.3%; border-width: max(1.5px, .25cqw); background: #050509; }

@media (max-width: 900px) {
  .hero-banner--desktop { display: none; }
  .hero-banner--mobile { display: block; }
}

/* ---------- 7. FAIXA (TICKER) ---------- */
.ticker { background: var(--zentra-purple); color: #fff; overflow: hidden; padding-block: 14px; }
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800; font-stretch: 110%;
  text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.1rem;
  padding-inline: 22px;
  display: flex; align-items: center; gap: 44px;
}
.ticker span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.7); }

/* ---------- 8. SEÇÕES ---------- */
.section { padding-block: clamp(64px, 9vw, 110px); }
.section--light { background: var(--zentra-off-white); }
.section--white { background: var(--zentra-white); }
.section--dark { background: var(--zentra-graphite); color: #fff; }

.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head--left { text-align: left; margin: 0; }
.section__head--left .eyebrow { justify-content: flex-start; }
.section__lead { margin-top: 16px; color: var(--zentra-gray); font-size: 1.08rem; }
.section__lead--light { color: #B4B4BD; }

/* Itens de grid podem encolher (evita rolagem lateral no celular) */
.compare-grid > *, .sim > *, .about__grid > *, .faq-wrap > * { min-width: 0; }

/* Para quem é */
.who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who__card {
  background: #fff;
  border: 1px solid var(--zentra-light-gray);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.who__card:hover { transform: translateY(-4px); border-color: var(--zentra-purple-light); box-shadow: 0 18px 40px -24px rgba(57,0,107,.45); }
.who__ico { width: 44px; height: 44px; color: var(--zentra-purple); margin-bottom: 18px; }
.who__card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.who__card p { color: var(--zentra-gray); }

/* Incluso + comparativo */
.compare-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.included { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; }
.included li { display: flex; gap: 16px; align-items: flex-start; }
.included__ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--zentra-purple-soft); color: var(--zentra-purple);
}
.included__ico .ico { width: 24px; height: 24px; }
.included strong { display: block; font-size: 1.05rem; }
.included div span { color: var(--zentra-gray); font-size: .95rem; }

.table-card {
  background: var(--zentra-black);
  border-radius: 20px;
  padding: 26px;
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(57,0,107,.6);
}
.table-scroll { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: .95rem; }
.compare caption {
  text-align: left; font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.25rem; margin-bottom: 18px;
}
.compare th, .compare td { padding: 13px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
.compare thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #8E8E98; font-weight: 700; }
.compare tbody th { font-weight: 600; color: #C9C9D1; }
.compare td { color: #8E8E98; }
.compare .is-z { color: #fff; font-weight: 700; background: rgba(138, 0, 255, .16); }
.compare thead .is-z { color: var(--zentra-purple-light); border-radius: 10px 10px 0 0; }
.compare tbody tr:last-child .is-z { border-radius: 0 0 10px 10px; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* Simulador */
.section--sim {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(60% 70% at 90% 10%, rgba(138, 0, 255, .45), transparent 70%),
    radial-gradient(55% 60% at 5% 95%, rgba(98, 0, 184, .45), transparent 70%),
    linear-gradient(160deg, #1A0633 0%, #0E0716 45%, #0B0B0D 100%);
}
.sim { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sim__box {
  background: rgba(11, 11, 13, .55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 92, 255, .28);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  display: grid; gap: 26px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8);
}
.field { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.field label, .field__label { color: #C9C9D1; font-weight: 600; }
.field output { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; font-variant-numeric: tabular-nums; }
.field input { grid-column: 1 / -1; }
.field--stack { grid-template-columns: 1fr; }

/* Barra deslizante (range) personalizada */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 99px;
  background: linear-gradient(90deg, var(--zentra-purple) var(--p, 50%), rgba(255,255,255,.14) var(--p, 50%));
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 5px solid var(--zentra-purple); box-shadow: 0 0 0 6px rgba(138,0,255,.2);
}
input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 5px solid var(--zentra-purple);
}

/* Resultado: um número em destaque e o resto discreto */
.sim__result {
  display: grid; justify-items: center; gap: 6px; text-align: center;
  padding: 24px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(138, 0, 255, .28), rgba(98, 0, 184, .12));
  border: 1px solid rgba(184, 92, 255, .25);
}
.sim__result-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #D9C2FF; }
.sim__result-value {
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 110%;
  font-size: clamp(2.6rem, 6vw, 3.4rem); line-height: 1.05;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.sim__result-detail { color: #B4B4BD; font-size: .92rem; font-variant-numeric: tabular-nums; }
.sim__result-month { color: #C9C9D1; font-size: .95rem; }
.sim__result-month strong { color: #fff; }
.sim__note { font-size: .8rem; color: #8E8E98; text-align: center; margin-top: -10px; }

/* Botões de escolha da moto no simulador */
.chips { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.chip {
  font: inherit; font-size: .8rem; font-weight: 600; line-height: 1.3;
  color: #C9C9D1; background: transparent;
  border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  padding: 9px 6px; cursor: pointer;
  display: grid; justify-items: center; gap: 2px;
  transition: background-color .2s, border-color .2s, color .2s;
}
.chip b { color: #fff; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; }
.chip:hover { border-color: var(--zentra-purple-light); color: #fff; }
.chip[aria-pressed="true"] { background: var(--zentra-purple); border-color: var(--zentra-purple); color: #fff; }

/* Motos */
.bikes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bike-card {
  background: #fff;
  border: 1px solid var(--zentra-light-gray);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bike-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(57,0,107,.5); }
.bike-card--featured { border-color: var(--zentra-purple-light); }
.bike-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  max-width: 100%;
  background:
    linear-gradient(180deg, #F1F1F4, #E4E4EA);
  display: grid; place-items: center;
  padding: 18px;
}
.bike-card__media img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 12px rgba(0,0,0,.18)); transition: transform .4s ease; }
.bike-card:hover .bike-card__media img { transform: translateX(6px) scale(1.02); }
.bike-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--zentra-black); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  padding: 4px 12px; border-radius: 99px;
}
.bike-card__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--zentra-purple); color: #fff;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 99px;
}
.bike-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.bike-card__body h3 { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.45rem; font-stretch: 108%; }
.specs { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.specs li {
  background: var(--zentra-off-white); border-radius: 10px; padding: 8px 10px;
  font-weight: 700; font-size: .95rem; font-variant-numeric: tabular-nums;
}
.specs span { display: block; font-size: .7rem; font-weight: 600; color: var(--zentra-gray); text-transform: uppercase; letter-spacing: .06em; }
.bike-card__price { color: var(--zentra-gray); margin-top: auto; }
.bike-card__price strong { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--zentra-graphite); }
.bikes__note { text-align: center; margin-top: 22px; color: var(--zentra-gray); font-size: .88rem; }

/* Como funciona */
.steps {
  list-style: none; padding: 0; margin: 0 0 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  position: relative;
}
/* Linha fina ligando os passos */
.steps::before {
  content: ""; position: absolute; top: 28px; left: 16%; right: 16%; height: 2px;
  background: linear-gradient(90deg, var(--zentra-purple-soft), var(--zentra-purple-light), var(--zentra-purple-soft));
}
.step { position: relative; text-align: center; padding-inline: 10px; }
.step__n {
  width: 58px; height: 58px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--zentra-purple); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.6rem;
  box-shadow: 0 0 0 8px #fff;
  position: relative;
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--zentra-gray); max-width: 30ch; margin-inline: auto; }

.req {
  background: var(--zentra-off-white);
  border: 1px solid var(--zentra-light-gray);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 40px);
}
.req__head { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--zentra-purple-soft); color: var(--zentra-purple-dark);
  font-weight: 700; font-size: .9rem;
  padding: 8px 14px; border-radius: 99px;
}
.req__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.req__list li { display: flex; gap: 12px; align-items: flex-start; }
.req__list .ico {
  width: 28px; height: 28px; padding: 5px; border-radius: 50%;
  background: var(--success); color: #fff; margin-top: 1px;
}
.req__list strong { display: block; }
.req__list span { color: var(--zentra-gray); font-size: .94rem; }

/* Quem somos */
.about { position: relative; overflow: hidden; }
.about::after {
  content: "Z";
  position: absolute; right: -2%; bottom: -30%;
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 125%;
  font-size: clamp(18rem, 40vw, 34rem); line-height: 1;
  color: rgba(138, 0, 255, .09);
  pointer-events: none;
}
.about__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about__text { color: #C9C9D1; margin-top: 18px; max-width: 36em; }
.insta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 28px;
  color: #fff; font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--zentra-purple-light); padding-bottom: 4px;
}
.insta:hover { color: var(--zentra-purple-light); }
.values { display: grid; gap: 14px; }
.value {
  border-left: 4px solid var(--zentra-purple);
  background: rgba(255,255,255,.04);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value h3 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 1.3rem; margin-bottom: 4px; }
.value p { color: #B4B4BD; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-wrap .section__head .btn { margin-top: 26px; }
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--zentra-light-gray);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--zentra-purple-light); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--zentra-purple-soft); color: var(--zentra-purple);
  font-size: 1.3rem; font-weight: 600; line-height: 1;
  transition: transform .25s ease, background-color .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--zentra-purple); color: #fff; }
.faq details p { padding: 0 22px 20px; color: #4A4A52; }
.faq details a { color: var(--zentra-purple); font-weight: 700; }

/* Chamada final */
.final {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 40px, transparent 40px 64px) left bottom 28px / 100% 4px no-repeat,
    var(--zentra-purple);
  color: #fff;
  padding-block: clamp(64px, 8vw, 96px);
  text-align: center;
}
.final__inner { display: grid; justify-items: center; gap: 18px; }
.final__title {
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 115%;
  font-size: clamp(2rem, 5vw, 3.4rem); max-width: 16em;
}
.final p { font-size: 1.1rem; opacity: .9; margin-bottom: 8px; }

/* Rodapé */
.footer { background: var(--zentra-black); color: #A9A9B2; padding-block: 56px 28px; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
.footer__logo { height: 42px; width: auto; margin-bottom: 14px; }
.footer h3 { color: #fff; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.footer p { margin-bottom: 6px; }
.footer a { text-decoration: none; color: #D8D8DE; }
.footer a:hover { color: var(--zentra-purple-light); }
.footer__copy { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }

/* Botão flutuante WhatsApp */
.wa-float {
  position: fixed; z-index: 60;
  right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.5);
  transition: transform .2s ease;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: ping 2.2s ease-out infinite;
}

/* Surgimento suave ao rolar (o conteúdo continua visível mesmo sem JS) */
.reveal { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-waiting { transform: translateY(24px); }

/* ---------- 9. ANIMAÇÕES ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { transform: rotate(-8deg) scale(.4); opacity: 0; } to { transform: rotate(-8deg) scale(1); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes road { to { stroke-dashoffset: 56; } }
@keyframes speed { 0%, 100% { transform: translateX(0); opacity: .9; } 50% { transform: translateX(-18px); opacity: .35; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes ping { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

/* Quem prefere menos movimento (config. do celular/PC) não vê animações */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 10. RESPONSIVO (tablet e celular) ---------- */
@media (max-width: 980px) {
  .nav {
    position: fixed; left: 0; right: 0;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    flex-direction: column; gap: 4px;
    background: var(--zentra-black);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .35s ease, visibility .35s;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav__link { font-size: 1.1rem; padding: 14px 12px; }
  .nav__cta-mobile { display: inline-flex; margin-top: 10px; padding: 14px; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .compare-grid, .sim, .about__grid, .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .bikes { grid-template-columns: 1fr 1fr; }
  .who { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .header__logo img { height: 34px; }
  .who, .bikes, .req__list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { top: 28px; bottom: 28px; left: 28px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--zentra-purple-light), var(--zentra-purple-soft)); }
  .step { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; text-align: left; padding: 0; }
  .step__n { grid-row: span 2; margin: 0; }
  .step p { margin: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}
