/* =====================================================================
   RODALUCRO — LANDING INSTITUCIONAL
   Design system + estilos da página. Mobile-first.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS (variáveis CSS centralizadas)
   --------------------------------------------------------------------- */
:root {
    /* Paleta base — slate dark premium */
    --bg-page:        #0a1020;          /* Fundo principal (mais escuro que slate-900 pra dar profundidade) */
    --bg-surface:     #0f172a;          /* slate-900 */
    --bg-surface-2:   #1e293b;          /* slate-800 */
    --bg-surface-3:   #334155;          /* slate-700 */
    --border-soft:    rgba(148, 163, 184, 0.12);
    --border-strong:  rgba(148, 163, 184, 0.25);

    /* Texto */
    --text-strong:    #ffffff;
    --text-base:      #e2e8f0;          /* slate-200 */
    --text-muted:     #94a3b8;          /* slate-400 */
    --text-dim:       #64748b;          /* slate-500 */

    /* Destaque — gradiente dourado (cor da prosperidade) */
    --gold-1:         #FF6B00;          /* laranja vivo */
    --gold-2:         #FF9E40;          /* dourado quente */
    --gold-3:         #FFC163;          /* dourado claro */
    --gold-grad:      linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
    --gold-soft:      rgba(255, 138, 32, 0.16);
    --gold-glow:      rgba(255, 158, 64, 0.35);

    /* Semânticas (uso pontual) */
    --green:          #22c55e;
    --green-soft:     rgba(34, 197, 94, 0.18);
    --red:            #dc2626;
    --red-soft:       rgba(220, 38, 38, 0.18);

    /* Tipografia */
    --font:           'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --weight-regular: 400;
    --weight-medium:  500;
    --weight-semi:    600;
    --weight-bold:    700;
    --weight-black:   800;

    /* Escala fluida (clamp para evitar quebras entre breakpoints) */
    --fs-display: clamp(2.25rem, 6vw, 4.5rem);    /* h1 hero */
    --fs-h2:      clamp(1.875rem, 4.5vw, 3rem);   /* h2 seções */
    --fs-h3:      clamp(1.125rem, 2.2vw, 1.375rem);
    --fs-lead:    clamp(1.0625rem, 2vw, 1.25rem);
    --fs-body:    clamp(1rem, 1.8vw, 1.0625rem);
    --fs-small:   0.875rem;
    --fs-micro:   0.75rem;

    /* Espaços */
    --space-section: clamp(4rem, 10vw, 8rem);     /* padding vertical de seção */
    --container-max: 1200px;
    --container-px:  clamp(1.25rem, 4vw, 2.5rem);

    /* Raios e sombras */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --shadow-soft:  0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-card:  0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold:  0 12px 40px rgba(255, 107, 0, 0.35);

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast:   200ms;
    --dur-med:    300ms;
    --dur-slow:   600ms;
}

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

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

body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--fs-body);
    line-height: 1.6;
    font-weight: var(--weight-regular);
    color: var(--text-base);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: var(--weight-bold); color: var(--text-strong); }

p { margin: 0; }

/* Foco visível (a11y) */
:focus-visible {
    outline: 2px solid var(--gold-2);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip link (a11y) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    background: var(--gold-grad);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: var(--weight-semi);
    z-index: 1000;
    transition: top var(--dur-med) var(--ease-out-expo);
}
.skip-link:focus { top: 8px; }

/* ---------------------------------------------------------------------
   3. UTILITIES
   --------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-px);
}

.text-gold {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-2);  /* fallback */
}

/* Chip — pequeno rótulo com fundo glass */
.chip {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: var(--fs-micro);
    font-weight: var(--weight-semi);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-base);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.chip--ghost {
    background: var(--gold-soft);
    border-color: rgba(255, 158, 64, 0.3);
    color: var(--gold-3);
}

