/* =============================================
   HUBGLASS LANDING PAGE — LIGHT EDITORIAL
   Design: Clean white + bold orange, editorial layout
   Fonts: DM Serif Display (tall serif) + Plus Jakarta Sans
   ============================================= */

/* --- CSS Variables --- */
:root {
    --orange: #FF6600;
    --orange-light: #FF8533;
    --orange-dark: #E55A00;
    --orange-bg: #FFF4EC;
    --orange-bg-deep: #FFE8D6;
    --charcoal: #2B2B2B;
    --charcoal-light: #444444;
    --gray-600: #555555;
    --gray-400: #888888;
    --gray-300: #AAAAAA;
    --gray-200: #D4D4D4;
    --gray-100: #ECECEC;
    --gray-50: #F7F7F7;
    --white: #FFFFFF;
    --cream: #FDFBF8;

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Shared Elements --- */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-title em {
    color: var(--orange);
    font-style: italic;
}

.label-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    border-radius: 60px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
    white-space: nowrap;
}

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

.btn--primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,102,0,0.3);
}

.btn--primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,102,0,0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--gray-200);
}

.btn--ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn--outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn--outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn--pulse {
    animation: pulse-glow 2.8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255,102,0,0.3); }
    50% { box-shadow: 0 4px 40px rgba(255,102,0,0.5); }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-out-expo);
    animation: wpp-bounce 3s ease-in-out infinite;
}

.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@keyframes wpp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* =============================================
   TICKER MARQUEE
   ============================================= */
.ticker {
    background: var(--orange);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker__track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
    width: max-content;
}

.ticker__item {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ticker__sep {
    font-size: 0.6rem;
    opacity: 0.6;
    display: flex;
    align-items: center;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: 6rem 0 5rem;
    background:
        linear-gradient(rgba(253,251,248,0.78), rgba(253,251,248,0.82)),
        url('assets/images/tecnico-hubglass-background.jpg') center right / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
    width: 100%;
}

.hero__logo {
    margin-bottom: 2rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero__title-top {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
}

.hero__title-accent {
    display: block;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: var(--orange);
    font-style: normal;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.hero__tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--charcoal-light);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.hero__tagline em {
    color: var(--orange);
}

.hero__desc {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hero__car-wrapper {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.hero__car {
    width: 100%;
    position: relative;
    z-index: 2;
    animation: car-drive-in 1.4s var(--ease-out-expo) 0.3s both;
    transition: transform 0.5s var(--ease-out-expo);
}

.hero__car:hover {
    transform: scale(1.03) translateY(-4px);
}

/* Car drives in from left, settles with a bounce */
@keyframes car-drive-in {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateX(8px) scale(1.01);
    }
    80% {
        transform: translateX(-3px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Ground shadow directly under the car */
.hero__car-shadow {
    position: absolute;
    bottom: 2px;
    left: 20%;
    right: 20%;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.13), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: shadow-in 1.4s var(--ease-out-expo) 0.3s both;
}

@keyframes shadow-in {
    0% {
        opacity: 0;
        transform: translateX(-120px) scaleX(0.4);
    }
    60% {
        opacity: 1;
        transform: translateX(8px) scaleX(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
}

/* Glass shine sweep that plays after car arrives */
.hero__car-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.25) 45%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.25) 55%,
        transparent 70%
    );
    z-index: 3;
    pointer-events: none;
    animation: shine-sweep 1s ease-in-out 1.8s both;
}

@keyframes shine-sweep {
    0% {
        left: -60%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        left: 140%;
        opacity: 0;
    }
}

.hero__card-12x {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255,102,0,0.35);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.hero__card-12x-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.hero__card-12x-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 400;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =============================================
   BENTO GRID
   ============================================= */
.bento {
    padding: 5rem 0;
    background: var(--white);
}

.bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1rem;
}

/* Large alert card spans 2 columns */
.bento__card--alert {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

/* Urgency card */
.bento__card--urgency {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: var(--charcoal);
    color: var(--white);
}

.bento__card--urgency p {
    color: rgba(255, 255, 255, 0.85);
}

/* Feature cards */
.bento__card--feature {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

/* Solution card spans 3 columns */
.bento__card--solution {
    grid-column: 1 / -1;
    background: var(--orange-bg);
    border: 1px solid var(--orange-bg-deep);
}

.bento__card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.5s var(--ease-out-expo);
}

.bento__card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* --- Alert card: slides in from left with border-left accent animation --- */
.bento__card--alert {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), box-shadow 0.5s ease;
}

.bento__card--alert::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    border-radius: 0 4px 4px 0;
    transition: height 0.8s var(--ease-out-expo) 0.4s;
}

.bento__card--alert.visible {
    opacity: 1;
    transform: translateX(0);
}

.bento__card--alert.visible::after {
    height: 100%;
}

.bento__card--alert:hover {
    transform: translateX(4px);
}

/* --- Urgency card: pops in with scale + internal text stagger --- */
.bento__card--urgency {
    opacity: 0;
    transform: scale(0.8) rotate(-2deg);
    transition: opacity 0.7s var(--ease-out-expo) 0.15s, transform 0.7s var(--ease-out-expo) 0.15s, box-shadow 0.5s ease;
}

.bento__card--urgency.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.bento__card--urgency .bento__big-text {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.bento__card--urgency .bento__big-text:nth-of-type(1) { transition-delay: 0.5s; }
.bento__card--urgency .bento__big-text:nth-of-type(2) { transition-delay: 0.9s; }

.bento__card--urgency.visible .bento__big-text {
    opacity: 1;
    transform: translateY(0);
}

.bento__card--urgency:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* --- Feature cards: staggered slide-up with icon bounce --- */
.bento__card--feature {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), box-shadow 0.5s ease;
    transition-delay: calc(var(--stagger, 0) * 120ms);
}

.bento__card--feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento__card--feature .bento__icon {
    transition: transform 0.5s var(--ease-out-expo);
    transition-delay: calc(var(--stagger, 0) * 120ms + 0.3s);
    transform: scale(0) rotate(-30deg);
}

.bento__card--feature.visible .bento__icon {
    transform: scale(1) rotate(0deg);
}

.bento__card--feature:hover {
    transform: translateY(-6px);
    border-color: var(--orange-bg-deep);
}

.bento__card--feature:hover .bento__icon {
    transform: scale(1.15) rotate(5deg);
}

/* --- Solution card: slides up with expanding background glow --- */
.bento__card--solution {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo) 0.2s, transform 0.8s var(--ease-out-expo) 0.2s, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.bento__card--solution::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,102,0,0.08), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 1s var(--ease-out-expo) 0.5s, height 1s var(--ease-out-expo) 0.5s;
    pointer-events: none;
}

