/* =====================================================================
   GeoMotors — Folha de estilo principal
   Mobile-first · Azul de marca · Premium/editorial · Foco em conversão
   ---------------------------------------------------------------------
   Sumário:
   01. Design tokens (variáveis)      07. Hero
   02. Reset & base                   08. Motivo gráfico de scroll
   03. Tipografia & utilitários       09. Seções (factor, fidelidade...)
   04. Layout (container/section)     10. FAQ / acordeão
   05. Botões & componentes           11. Footer
   06. Header & navegação             12. WhatsApp flutuante / animações / a11y
   ===================================================================== */

/* ====== 01. DESIGN TOKENS ========================================== */
:root {
    /* Azul GeoMotors — escala de marca */
    --navy-900: #06142E;   /* fundo escuro premium */
    --navy-800: #0A2046;
    --blue-900: #0A2A66;
    --blue-700: #0B43B5;
    --blue-600: #1457E6;   /* AZUL PRINCIPAL DA MARCA */
    --blue-500: #2E6BFF;
    --blue-400: #4D86FF;
    --blue-100: #D6E4FF;
    --blue-50:  #EEF4FF;

    /* WhatsApp (gatilho de conversão) */
    --wa:       #25D366;
    --wa-dark:  #1EB257;

    /* Neutros */
    --ink:      #0E1726;   /* texto principal */
    --muted:    #5A6A85;   /* texto secundário */
    --line:     #E5EBF5;   /* bordas */
    --bg:       #FFFFFF;
    --bg-soft:  #F4F7FC;
    --white:    #FFFFFF;

    /* Tipografia */
    --font-head: 'Sora', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Raios e sombras */
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 24px;
    --r-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(10,42,102,.06);
    --shadow:    0 14px 40px rgba(10,42,102,.10);
    --shadow-lg: 0 30px 70px rgba(10,42,102,.16);
    --shadow-wa: 0 12px 30px rgba(37,211,102,.35);

    /* Espaçamento de seção (fluido) */
    --section-y: clamp(3.5rem, 8vw, 7rem);
    --container: 1200px;

    /* Transições */
    --t: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ====== 02. RESET & BASE =========================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

/* ====== 03. TIPOGRAFIA & UTILITÁRIOS =============================== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }

.text-grad {
    background: linear-gradient(100deg, var(--blue-400), var(--blue-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-head);
    font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--blue-600);
    margin-bottom: 1rem;
}
.eyebrow svg { width: 16px; height: 16px; }
.eyebrow--blue  { color: var(--blue-600); }
.eyebrow--light { color: var(--blue-100); }
.eyebrow--light svg, .eyebrow--blue svg { color: var(--blue-400); }

.icon { width: 22px; height: 22px; flex: none; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--blue-600); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ====== 04. LAYOUT ================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 800px; }

.section { position: relative; padding-block: var(--section-y); overflow: clip; }
.section--soft  { background: var(--bg-soft); }
.section--dark  { background: linear-gradient(160deg, var(--navy-900), var(--blue-900)); color: #fff; }
.section--brand { background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); color: #fff; }

.section__head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.7rem, 4.6vw, 2.85rem); }
.section__lead {
    margin-top: 1rem; font-size: clamp(1.02rem, 2.2vw, 1.18rem); color: var(--muted); line-height: 1.65;
}
.section--dark .section__lead, .section__lead--light { color: var(--blue-100); }

/* ====== 05. BOTÕES & COMPONENTES ================================== */
.btn {
    --btn-bg: var(--blue-600); --btn-fg: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    padding: .9rem 1.5rem; border-radius: var(--r-pill);
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    text-align: center; line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa    { --btn-bg: var(--wa); --btn-fg: #053b1e; box-shadow: var(--shadow-wa); }
.btn--wa:hover { --btn-bg: var(--wa-dark); --btn-fg: #fff; }
.btn--primary { --btn-bg: var(--blue-600); box-shadow: var(--shadow); }
.btn--light  { --btn-bg: #fff; --btn-fg: var(--blue-700); box-shadow: var(--shadow-lg); }
.btn--ghost {
    --btn-bg: transparent; --btn-fg: currentColor;
    border: 1.5px solid currentColor; box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }

.btn--sm  { padding: .6rem 1.05rem; font-size: .9rem; }
.btn--lg  { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn--xl  { padding: 1.2rem 2.2rem; font-size: 1.15rem; }
.btn--block { width: 100%; }

/* ====== 06. HEADER & NAVEGAÇÃO ==================================== */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background var(--t), box-shadow var(--t), padding var(--t);
    padding-block: .85rem;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: var(--shadow-sm);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Logo (imagens oficiais da marca) */
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 38px; width: auto; display: block; }
/* Sobre o hero mostra a branca; ao rolar (header sólido) troca pela preta */
.logo__img--dark { display: none; }
.site-header.is-scrolled .logo__img--light { display: none; }
.site-header.is-scrolled .logo__img--dark { display: block; }
.logo--footer .logo__img { height: 44px; }
@media (max-width: 480px) { .logo__img { height: 32px; } }

/* Navegação */
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; gap: 1.5rem; }
.nav__link {
    font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; padding-block: .25rem;
}
.site-header:not(.is-scrolled) .nav__link { color: rgba(255,255,255,.9); }
.nav__link::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
    background: var(--blue-500); transition: width var(--t);
}
.nav__link:hover::after { width: 100%; }

/* Hambúrguer */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .55rem; z-index: 120; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-overlay {
    position: fixed; inset: 0; background: rgba(6,20,46,.55); z-index: 90; opacity: 0;
    transition: opacity var(--t);
}

/* ----- Mobile nav ----- */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
        flex-direction: column; align-items: flex-start; justify-content: flex-start;
        gap: 1.25rem; padding: 6rem 1.75rem 2rem;
        background: #fff; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform var(--t); z-index: 110;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: .25rem; width: 100%; }
    .nav__link { display: block; padding: .8rem 0; font-size: 1.1rem; color: var(--ink); border-bottom: 1px solid var(--line); width: 100%; }
    .site-header:not(.is-scrolled) .nav__link { color: var(--ink); }
    .nav__cta { width: 100%; margin-top: .5rem; }
    .nav-overlay.is-open { display: block; opacity: 1; }
    /* hambúrguer animado em X */
    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
    body.nav-open .nav-toggle span { background: var(--ink) !important; }
}

/* ====== 07. HERO ================================================== */
.hero {
    position: relative; isolation: isolate;
    background: radial-gradient(120% 120% at 80% 0%, var(--blue-900) 0%, var(--navy-900) 55%);
    color: #fff; padding-top: clamp(7rem, 16vw, 9.5rem); padding-bottom: clamp(4rem, 10vw, 7rem);
    overflow: clip;
}
.hero__inner {
    display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center;
}
.hero__content { max-width: 640px; position: relative; z-index: 2; }
.hero__title {
    font-size: clamp(2.1rem, 8vw, 4.2rem); font-weight: 800; line-height: 1.05;
}
.hero__subtitle {
    margin-top: 1.25rem; font-size: clamp(1.05rem, 2.6vw, 1.3rem); color: var(--blue-100); max-width: 36ch;
}
.hero__subtitle strong { color: #fff; }

.hero__price {
    display: inline-flex; align-items: baseline; gap: .4rem; flex-wrap: wrap;
    margin-top: 1.5rem; font-family: var(--font-head); color: var(--blue-100);
}
.hero__price-value { font-size: clamp(1.8rem, 5vw, 2.4rem); font-weight: 800; color: #fff; }
.hero__price-period { font-size: 1rem; color: var(--blue-100); }

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.75rem; }
.hero__cta .btn--ghost { color: #fff; }

.hero__badges {
    display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-top: 2rem;
    font-size: .92rem; color: var(--blue-100); font-weight: 500;
}
.hero__badges li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__badges svg { width: 18px; height: 18px; color: var(--wa); }

.hero__media { position: relative; z-index: 2; display: grid; place-items: center; }
.hero__media img {
    width: 100%; max-width: 640px; position: relative; z-index: 2;
    /* Recorta suavemente as bordas para a foto (fundo branco) não virar
       um retângulo sobre o hero escuro — a moto fica "flutuando". */
    -webkit-mask-image: radial-gradient(82% 74% at 50% 46%, #000 72%, transparent 100%);
            mask-image: radial-gradient(82% 74% at 50% 46%, #000 72%, transparent 100%);
}
.hero__media .ph { width: 100%; border-radius: var(--r-lg); position: relative; z-index: 2; }
/* "Spotlight" claro atrás da moto: faz o fundo branco da foto se fundir */
.hero__media-glow {
    position: absolute; z-index: 1; left: 50%; top: 47%; transform: translate(-50%, -50%);
    width: 105%; aspect-ratio: 1.25; border-radius: 50%;
    background: radial-gradient(circle at 50% 46%,
        rgba(231, 240, 255, .92) 0%,
        rgba(120, 165, 255, .45) 34%,
        rgba(46, 107, 255, .18) 55%,
        transparent 72%);
    filter: blur(6px);
}
/* Sombra de chão (dá peso à moto) */
.hero__media::after {
    content: ""; position: absolute; z-index: 1; left: 50%; bottom: 8%; transform: translateX(-50%);
    width: 62%; height: 30px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .5), transparent 72%);
    filter: blur(7px);
}

.hero__scroll {
    position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 3;
    width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
    display: none;
}
.hero__scroll span {
    position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 2px;
    transform: translateX(-50%); animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} }

/* ====== 08. MOTIVO GRÁFICO DE SCROLL (roda da marca) ============== */
.scroll-motif {
    position: absolute; z-index: 0; pointer-events: none;
    width: clamp(360px, 60vw, 720px); aspect-ratio: 1; opacity: .06;
    will-change: transform;
}
.scroll-motif__svg { width: 100%; height: 100%; object-fit: contain; }
.section--dark .scroll-motif, .section--brand .scroll-motif, .hero .scroll-motif { opacity: .10; }
.section:not(.section--dark):not(.section--brand) .scroll-motif { opacity: .06; }

.scroll-motif--hero   { top: -8%; right: -12%; }
.scroll-motif--right  { top: 6%;  right: -16%; }
.scroll-motif--left   { bottom: -10%; left: -16%; }
.scroll-motif--center { top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ====== 09. SEÇÕES =============================================== */

/* --- Factor 150 --- */
.factor__grid { display: grid; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.factor__media { position: relative; display: grid; place-items: center; }
.factor__media img { width: 100%; max-width: 600px; position: relative; z-index: 2; }
.factor__media .ph { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
/* brilho suave + sombra de chão para a moto "flutuar" na seção clara */
.factor__media::before {
    content: ""; position: absolute; z-index: 0; left: 50%; top: 46%; transform: translate(-50%, -50%);
    width: 96%; aspect-ratio: 1.2; border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 107, 255, .16), transparent 68%);
}
.factor__media::after {
    content: ""; position: absolute; z-index: 1; left: 50%; bottom: 6%; transform: translateX(-50%);
    width: 60%; height: 26px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(10, 42, 102, .22), transparent 70%);
    filter: blur(6px);
}
.factor__badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 3;
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--blue-600); color: #fff; font-weight: 700; font-size: .82rem;
    padding: .5rem .9rem; border-radius: var(--r-pill); box-shadow: var(--shadow);
}
.factor__badge svg { width: 16px; height: 16px; color: #FFD24D; }

.factor__benefits { display: grid; gap: 1rem; margin: 1.75rem 0; }
.factor__benefit { display: flex; gap: .9rem; align-items: flex-start; }
.factor__benefit-icon {
    flex: none; display: grid; place-items: center; width: 42px; height: 42px;
    background: var(--blue-50); color: var(--blue-600); border-radius: 12px;
}
.factor__benefit-icon svg { width: 22px; height: 22px; }
.factor__benefit strong { display: block; font-family: var(--font-head); font-size: 1.02rem; }
.factor__benefit span span { color: var(--muted); font-size: .96rem; }

.factor__specs {
    display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem; margin: 1.75rem 0;
    padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.spec { display: flex; flex-direction: column; }
.spec__value { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--blue-600); }
.spec__label { font-size: .85rem; color: var(--muted); }

/* --- Plano Fidelidade --- */
.fidelidade__desc {
    max-width: 720px; margin: 0 auto 2.5rem; text-align: center; color: var(--blue-100); font-size: 1.1rem;
}
.fidelidade__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.fid-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r); padding: 1.75rem 1.5rem; backdrop-filter: blur(4px);
    transition: transform var(--t), background var(--t);
}
.fid-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.fid-card__num { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--blue-400); }
.fid-card__title { margin: .5rem 0 .5rem; font-size: 1.2rem; color: #fff; }
.fid-card__text { color: var(--blue-100); font-size: .98rem; }
.fidelidade__cta { text-align: center; margin-top: 2.5rem; }
.fidelidade__cta-note { margin-top: .9rem; font-size: .9rem; color: var(--blue-100); }

/* --- Benefícios --- */
.beneficios__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.benefit-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit-card__icon {
    display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: #fff; margin-bottom: 1.1rem;
}
.benefit-card__icon svg { width: 28px; height: 28px; }
.benefit-card__title { font-size: 1.18rem; margin-bottom: .5rem; }
.benefit-card__text { color: var(--muted); font-size: .98rem; }

/* --- Modelos --- */
.modelos__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.moto-card {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    display: flex; flex-direction: column;
}
.moto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.moto-card--featured { border-color: var(--blue-400); box-shadow: 0 0 0 2px var(--blue-100), var(--shadow); }
.moto-card__tag {
    position: absolute; top: .9rem; left: .9rem; z-index: 3;
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--blue-600); color: #fff; font-size: .78rem; font-weight: 700;
    padding: .4rem .8rem; border-radius: var(--r-pill);
}
.moto-card__tag svg { width: 14px; height: 14px; color: #FFD24D; }
.moto-card__media {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    background: radial-gradient(120% 90% at 50% 18%, #ffffff 0%, #eef3fb 70%, #e4ecf7 100%);
    display: grid; place-items: center; padding: .75rem .75rem 0;
}
.moto-card__media img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 2; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.moto-card__media .ph { width: 100%; height: 100%; object-fit: cover; }
.moto-card:hover .moto-card__media img { transform: scale(1.06); }
/* sombra de chão dentro do card */
.moto-card__media::after {
    content: ""; position: absolute; z-index: 1; left: 50%; bottom: 9%; transform: translateX(-50%);
    width: 70%; height: 16px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(10, 42, 102, .20), transparent 72%);
    filter: blur(5px);
}
.moto-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.moto-card__title { font-size: 1.3rem; }
.moto-card__meta { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .88rem; }
.moto-card__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.moto-card__meta svg { width: 16px; height: 16px; color: var(--blue-600); }
.moto-card__text { color: var(--muted); font-size: .95rem; flex: 1; }
.moto-card__price { font-family: var(--font-head); font-weight: 700; color: var(--blue-700); font-size: 1.05rem; }
.moto-card__body .btn { margin-top: .4rem; }

/* --- Como funciona --- */
.passos { display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
.passo {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform var(--t);
}
.passo:hover { transform: translateY(-4px); }
.passo__num {
    font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--blue-600); line-height: 1;
}
.passo__num small { font-size: .9rem; color: var(--muted); font-weight: 600; }
.passo__title { margin: .75rem 0 .4rem; font-size: 1.2rem; }
.passo__text { color: var(--muted); font-size: .96rem; }
.como__cta { text-align: center; margin-top: 2.5rem; }

/* --- Documentos --- */
.documentos__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
.documentos__intro .btn { margin-top: 1.5rem; }
.documentos__list { display: grid; gap: .85rem; }
.documentos__list li {
    display: flex; align-items: center; gap: .85rem; background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-sm); padding: 1rem 1.25rem; font-weight: 500; box-shadow: var(--shadow-sm);
}
.documentos__check { display: grid; place-items: center; width: 30px; height: 30px; flex: none;
    background: var(--wa); color: #053b1e; border-radius: 50%; }
.documentos__check svg { width: 18px; height: 18px; }

/* --- Depoimentos --- */
.depoimentos__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.depo-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm);
}
.stars { display: inline-flex; gap: 2px; margin-bottom: .9rem; }
.stars .star-on  { color: #FFB400; width: 20px; height: 20px; }
.stars .star-off { color: var(--line); width: 20px; height: 20px; }
.depo-card__text { font-size: 1.05rem; line-height: 1.6; color: var(--ink); margin-bottom: 1.25rem; }
.depo-card__author { display: flex; align-items: center; gap: .8rem; }
.depo-card__avatar {
    display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: #fff;
    font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
}
.depo-card__author strong { display: block; font-family: var(--font-head); }
.depo-card__author small { color: var(--muted); }

/* ====== 10. FAQ / ACORDEÃO ======================================= */
.accordion { display: grid; gap: .75rem; }
.accordion__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.accordion__heading { margin: 0; }
.accordion__trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.2rem 1.35rem; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
    transition: color var(--t);
}
.accordion__trigger:hover { color: var(--blue-600); }
.accordion__icon { flex: none; display: grid; place-items: center; width: 30px; height: 30px;
    background: var(--blue-50); color: var(--blue-600); border-radius: 50%; transition: transform var(--t); }