/* Section padrão */
.section {
    padding-block: var(--space-section);
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.section__title {
    font-size: var(--fs-h2);
    font-weight: var(--weight-black);
    letter-spacing: -0.025em;
}

.section__lead {
    font-size: var(--fs-lead);
    color: var(--text-muted);
    max-width: 640px;
}

/* ---------------------------------------------------------------------
   4. BOTÕES
   --------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-weight: var(--weight-bold);
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        box-shadow var(--dur-med) var(--ease-out-expo),
        background var(--dur-med) var(--ease-out-expo);
    will-change: transform;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold-grad);
    color: #1a0a00;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--primary:active { transform: translateY(-2px) scale(1); }

.btn--xl { padding: 22px 40px; font-size: 1.125rem; border-radius: var(--radius-lg); }

.btn__icon { width: 22px; height: 22px; flex-shrink: 0; }

/* Mobile: pulse sutil no botão primário do hero (sem hover no mobile) */
@media (hover: none) {
    .hero .btn--primary {
        animation: pulse-soft 2.6s var(--ease-out-expo) infinite;
    }
}

@keyframes pulse-soft {
    0%, 100% { box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 16px 50px rgba(255, 107, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

/* Badge "Em breve App Store" */
.badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    font-size: var(--fs-small);
    font-weight: var(--weight-medium);
}

.badge-soon__icon { width: 18px; height: 18px; }

/* ---------------------------------------------------------------------
   5. HERO
   --------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4rem, 10vw, 7rem) clamp(3rem, 8vw, 6rem);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 0, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #0a1020 0%, #0f172a 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 158, 64, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 40%);
    animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__container { grid-template-columns: 1.1fr 0.9fr; }
}

.hero__content { display: flex; flex-direction: column; gap: 1.25rem; }

.hero__headline {
    font-size: var(--fs-display);
    font-weight: var(--weight-black);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-top: 0.5rem;
}

.hero__subheadline {
    font-size: var(--fs-lead);
    color: var(--text-base);
    max-width: 56ch;
    line-height: 1.55;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0.5rem;
    align-items: center;
}

.hero__friction {
    color: var(--text-muted);
    font-size: var(--fs-small);
}

.hero__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--text-base);
    font-size: var(--fs-small);
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-soft);
    margin-top: 1rem;
}

.hero__social strong { font-weight: var(--weight-semi); color: var(--text-strong); }
.hero__social-light { font-weight: var(--weight-regular); color: var(--text-muted); margin-left: 4px; }
.hero__rating { color: var(--text-muted); display: inline-flex; gap: 8px; align-items: center; }
.hero__rating strong { color: var(--gold-3); }
.dot { color: var(--text-dim); }
.star { font-size: 1rem; }

/* --- Mockup do hero (CSS-only phone frame) --- */
.hero__mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    perspective: 1200px;
}

.phone-frame {
    position: relative;
    width: 270px;
    height: 540px;
    background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 14px;
    animation: float-y 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0) rotateY(-2deg); }
    50% { transform: translateY(-12px) rotateY(2deg); }
}

.phone-frame__notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #000;
    border-radius: 100px;
    z-index: 2;
}

.phone-frame__screen {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 138, 32, 0.16) 0%, transparent 70%),
        linear-gradient(180deg, #0a1020 0%, #0f172a 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 60px 20px 30px;
}

.phone-frame__brand {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 8px 20px rgba(255, 158, 64, 0.4));
}

.phone-frame__brand img { width: 100%; height: 100%; object-fit: contain; }

.phone-frame__pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: var(--weight-semi);
}

.pill--gold {
    background: var(--gold-grad);
    color: #1a0a00;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

.pill--green {
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.phone-frame__bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.bar {
    height: 6px;
    border-radius: 100px;
    background: rgba(148, 163, 184, 0.15);
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-grad);
    border-radius: 100px;
    transform-origin: left;
    animation: fill-bar 2.4s var(--ease-out-expo) infinite;
}

.bar--1::after { animation-delay: 0s; width: 80%; }
.bar--2::after { animation-delay: 0.3s; width: 60%; }
.bar--3::after { animation-delay: 0.6s; width: 90%; }

@keyframes fill-bar {
    0% { transform: scaleX(0); opacity: 0.6; }
    40% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(1); opacity: 1; }
}

/* Ícones flutuantes orbitando o phone */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
    opacity: 0.9;
}

.floating-icon--car {
    top: 8%;
    right: 4%;
    animation: float-icon-1 8s ease-in-out infinite;
}

.floating-icon--plane {
    bottom: 12%;
    left: 4%;
    animation: float-icon-2 9s ease-in-out infinite;
}

@keyframes float-icon-1 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    50% { transform: translate(10px, -15px) rotate(5deg); }
}

@keyframes float-icon-2 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    50% { transform: translate(-10px, 15px) rotate(-5deg); }
}