.bento__card--solution.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento__card--solution.visible::before {
    width: 600px;
    height: 600px;
}

.bento__card--solution:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255,102,0,0.1);
}

.bento__card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
}

.bento__card-tag--orange {
    color: var(--orange-dark);
    background: rgba(255,102,0,0.12);
}

.bento__card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.bento__card--urgency .bento__card-title {
    color: var(--white);
}

.bento__card-title em {
    color: var(--orange);
    font-style: italic;
}

.bento__card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.bento__card.bento__card--urgency p {
    color: rgba(255, 255, 255, 0.85);
}

.bento__card p strong {
    color: var(--orange);
    font-weight: 700;
}

.bento__big-text {
    display: block;
    font-family: var(--font-sans);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.bento__big-text--accent {
    color: var(--orange);
    margin-top: 1rem;
}

.bento__icon {
    width: 36px;
    height: 36px;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.bento__card--feature h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
}

.bento__card--feature p {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.bento__card--solution .btn {
    margin-top: 1.25rem;
}

.bento__payment-note {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0.55rem 1rem;
    background: var(--orange-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--orange);
    text-align: left;
}

.bento__payment-note strong {
    color: var(--orange);
    font-weight: 700;
}

/* =============================================
   COMO FUNCIONA — Timeline
   ============================================= */
.how {
    padding: 5.5rem 0;
    background: var(--gray-50);
}

.how__header {
    margin-bottom: 3rem;
}

.how__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.how__step {
    position: relative;
    padding: 2rem 2rem 2rem 0;
    text-align: left;
}

.how__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(255,102,0,0.25);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--step-index, 0) * 0.3s);
}

.how__timeline.active .how__step-number {
    opacity: 1;
    transform: scale(1);
}