.accordion__icon svg { width: 18px; height: 18px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(45deg); background: var(--blue-600); color: #fff; }
.accordion__panel { padding: 0 1.35rem 1.3rem; color: var(--muted); }
.faq__cta { text-align: center; margin-top: 2rem; }
.faq__cta p { margin-bottom: .85rem; color: var(--muted); }

/* ====== CTA final ================================================ */
.cta-final { text-align: center; }
.cta-final__inner { max-width: 720px; margin-inline: auto; position: relative; z-index: 2; }
.cta-final__title { font-size: clamp(1.8rem, 5vw, 3rem); color: #fff; }
.cta-final__text { margin: 1.1rem auto 2rem; font-size: 1.15rem; color: var(--blue-100); max-width: 48ch; }
.cta-final__phone { margin-top: 1.25rem; color: var(--blue-100); font-size: .95rem; }
.cta-final__phone a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ====== 11. FOOTER =============================================== */
.site-footer { background: var(--navy-900); color: var(--blue-100); padding-block: clamp(3rem, 7vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer-col--brand .logo { margin-bottom: 1rem; }
.footer-about { font-size: .96rem; line-height: 1.6; max-width: 38ch; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #fff; transition: background var(--t), transform var(--t);
}
.footer-social a:hover { background: var(--blue-600); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-title { font-size: 1.05rem; color: #fff; margin-bottom: 1.1rem; }
.footer-links a, .footer-contact a { transition: color var(--t); }
.footer-links li { margin-bottom: .6rem; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .85rem; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-400); flex: none; margin-top: 2px; }
.footer-map { border-radius: var(--r); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.footer-map iframe { width: 100%; height: 200px; border: 0; filter: grayscale(.2) contrast(1.05); }
.footer-bottom {
    margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
    font-size: .85rem; color: rgba(255,255,255,.6);
}

/* ====== 12. WHATSAPP FLUTUANTE =================================== */
.wa-float {
    position: fixed; right: 1rem; bottom: 1rem; z-index: 95;
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--wa); color: #fff; font-family: var(--font-head); font-weight: 700;
    padding: .9rem 1.1rem; border-radius: var(--r-pill); box-shadow: var(--shadow-wa);
    transform: translateY(150%); opacity: 0; transition: transform .35s var(--t), opacity .35s, background var(--t);
}
.wa-float.is-visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: var(--wa-dark); }
.wa-float__icon { width: 28px; height: 28px; position: relative; z-index: 2; }
.wa-float__label { font-size: .95rem; }
.wa-float__pulse {
    position: absolute; inset: 0; border-radius: var(--r-pill); background: var(--wa); z-index: 1;
    animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.6} 70%{transform:scale(1.5);opacity:0} 100%{opacity:0} }

/* ====== ANIMAÇÕES DE REVEAL ====================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ====== RESPONSIVO (tablet/desktop) ============================= */
@media (min-width: 600px) {
    .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
    .modelos__grid    { grid-template-columns: repeat(2, 1fr); }
    .fidelidade__grid { grid-template-columns: repeat(2, 1fr); }
    .depoimentos__grid{ grid-template-columns: repeat(2, 1fr); }
    .passos           { grid-template-columns: repeat(2, 1fr); }
    .hero__scroll     { display: block; }
}
@media (min-width: 900px) {
    .hero__inner      { grid-template-columns: 1.05fr .95fr; }
    .factor__grid     { grid-template-columns: 1fr 1fr; }
    .documentos__grid { grid-template-columns: 1fr 1fr; }
    .beneficios__grid { grid-template-columns: repeat(3, 1fr); }
    .fidelidade__grid { grid-template-columns: repeat(4, 1fr); }
    .passos           { grid-template-columns: repeat(4, 1fr); }
    .depoimentos__grid{ grid-template-columns: repeat(3, 1fr); }
    .footer-grid      { grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; }
}
@media (min-width: 1100px) {
    /* 2 colunas grandes = cada moto aparece em destaque (não "quadradinho") */
    .modelos__grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ====== ACESSIBILIDADE: reduzir movimento ======================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .scroll-motif { transform: none !important; }
}