/* ---------------------------------------------------------------------
   6. SEÇÃO VIRADA DE IDENTIDADE
   --------------------------------------------------------------------- */
.section--virada {
    background: linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
}

.virada {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.virada__lines {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-base);
    font-weight: var(--weight-medium);
}

.virada__lines strong {
    color: var(--gold-3);
    font-weight: var(--weight-bold);
}

.virada__paragraph {
    font-size: var(--fs-lead);
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
}

.virada__paragraph strong { color: var(--text-base); }

.virada__anchor {
    margin-top: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 158, 64, 0.04) 100%);
    border: 1px solid rgba(255, 158, 64, 0.2);
    font-size: var(--fs-lead);
    font-weight: var(--weight-semi);
    color: var(--text-strong);
    line-height: 1.5;
    quotes: none;
    position: relative;
}

/* ---------------------------------------------------------------------
   7. FEATURES GRID
   --------------------------------------------------------------------- */
.section--features {
    background: var(--bg-page);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    /* Primeiro card span 2 colunas pra dar destaque visual */
    .features-grid .feature-card:first-child { grid-column: span 2; }
}

.feature-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, var(--bg-surface) 0%, var(--bg-surface-2) 100%);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-out-expo),
        box-shadow var(--dur-med) var(--ease-out-expo);
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 158, 64, 0.3);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 158, 64, 0.15);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gold-soft);
    color: var(--gold-2);
    flex-shrink: 0;
}

.feature-card__icon svg { width: 26px; height: 26px; }

.feature-card__title {
    font-size: var(--fs-h3);
    font-weight: var(--weight-bold);
    color: var(--text-strong);
    line-height: 1.3;
}

.feature-card__text {
    color: var(--text-muted);
    font-size: var(--fs-body);
    line-height: 1.6;
}

/* ---------------------------------------------------------------------
   8. ECOSSISTEMA GRID
   --------------------------------------------------------------------- */
.section--eco {
    background: linear-gradient(180deg, #0a1020 0%, #0f172a 50%, #0a1020 100%);
}

.eco-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }

.eco-card {
    position: relative;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-out-expo),
        box-shadow var(--dur-med) var(--ease-out-expo);
    will-change: transform;
    overflow: hidden;
}

.eco-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 158, 64, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--dur-med) var(--ease-out-expo);
    pointer-events: none;
}

.eco-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 158, 64, 0.35);
    box-shadow: var(--shadow-card);
}

.eco-card:hover::before { opacity: 1; }

.eco-card--featured {
    border-color: rgba(255, 158, 64, 0.25);
    background: linear-gradient(165deg, var(--bg-surface) 0%, rgba(255, 107, 0, 0.04) 100%);
}

.eco-card__badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: var(--fs-micro);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gold-soft);
    color: var(--gold-3);
    border: 1px solid rgba(255, 158, 64, 0.2);
}

.eco-card__title {
    font-size: var(--fs-h3);
    font-weight: var(--weight-bold);
    color: var(--text-strong);
}

.eco-card__lead {
    color: var(--gold-3);
    font-weight: var(--weight-semi);
    font-size: 1.0625rem;
}

.eco-card__text {
    color: var(--text-muted);
    font-size: var(--fs-body);
    line-height: 1.6;
}

.eco__closer {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    font-size: var(--fs-lead);
    color: var(--text-base);
    line-height: 1.6;
    padding: 1.5rem;
    font-weight: var(--weight-medium);
}

/* ---------------------------------------------------------------------
   9. PROVA SOCIAL (stats + depoimentos)
   --------------------------------------------------------------------- */
.section--proof {
    background: var(--bg-page);
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-block: 3rem;
    text-align: center;
}

@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.stat { display: flex; flex-direction: column; gap: 8px; align-items: center; }

.stat__value {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--weight-black);
    color: var(--text-strong);
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat__value--small { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }

.stat__value strong { font-weight: inherit; }

.stat__label {
    color: var(--text-muted);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-medium);
}

.counter { font-variant-numeric: tabular-nums; }

/* Depoimentos — ocultos por padrão até [data-state] ser removido */
.testimonials { padding-block: 2rem; }
.testimonials[data-state="hidden"] { display: none; }

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
    margin: 0;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold-2);
    opacity: 0.4;
    font-family: Georgia, serif;
}