.how__step-line {
    position: absolute;
    top: calc(2rem + 26px);
    left: calc(52px + 2rem);
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gray-200));
    opacity: 0.4;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.8s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo);
    transition-delay: calc(var(--step-index, 0) * 0.3s + 0.25s);
}

.how__timeline.active .how__step-line {
    transform: scaleX(1);
}

.how__step:last-child .how__step-line {
    display: none;
}

/* Text: fade up */
.how__step h3,
.how__step p {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.how__step h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    transition-delay: calc(var(--step-index, 0) * 0.3s + 0.35s);
}

.how__step p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 280px;
    transition-delay: calc(var(--step-index, 0) * 0.3s + 0.45s);
}

.how__timeline.active .how__step h3,
.how__timeline.active .how__step p {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   DIFERENCIAIS — Editorial list
   ============================================= */
.diff {
    padding: 5.5rem 0;
    background: var(--white);
}

.diff__header {
    margin-bottom: 3rem;
    text-align: center;
}

.diff__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.diff__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    transition: padding 0.3s ease;
}

.diff__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-100);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s var(--ease-out-expo);
    transition-delay: calc(var(--diff-i, 0) * 0.12s + 0.15s);
}

.diff__item:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-100);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s var(--ease-out-expo);
    transition-delay: 0s;
}

.diff__list.active .diff__item::after,
.diff__list.active .diff__item:first-child::before {
    transform: scaleX(1);
}

.diff__item:hover {
    padding-left: 0.5rem;
}

.diff__item-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--orange);
    line-height: 1;
    min-width: 48px;
    padding-top: 0.15rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
    transition-delay: calc(var(--diff-i, 0) * 0.12s);
}

.diff__list.active .diff__item-num {
    opacity: 0.35;
    transform: translateX(0);
}

.diff__item:hover .diff__item-num {
    opacity: 0.7;
}

.diff__item-content {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    transition-delay: calc(var(--diff-i, 0) * 0.12s + 0.1s);
}

.diff__list.active .diff__item-content {
    opacity: 1;
    transform: translateY(0);
}

.diff__item-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.diff__item-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* =============================================
   PROVA SOCIAL
   ============================================= */
.proof {
    padding: 5.5rem 0;
    background: var(--cream);
}

.proof__numbers {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
}

/* Animated bottom border */
.proof__numbers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s var(--ease-out-expo) 0.6s;
}

.proof__numbers.active::after {
    transform: scaleX(1);
}

/* Number items: scale + fade in staggered */
.proof__number-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--proof-i, 0) * 0.2s);
}

.proof__numbers.active .proof__number-item {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.proof__number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--orange);
    line-height: 1;
}

.proof__suffix {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--orange);
}

.proof__label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.4rem;
    font-weight: 500;
}

.proof__reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Review cards: slide up + fade staggered */
.proof__review {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
    transition-delay: calc(var(--review-i, 0) * 0.15s);
}

.proof__reviews.active .proof__review {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.proof__review:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
    border-color: var(--orange-bg-deep);
}

/* Stars: reveal one by one */
.proof__stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s var(--ease-out-expo);
    transition-delay: calc(var(--review-i, 0) * 0.15s + 0.4s);
}

.proof__reviews.active .proof__stars {
    clip-path: inset(0 0 0 0);
}

.proof__review blockquote {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.proof__review cite {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 600;
    font-style: normal;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 5.5rem 0;
    background: var(--white);
}

.faq__header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq__list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* FAQ items: stagger slide-in from right */
.faq__item {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    transition-delay: calc(var(--faq-i, 0) * 0.1s);
}

.faq__list.active .faq__item {
    opacity: 1;
    transform: translateX(0);
}

/* Animated borders */
.faq__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-100);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.7s var(--ease-out-expo);
    transition-delay: calc(var(--faq-i, 0) * 0.1s + 0.2s);
}

.faq__list.active .faq__item::after {
    transform: scaleX(1);
}

.faq__item:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-100);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.7s var(--ease-out-expo);
    transition-delay: 0s;
}

.faq__list.active .faq__item:first-child::before {
    transform: scaleX(1);
}

/* Chevron entrance bounce */
.faq__item .faq__chevron {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    transition-delay: calc(var(--faq-i, 0) * 0.1s + 0.35s);
}

.faq__list.active .faq__item .faq__chevron {
    opacity: 1;
    transform: scale(1);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    color: var(--charcoal);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--orange);
}

.faq__item.active .faq__question {
    color: var(--orange);
}

.faq__chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--gray-300);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg) !important;
    color: var(--orange);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
    padding: 5.5rem 0;
    background: var(--orange-bg);
    position: relative;
}

.cta-final__content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

/* Label: fade down */
.cta-final__content .label-tag {
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.cta-final__content.active .label-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitle: fade up */
.cta-final__subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    transition-delay: 0.3s;
}

.cta-final__content.active .cta-final__subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons: scale bounce staggered */
.cta-final__actions .btn {
    opacity: 0;
    transform: scale(0.7) translateY(15px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    transition-delay: calc(var(--cta-btn, 0) * 0.12s + 0.5s);
}

.cta-final__content.active .cta-final__actions .btn {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Trust badges: slide up staggered */
.cta-final__trust span {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
    transition-delay: calc(var(--trust-i, 0) * 0.1s + 0.7s);
}

.cta-final__content.active .cta-final__trust span {
    opacity: 1;
    transform: translateY(0);
}

.cta-final__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.cta-final__subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-final__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-final__trust span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    padding-left: 1rem;
}

.cta-final__trust span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 3.5rem 0 1.5rem;
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
}

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

.footer__logo {
    margin-bottom: 1rem;
    opacity: 0.85;
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.6;
}

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

.footer__links h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.footer__links a,
.footer__links span {
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    pointer-events: none;
}

/* CSS scroll-driven progress bar (modern browsers) */
@supports (animation-timeline: scroll()) {
    .progress-bar {
        animation: progress-grow linear both;
        animation-timeline: scroll(root block);
    }
    @keyframes progress-grow {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }
}

/* =============================================
   HERO PARALLAX SHAPES
   ============================================= */
.hero__shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero__shape--circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-bg-deep) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    opacity: 0.6;
}

.hero__shape--dots {
    width: 200px;
    height: 200px;
    bottom: 40px;
    left: 5%;
    opacity: 0.25;
    background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
}

/* =============================================
   CTA FINAL PARALLAX SHAPES
   ============================================= */
.cta-final {
    overflow: hidden;
}

.cta-final__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.cta-final__shape--1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,102,0,0.1), transparent 70%);
    top: -100px;
    left: -80px;
}

.cta-final__shape--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,102,0,0.08), transparent 70%);
    bottom: -80px;
    right: -60px;
}

/* =============================================
   REVEAL ANIMATIONS — Enhanced with multiple types
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: calc(var(--stagger, 0) * 100ms);
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* Slide from right */
.reveal--slide-right {
    transform: translateX(-40px);
}

/* Slide from left */
.reveal--slide-left {
    transform: translateX(40px);
}

/* Slide up */
.reveal--slide-up {
    transform: translateY(50px);
}

/* Scale in */
.reveal--scale {
    transform: scale(0.88);
}

/* All visible states */
.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Word-by-word reveal */
.word-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
    transition-delay: calc(var(--i) * 80ms);
}

.word-reveal.words-visible .word {
    opacity: 1;
    transform: translateY(0);
}

/* Tilt 3D effect on hover for bento cards */
.bento__card {
    transform-style: preserve-3d;
}

/* =============================================
   CSS SCROLL-DRIVEN ANIMATIONS (Progressive Enhancement)
   ============================================= */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        /* Steps timeline slide in */
        .how__step {
            animation: step-slide linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 60%;
        }
        @keyframes step-slide {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Diff items — handled by JS IntersectionObserver now */

        /* Proof numbers scale */
        /* Proof section — handled by JS IntersectionObserver now */

        /* FAQ items slide from right */
        /* FAQ section — handled by JS IntersectionObserver now */

        /* CTA final scale up */
        /* CTA final — handled by JS IntersectionObserver now */
    }
}

/* Respect reduced motion */
/* =============================================
   DRIVING PARALLAX — Viatura em movimento
   ============================================= */
.driving {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    /* Match the top color of camada-01 content */
    background: #ffcba1;
}