.testimonial__quote {
    color: var(--text-base);
    font-size: 1.0625rem;
    line-height: 1.6;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial__author {
    border-top: 1px solid var(--border-soft);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.testimonial__author strong { color: var(--text-strong); font-weight: var(--weight-bold); }
.testimonial__author span { color: var(--text-muted); font-size: var(--fs-small); }

.proof__credit {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-top: 2rem;
}

/* ---------------------------------------------------------------------
   10. CTA FINAL
   --------------------------------------------------------------------- */
.section--cta {
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 107, 0, 0.16) 0%, transparent 60%),
        linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
}

.cta {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: var(--weight-black);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.cta__lead {
    color: var(--text-muted);
    font-size: var(--fs-lead);
    max-width: 620px;
    line-height: 1.6;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0.5rem;
    align-items: center;
    justify-content: center;
}

.objections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 720px;
}

@media (min-width: 768px) { .objections { grid-template-columns: repeat(3, 1fr); } }

.objection {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: 1.5;
}

.objection strong {
    display: block;
    color: var(--text-strong);
    font-weight: var(--weight-bold);
    margin-bottom: 2px;
}

.objection__check {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    flex-shrink: 0;
    margin-top: -2px;
}

/* ---------------------------------------------------------------------
   11. FOOTER
   --------------------------------------------------------------------- */
.footer {
    background: #060a14;
    border-top: 1px solid var(--border-soft);
    padding-block: clamp(3rem, 6vw, 5rem) 2rem;
    color: var(--text-muted);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand { display: flex; flex-direction: column; gap: 1rem; max-width: 320px; }

.footer__logo { width: 160px; height: auto; }

.footer__brand p { color: var(--text-muted); font-size: var(--fs-small); line-height: 1.6; }

.footer__col h4 {
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-base);
    font-weight: var(--weight-bold);
    margin-bottom: 1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__col a {
    color: var(--text-muted);
    font-size: var(--fs-small);
    position: relative;
    transition: color var(--dur-fast) var(--ease-out-expo);
    display: inline-block;
}

.footer__col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold-grad);
    transition: width var(--dur-med) var(--ease-out-expo);
}

.footer__col a:hover { color: var(--text-strong); }
.footer__col a:hover::after { width: 100%; }

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
    text-align: center;
}

.footer__bottom small { color: var(--text-dim); font-size: var(--fs-micro); }

/* ---------------------------------------------------------------------
   12. SCROLL PROGRESS BAR (dourada, fina, no topo)
   --------------------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--gold-grad);
    z-index: 999;
    pointer-events: none;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255, 158, 64, 0.6);
}

/* ---------------------------------------------------------------------
   13. ANIMAÇÕES DE REVEAL (entrada via JS)
   --------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms var(--ease-out-expo),
        transform 700ms var(--ease-out-expo);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Elemento "prosperar" — destaque dourado acende 200ms depois */
[data-reveal-glow] {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-2);
    filter: drop-shadow(0 0 0 rgba(255, 158, 64, 0));
    transition: filter 600ms var(--ease-out-expo);
}

[data-reveal-glow].is-glowing {
    filter: drop-shadow(0 0 24px rgba(255, 158, 64, 0.5));
}

/* Helper: elementos auto-ocultos por placeholder */
.is-hidden-by-placeholder { display: none !important; }

/* ---------------------------------------------------------------------
   14. REDUCED MOTION (a11y)
   Usuário com prefers-reduced-motion ativo vê tudo estático.
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
    [data-reveal-glow] {
        filter: drop-shadow(0 0 16px rgba(255, 158, 64, 0.4));
    }
    .scroll-progress { display: none; }
    .phone-frame, .floating-icon, .hero__bg, .bar::after {
        animation: none !important;
    }
    .hero .btn--primary { animation: none !important; }
}

/* ---------------------------------------------------------------------
   15. RESPONSIVO — ajustes finos pra mobile pequeno
   --------------------------------------------------------------------- */
@media (max-width: 480px) {
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .badge-soon { justify-content: center; }
    .cta__buttons { flex-direction: column; align-items: stretch; width: 100%; }
    .cta__buttons .btn { width: 100%; justify-content: center; }
    .phone-frame { width: 230px; height: 460px; }
    .floating-icon { width: 48px; height: 48px; }
}