/* --- Parallax layers --- */
.driving__layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/*
 * Each layer uses background-image + repeat-x.
 * Images were cropped to content-only:
 *   camada-01: 1536×456 (sky + skyline)
 *   camada-02: 1536×334 (city street)
 *   camada-03: 1536×289 (road)
 *
 * background-size height = layer height (stretch to fill vertically)
 * background-size width  = auto (maintain aspect ratio per tile)
 * repeat-x tiles seamlessly on any screen width.
 * Animate background-position-x by one tile width for seamless loop.
 */

.driving__layer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat-x;
    background-position: left bottom;
}

/* Sky + skyline: fills entire section */
.driving__layer--sky {
    top: 0;
    z-index: 1;
    background-image: url('assets/images/camada-01.png');
    background-size: auto 100%;
    animation: bg-scroll-slow 50s linear infinite;
}

/* City mid-ground: sits above road */
.driving__layer--city {
    height: 250px;
    bottom: 90px;
    z-index: 2;
    background-image: url('assets/images/camada-02.png');
    background-size: auto 100%;
    animation: bg-scroll-mid 25s linear infinite;
}

/* Road: bottom strip */
.driving__layer--road {
    height: 90px;
    z-index: 3;
    background-image: url('assets/images/camada-03.png');
    background-size: auto 100%;
    animation: bg-scroll-fast 8s linear infinite;
}

/*
 * Direction: positive = background moves right = scenery goes right = car appears to go left (forward)
 * Tile width when stretched to layer height:
 *   Sky:  height=500px, original=1536x456, tile_width = 500*(1536/456) = 1684px
 *   City: height=250px, original=1536x334, tile_width = 250*(1536/334) = 1150px
 *   Road: height=90px,  original=1536x289, tile_width = 90*(1536/289)  = 478px
 * We animate by one tile width for a seamless loop.
 */
@keyframes bg-scroll-slow {
    from { background-position-x: 0; }
    to   { background-position-x: 1684px; }
}

@keyframes bg-scroll-mid {
    from { background-position-x: 0; }
    to   { background-position-x: 1150px; }
}

@keyframes bg-scroll-fast {
    from { background-position-x: 0; }
    to   { background-position-x: 478px; }
}

/* --- Car wrapper --- */
.driving__car-wrapper {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.driving__car {
    position: relative;
    transform: translateX(120vw);
    transition: none;
}

/* Car enters from right, stops at center */
.driving__car.driving--enter {
    transform: translateX(0);
    transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Car leaves to left when scrolling away */
.driving__car.driving--leave {
    transform: translateX(-120vw);
    transition: transform 2s cubic-bezier(0.55, 0, 1, 0.45);
}

.driving__car-img {
    display: block;
    height: 130px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

/* --- Shadow under car --- */
.driving__shadow {
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 50%, transparent 80%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(4px);
    animation: shadow-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes shadow-pulse {
    0% { opacity: 0.7; transform: scaleX(0.95); }
    100% { opacity: 1; transform: scaleX(1.05); }
}

/* --- Exhaust smoke --- */
.driving__exhaust {
    position: absolute;
    right: -10px;
    bottom: 15px;
    z-index: 1;
}

.driving__smoke {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(180,180,180,0.5) 0%, rgba(200,200,200,0.15) 60%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
}

/* Only animate smoke when car is visible & entered */
.driving__car.driving--enter .driving__smoke {
    animation: smoke-puff 1.8s ease-out infinite;
}

.driving__smoke--1 { animation-delay: 0s !important; }
.driving__smoke--2 { animation-delay: 0.35s !important; }
.driving__smoke--3 { animation-delay: 0.7s !important; }
.driving__smoke--4 { animation-delay: 1.05s !important; }
.driving__smoke--5 { animation-delay: 1.4s !important; }

@keyframes smoke-puff {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(0.4);
    }
    30% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate(50px, -30px) scale(2.5);
    }
}

/* --- Layers pause when car is leaving --- */
.driving.driving--paused .driving__layer {
    animation-play-state: paused;
}

/* --- Subtle car bounce (idle at center) --- */
.driving__car.driving--enter .driving__car-img {
    animation: car-idle-bounce 1.2s ease-in-out infinite alternate;
}

@keyframes car-idle-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .word-reveal .word { opacity: 1; transform: none; }
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.location {
    padding: 5rem 0;
    background: var(--gray-50);
}

.location__header {
    text-align: center;
    margin-bottom: 3rem;
}

.location__header .label-tag {
    display: block;
    margin-bottom: 0.75rem;
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}

.location__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.location__icon {
    width: 64px;
    height: 64px;
    background: var(--orange-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.location__icon svg {
    width: 28px;
    height: 28px;
}

.location__item h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--charcoal);
    margin: 0;
}

.location__item p,
.location__item address {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
    font-style: normal;
}

.location__item p {
    max-width: 280px;
}

.location__map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.location__map-link:hover {
    border-bottom-color: var(--orange);
}

.location__divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.location__divider::before,
.location__divider::after {
    content: '';
    width: 1px;
    height: 50px;
    background: var(--gray-200);
    display: block;
}

.location__divider span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* =============================================
   FOOTER ADDRESS
   ============================================= */
.footer__address {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-top: 0.75rem;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .location__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .location__divider {
        flex-direction: row;
        padding: 0;
    }

    .location__divider::before,
    .location__divider::after {
        width: 60px;
        height: 1px;
    }

    .bento__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento__card--alert {
        grid-column: 1 / -1;
    }

    .bento__card--urgency {
        grid-column: auto;
    }

    .bento__card--solution {
        grid-column: 1 / -1;
    }

    .how__timeline {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .how__step-line {
        display: none;
    }

    .how__step {
        padding: 1.5rem 0;
    }

    .how__step p {
        max-width: 100%;
    }

    .proof__reviews {
        grid-template-columns: 1fr;
    }

    .proof__numbers {
        gap: 2.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__logo {
        margin: 0 auto 1rem;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    /* --- GLOBAL MOBILE --- */
    .btn {
        white-space: normal;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn--large {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    /* --- HERO --- */
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero__logo {
        width: 160px;
    }

    .hero__title-accent {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    /* --- BENTO GRID --- */
    .bento__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .bento__card--alert {
        grid-column: auto;
    }

    .bento__card--urgency {
        grid-column: auto;
    }

    .bento__card--solution {
        grid-column: auto;
    }

    .bento__big-text {
        font-size: 2.2rem;
    }

    .bento__card-title {
        font-size: 1.3rem;
    }

    .bento__card--solution .btn {
        width: 100%;
    }

    /* --- COMO FUNCIONA --- */
    .how__header {
        text-align: center;
    }

    /* --- DIFERENCIAIS --- */
    .diff__item {
        gap: 1rem;
    }

    .diff__item-num {
        font-size: 1.8rem;
        min-width: 40px;
    }

    .diff__item-content h3 {
        font-size: 1.05rem;
    }

    .diff__item-content p {
        font-size: 0.88rem;
    }

    /* --- PROVA SOCIAL --- */
    .proof__numbers {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .proof__review {
        padding: 1.5rem;
    }

    .proof__review blockquote {
        font-size: 0.88rem;
    }

    /* --- FAQ --- */
    .faq__question {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .faq__question span {
        flex: 1;
    }

    .faq__answer p {
        font-size: 0.9rem;
    }

    /* --- CTA FINAL --- */
    .cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-final__trust {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .cta-final__subtitle {
        font-size: 0.95rem;
    }

    /* --- WHATSAPP FLOAT --- */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg { width: 26px; height: 26px; }

    /* --- FOOTER --- */
    .footer__logo {
        width: 120px;
    }

    .footer__links h4 {
        font-size: 0.95rem;
    }

    .footer__brand p,
    .footer__links a,
    .footer__links span {
        font-size: 0.82rem;
    }

    /* --- SECTIONS PADDING --- */
    .bento, .how, .diff, .proof, .location, .faq, .cta-final {
        padding: 3.5rem 0;
    }

    /* --- DRIVING SECTION --- */
    .driving { height: 280px; }
    .driving__car-img { height: 90px; }
    .driving__layer--city { height: 170px; bottom: 60px; }
    .driving__layer--road { height: 60px; }
    .driving__car-wrapper { bottom: 30px; }
    .driving__shadow { height: 12px; bottom: -7px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__container {
        padding: 0 16px;
    }

    .bento__card {
        padding: 1.5rem;
    }

    .bento__card-title {
        font-size: 1.2rem;
    }

    .bento__card--feature h3 {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .diff__item-num {
        font-size: 1.5rem;
        min-width: 32px;
    }

    .proof__number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .ticker__item {
        font-size: 0.75rem;
    }

    .ticker__track {
        gap: 1.5rem;
    }
}
