/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --bg-dark: #030A1A;
    --bg-darker: #01050F;
    --neon-green: #FF4500; /* Laranja energético */
    --electric-blue: #1E3A8A; /* Azul marinho / profundo */
    --text-white: #FFF3E0; /* Branco alaranjado para contraste */
    --text-gray: #FFB380; /* Laranja suave para texto secundário */
    --warning: #FFA500; /* Laranja normal */
    
    /* Logo Colors */
    --vool-blue: #3b82f6; /* Azul claro mas não tão claro */
    --car-orange: #ff7f00; /* Laranja */
    
    /* Glassmorphism */
    --glass-bg: rgba(30, 58, 138, 0.05);
    --glass-border: rgba(255, 69, 0, 0.15);
    --glass-hover: rgba(30, 58, 138, 0.15);
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
    --secondary-gradient: linear-gradient(135deg, var(--neon-green), var(--warning));
    
    /* Fonts */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom Cursor */
}

html {
    scroll-behavior: initial; /* Lenis handles this */
    overflow-x: hidden;
}

body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Garantindo que textos longos não quebrem o layout (Zero Cortes) */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Garantia global de zero overflow em mídias */
img, video, iframe, canvas, picture, svg {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word; /* Evita quebra de layout */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Global Utilities & Glassmorphism
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-neon { color: var(--neon-green); }
.text-warning { color: var(--warning); }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.vool-text {
    color: var(--vool-blue);
}

.car-text {
    color: var(--car-orange);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-panel.large {
    padding: 4rem;
}

.hover-lift {
    transition: var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-10px);
    background: var(--glass-hover);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.05);
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh; /* 100% ao invés de 100vw para evitar barra de rolagem horizontal */
    background: 
        /* Sombreamento escuro nas bordas */
        radial-gradient(circle at 50% 50%, transparent 20%, #01050F 100%),
        /* Laranja energético (neon-green) */
        radial-gradient(circle at 85% 20%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        /* Laranja normal (warning) */
        radial-gradient(circle at 15% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
        /* Gradiente base Azul profundo para Azul marinho */
        linear-gradient(135deg, #0A1A3A 0%, #01050F 100%);
    z-index: -2;
    pointer-events: none;
}

.highlight-bg {
    position: relative;
}

.highlight-bg::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 69, 0, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    transition: 0.1s ease-out;
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem); /* Fonte fluida */
    transition: var(--transition-fast);
    border: none;
    outline: none;
    min-height: 48px; /* Touch target adequado para mobile */
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
}

.glow-btn:hover {
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
    transform: translateY(-2px);
}

.glass-btn {
    background: var(--glass-bg);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.glass-btn:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.mobile-only-btn { display: none; }

.navbar {
    position: fixed;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 95%; max-width: 1200px;
    padding: 1rem 2rem;
    z-index: 1000;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 1.5s infinite;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--neon-green);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem); /* Fonte fluida e responsiva */
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem); /* Fonte fluida e responsiva */
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-users {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatars {
    display: flex;
}

.user-avatars img {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -15px;
}
.user-avatars img:first-child { margin-left: 0; }

.hero-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    margin: 0 auto;
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.phone-frame {
    width: 100%; height: 100%;
    background: #051024;
    border-radius: 40px;
    border: 8px solid #0A1A3A;
    box-shadow: inset 0 0 0 2px #1A3A7A, 20px 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 25px;
    background: #0A1A3A;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%; height: 100%;
    background: #01050F;
    position: relative;
}

/* --------------------------------------------------------------------------
   Hero Phone — Interface do app (somente o mockup do Hero)
   -------------------------------------------------------------------------- */
.hero-mockup .phone-frame {
    background: #05080f;
    border: 8px solid #0d1424;
    box-shadow:
        inset 0 0 0 2px #223354,
        0 0 0 1px rgba(255, 255, 255, 0.04),
        25px 30px 60px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(255, 127, 0, 0.12);
}

/* Brilho de vidro sobre a tela */
.hero-mockup .phone-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 28%, transparent 46%);
    pointer-events: none;
    z-index: 20;
}

.hero-mockup .phone-notch {
    width: 104px;
    height: 24px;
    background: #05080f;
    border-radius: 0 0 16px 16px;
}

.hero-mockup .phone-screen {
    background: #0b111d;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vc-app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    color: #F2F5FA;
    line-height: 1.35;
    letter-spacing: 0.1px;
}

/* Status bar */
.vc-status {
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 600;
    color: #E8EDF6;
}
.vc-time { letter-spacing: 0.3px; }
.vc-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    opacity: 0.85;
}

/* Mapa */
.vc-map {
    position: relative;
    height: 348px;
    flex: 0 0 348px;
    overflow: hidden;
    background: #101827;
}

.vc-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.vc-map-labels text {
    font-family: var(--font-body);
    font-size: 6px;
    font-weight: 600;
    letter-spacing: 0.6px;
    fill: #48596f;
}
.vc-map-labels .vc-label-park { fill: #2f6b4f; }

.vc-route-casing {
    fill: none;
    stroke: rgba(255, 255, 255, 0.10);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.vc-route {
    fill: none;
    stroke: url(#vcRouteGrad);
    stroke-width: 5.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    animation: vcDraw 2.2s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}
.vc-route-flow {
    fill: none;
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 18;
    animation: vcFlow 1.6s linear infinite;
}

@keyframes vcDraw { to { stroke-dashoffset: 0; } }
@keyframes vcFlow { to { stroke-dashoffset: -26; } }

.vc-map-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background:
        linear-gradient(180deg, rgba(11, 17, 29, 0.85) 0%, transparent 22%),
        radial-gradient(120% 80% at 50% 45%, transparent 45%, rgba(5, 8, 15, 0.65) 100%);
}

/* Ponto de origem */
.vc-origin {
    position: absolute;
    top: 306px; left: 202px;
    width: 14px; height: 14px;
    transform: translate(-50%, -50%);
    z-index: 4;
}
.vc-origin::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.35);
    animation: vcPulse 2.4s ease-out infinite;
}
.vc-origin-dot {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid #E8EDF6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@keyframes vcPulse {
    0%   { transform: scale(0.5); opacity: 0.9; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Destino */
.vc-dest {
    position: absolute;
    top: 112px; left: 172px;
    transform: translate(-50%, -100%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vc-dest-label {
    order: -1;
    margin-bottom: 5px;
    padding: 4px 9px;
    border-radius: 8px;
    background: rgba(9, 14, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    font-size: 8.5px;
    font-weight: 600;
    white-space: nowrap;
    color: #E8EDF6;
}
.vc-dest-pin {
    font-size: 20px;
    color: var(--car-orange);
    filter: drop-shadow(0 4px 8px rgba(255, 69, 0, 0.55));
    animation: vcBob 2.6s ease-in-out infinite;
}

@keyframes vcBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* Carro em movimento */
.vc-car {
    position: absolute;
    top: 0; left: 0;
    width: 30px; height: 18px;
    z-index: 6;
    offset-path: path("M 202 306 L 202 214 Q 202 200 188 200 L 126 200 Q 112 200 112 186 L 112 126 Q 112 112 126 112 L 172 112");
    offset-rotate: auto;
    animation: vcDrive 9s cubic-bezier(0.45, 0.05, 0.35, 1) 0.6s infinite;
}
.vc-car-svg {
    width: 30px; height: 18px;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7));
}
.vc-car-halo {
    position: absolute;
    top: 50%; left: 50%;
    width: 46px; height: 46px;
    margin: -23px 0 0 -23px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.35) 0%, transparent 65%);
    animation: vcHalo 2s ease-out infinite;
}

@keyframes vcHalo {
    0%   { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes vcDrive {
    0%   { offset-distance: 0%;   opacity: 0; }
    5%   { offset-distance: 3%;   opacity: 1; }
    88%  { offset-distance: 100%; opacity: 1; }
    96%  { offset-distance: 100%; opacity: 0; }
    100% { offset-distance: 0%;   opacity: 0; }
}

/* Card superior do mapa */
.vc-trip-top {
    position: absolute;
    top: 10px; left: 12px; right: 12px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 14px;
    background: rgba(13, 19, 32, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}
.vc-trip-icon {
    width: 26px; height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--car-orange), #ff4500);
    color: #fff;
    font-size: 10px;
}
.vc-trip-text { display: flex; flex-direction: column; min-width: 0; }
.vc-trip-text span { font-size: 8px; color: #8A97AC; letter-spacing: 0.4px; text-transform: uppercase; }
.vc-trip-text strong {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vc-trip-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 7px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.14);
    color: #4ade80;
    font-size: 7.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vc-live-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: vcBlink 1.6s ease-in-out infinite;
}

@keyframes vcBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.8); }
}

/* Botões flutuantes do mapa */
.vc-map-fabs {
    position: absolute;
    right: 12px; bottom: 14px;
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vc-fab {
    width: 30px; height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(13, 19, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #C3CCDB;
    font-size: 11px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

/* Painel inferior (bottom sheet) */
.vc-sheet {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    z-index: 8;
    margin-top: -18px;
    padding: 7px 16px 10px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, #111a2b 0%, #0b111d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}
.vc-grabber {
    width: 34px; height: 4px;
    margin: 0 auto 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
}

.vc-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.vc-sheet-head h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    color: #F2F5FA;
}
.vc-eta {
    flex: 0 0 auto;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(255, 127, 0, 0.14);
    border: 1px solid rgba(255, 127, 0, 0.28);
    color: var(--car-orange);
    font-size: 8.5px;
    font-weight: 600;
}
.vc-eta strong { font-size: 11px; font-weight: 800; }

.vc-progress {
    height: 4px;
    margin: 10px 0 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.vc-progress-fill {
    display: block;
    height: 100%;
    width: 64%;
    border-radius: 4px;
    background: linear-gradient(90deg, #3b82f6, var(--car-orange));
    position: relative;
    animation: vcProgress 9s cubic-bezier(0.45, 0.05, 0.35, 1) 0.6s infinite;
}

@keyframes vcProgress {
    0%   { width: 8%; }
    88%  { width: 96%; }
    100% { width: 96%; }
}

/* Motorista */
.vc-driver {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.vc-avatar {
    position: relative;
    width: 40px; height: 40px;
    flex: 0 0 40px;
}
.vc-avatar img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 127, 0, 0.55);
}
.vc-online {
    position: absolute;
    right: -1px; bottom: -1px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #111a2b;
}
.vc-driver-meta { min-width: 0; flex: 1 1 auto; }
.vc-driver-meta h5 {
    margin: 0 0 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    color: #F2F5FA;
}
.vc-rate {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 8.5px;
    font-weight: 600;
    color: var(--warning);
}
.vc-rate i { font-size: 7px; }
.vc-driver-meta p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: #8A97AC;
    white-space: nowrap;
}
.vc-plate {
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #C3CCDB;
}
.vc-act {
    width: 30px; height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #E8EDF6;
    font-size: 11px;
}
.vc-act-call {
    background: linear-gradient(135deg, var(--car-orange), #ff4500);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.35);
}

/* Itinerário */
.vc-stops {
    position: relative;
    padding: 11px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vc-stops::before {
    content: '';
    position: absolute;
    left: 3.5px;
    top: 24px;
    height: 22px;
    width: 1px;
    background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0 3px, transparent 3px 6px);
}
.vc-stop {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vc-stop-dot {
    width: 8px; height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.vc-stop-end {
    border-radius: 2px;
    background: var(--car-orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.18);
}
.vc-stop-txt {
    font-size: 10px;
    font-weight: 600;
    color: #E8EDF6;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vc-stop-txt small {
    display: block;
    font-size: 7.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8A97AC;
}

/* Pagamento e preço */
.vc-fare {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.vc-pay {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 9px;
    font-weight: 500;
    color: #C3CCDB;
    white-space: nowrap;
}
.vc-pay i { font-size: 10px; color: #3b82f6; }
.vc-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}
.vc-price small {
    font-size: 8px;
    color: #8A97AC;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vc-price strong {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #F2F5FA;
}

.vc-homebar {
    width: 96px; height: 4px;
    margin: 8px auto 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.28);
    flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    .vc-car, .vc-route, .vc-route-flow, .vc-origin::before,
    .vc-dest-pin, .vc-car-halo, .vc-live-dot, .vc-progress-fill {
        animation: none;
    }
    .vc-route { stroke-dashoffset: 0; }
    .vc-car { offset-distance: 62%; opacity: 1; }
}


.mockup-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 60%);
    z-index: -1;
    filter: blur(30px);
}

.floating-element { animation: float 6s ease-in-out infinite; }
.floating-element-delay { animation: float 6s ease-in-out infinite 3s; }

@keyframes float {
    0% { transform: translateY(0px) rotateY(-15deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-10deg) rotateX(8deg); }
    100% { transform: translateY(0px) rotateY(-15deg) rotateX(5deg); }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats { margin-top: -50px; position: relative; z-index: 10; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h2 {
    display: inline-block;
    font-size: clamp(2.5rem, 4vw + 1rem, 3rem); /* Fonte fluida */
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-item span {
    font-size: clamp(1.5rem, 3vw, 2rem); /* Fonte fluida */
    color: var(--neon-green);
    font-weight: bold;
}
.stat-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   How it Works
   ========================================================================== */
.section-header { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-title { font-size: clamp(2rem, 4vw + 1rem, 3rem); /* Fonte fluida */ }
.section-desc { color: var(--text-gray); font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem); max-width: 600px; margin: 0 auto; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
}

.step-card:hover::before { transform: scaleX(1); }

.step-icon {
    width: 80px; height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--electric-blue);
    position: relative;
}

.step-number {
    position: absolute;
    top: -5px; right: -5px;
    width: 25px; height: 25px;
    background: var(--neon-green);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.glass-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.glass-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.floating-badge {
    position: absolute;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.floating-badge.top-right {
    top: -20px; right: -20px;
}

/* ==========================================================================
   Drivers
   ========================================================================== */
.drivers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.driver-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--neon-green);
    background: rgba(255, 69, 0, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.rounded-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Promo Banners
   ========================================================================== */
.promo-banner {
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

.banner-wrapper {
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
    position: relative;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.banner-wrapper img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.banner-wrapper:hover img {
    transform: scale(1.02);
}

/* ==========================================================================
   Banner CTA Card
   ========================================================================== */
.banner-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 0 !important;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2);
    border: 1px solid var(--glass-border);
    max-width: 950px;
    margin: 0 auto;
}

.banner-img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-store-buttons {
    position: absolute;
    bottom: 8%; /* Ajustado para subir um pouco os botões dentro do banner */
    left: 4%;
    z-index: 10;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.overlay-store-buttons .btn {
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    padding: clamp(0.4rem, 1vw, 0.8rem) clamp(0.8rem, 1.5vw, 1.5rem);
}

.overlay-store-buttons .btn-primary {
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.overlay-store-buttons .glass-btn {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   App Section (Dual Mockup)
   ========================================================================== */
.app-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 25%;
}

.app-feature-item {
    padding: 1.5rem;
    cursor: none;
    transition: var(--transition-fast);
}

.app-feature-item.active {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.1);
}

.app-feature-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dual-mockups {
    width: 40%;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
}

.dual-mockups .phone-mockup {
    position: absolute;
    width: 260px; height: 530px;
    transform: none;
}

.dual-mockups .android {
    left: 10%; z-index: 2;
    transform: translateY(20px) rotate(-5deg);
}

.dual-mockups .ios {
    right: 10%; z-index: 1;
    transform: translateY(-20px) rotate(5deg);
}

/* Simulated App UI — telas internas dos dois celulares */
.dual-mockups .phone-frame {
    background: #05080f;
    border: 8px solid #0d1424;
    box-shadow:
        inset 0 0 0 2px #223354,
        0 0 0 1px rgba(255, 255, 255, 0.04),
        18px 22px 45px rgba(0, 0, 0, 0.55);
}

.dual-mockups .phone-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 26%, transparent 44%);
    pointer-events: none;
    z-index: 20;
}

/* Câmera furo (Android) e notch (iOS) */
.dual-mockups .android .phone-frame::before {
    content: '';
    position: absolute;
    top: 9px; left: 50%;
    transform: translateX(-50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #01040a;
    box-shadow: inset 0 0 0 1px #1b2740;
    z-index: 12;
}

.dual-mockups .ios .phone-notch {
    width: 88px; height: 20px;
    background: #05080f;
    border-radius: 0 0 14px 14px;
}

.app-screen {
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #0b111d;
    border-radius: 30px;
    overflow: hidden;
}

.ap-ui {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 13px;
    font-family: var(--font-body);
    color: #F2F5FA;
    line-height: 1.3;
}
.ap-ui::after {
    content: '';
    flex: 0 0 auto;
    width: 80px; height: 3.5px;
    margin: 0 auto 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
}

/* Status bar */
.ap-status {
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    font-size: 9.5px;
    font-weight: 600;
    color: #E8EDF6;
}
.ap-status-icons { display: flex; align-items: center; gap: 5px; font-size: 8px; opacity: 0.85; }

/* Topo */
.ap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 2px 2px 10px;
}
.ap-brand {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.ap-avatar img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 127, 0, 0.5);
}
.ap-icon-btn {
    width: 26px; height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #C3CCDB;
    font-size: 10px;
}

/* Busca */
.ap-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    font-size: 10.5px;
    font-weight: 500;
}
.ap-search > i:first-child { color: var(--car-orange); font-size: 11px; }
.ap-search span { flex: 1; }
.ap-search-end { font-size: 10px; color: #8A97AC; }

/* Favoritos */
.ap-places {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.ap-place {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.ap-place-ico, .ap-tx-ico, .ap-promo-ico {
    width: 26px; height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 127, 0, 0.14);
    color: var(--car-orange);
    font-size: 10px;
}
.ap-place-ico.blue { background: rgba(59, 130, 246, 0.14); color: #3b82f6; }
.ap-place-txt, .ap-tx-txt, .ap-promo-txt {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.ap-place-txt strong { font-size: 10px; font-weight: 600; }
.ap-place-txt small, .ap-tx-txt small, .ap-promo-txt small {
    font-size: 8.5px;
    color: #8A97AC;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ap-place-time {
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 8.5px;
    font-weight: 600;
    color: #C3CCDB;
    white-space: nowrap;
}

/* Mini mapa */
.ap-mini-map {
    position: relative;
    height: 146px;
    flex: 0 0 146px;
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.ap-mini-map svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ap-mini-route {
    fill: none;
    stroke: var(--car-orange);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(255, 127, 0, 0.45));
}
.ap-me {
    position: absolute;
    left: 50%; top: 80%;
    width: 10px; height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #3b82f6;
    border: 2px solid #E8EDF6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.22);
}
.ap-me::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.30);
    animation: vcPulse 2.4s ease-out infinite;
}
.ap-near {
    position: absolute;
    font-size: 9px;
    color: var(--car-orange);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.65));
    animation: vcBob 3.2s ease-in-out infinite;
}
.ap-near-1 { left: 20%; top: 32%; }
.ap-near-2 { left: 70%; top: 20%; transform: scaleX(-1); animation-delay: 0.7s; }
.ap-near-3 { left: 58%; top: 70%; animation-delay: 1.4s; }
.ap-mini-badge {
    position: absolute;
    left: 8px; bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(9, 14, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 600;
    color: #E8EDF6;
}
.ap-mini-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: vcBlink 1.6s ease-in-out infinite;
}

/* Promo */
.ap-promo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    padding: 9px 10px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.18), rgba(59, 130, 246, 0.12));
    border: 1px solid rgba(255, 127, 0, 0.25);
}
.ap-promo-ico {
    background: linear-gradient(135deg, var(--car-orange), #ff4500);
    color: #fff;
}
.ap-promo-txt strong { font-size: 10.5px; font-weight: 700; }
.ap-promo > i:last-child { font-size: 9px; color: #8A97AC; }

/* Carteira — saldo */
.ap-balance {
    position: relative;
    overflow: hidden;
    padding: 15px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #17253f 0%, #0f1728 65%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.ap-bal-label {
    font-size: 8.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8A97AC;
}
.ap-bal-value {
    display: block;
    margin: 4px 0 10px;
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    color: #F2F5FA;
}
.ap-bal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.ap-bal-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: #C3CCDB;
}
.ap-bal-card i { color: #3b82f6; font-size: 10px; }
.ap-bal-tag {
    padding: 3px 7px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.14);
    color: #4ade80;
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
}
.ap-bal-shine {
    position: absolute;
    top: -55%; right: -18%;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.28) 0%, transparent 65%);
    pointer-events: none;
}

/* Carteira — ações */
.ap-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}
.ap-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 11px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--car-orange);
    font-size: 11px;
}
.ap-action small { font-size: 8px; font-weight: 600; color: #C3CCDB; }

.ap-sec-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 2px 9px;
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    color: #E8EDF6;
}
.ap-sec-title small { font-size: 8.5px; font-weight: 600; color: var(--car-orange); }

/* Carteira — transações */
.ap-tx { display: flex; flex-direction: column; gap: 8px; }
.ap-tx-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 8px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.ap-tx-ico { font-size: 9.5px; }
.ap-tx-ico.green { background: rgba(34, 197, 94, 0.14); color: #4ade80; }
.ap-tx-txt strong {
    font-size: 9.5px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ap-tx-val {
    font-size: 9.5px;
    font-weight: 700;
    color: #E8EDF6;
    white-space: nowrap;
}
.ap-tx-val.plus { color: #4ade80; }

/* Barra de navegação */
.ap-tabs {
    margin-top: auto;
    display: flex;
    padding: 9px 2px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ap-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    color: #6B7A90;
}
.ap-tab small { font-size: 7.5px; font-weight: 600; letter-spacing: 0.2px; }
.ap-tab.active { color: var(--car-orange); }
.ap-tab.active i { filter: drop-shadow(0 0 6px rgba(255, 127, 0, 0.45)); }

@media (prefers-reduced-motion: reduce) {
    .ap-me::before, .ap-near, .ap-mini-dot { animation: none; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-slider {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 420px;
    padding: 2.5rem;
    flex-shrink: 0;
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(255, 69, 0, 0.08);
    z-index: 0;
    transition: var(--transition-fast);
}

.testimonial-card:hover .quote-icon {
    color: rgba(255, 69, 0, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.stars { 
    color: var(--warning); 
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.review { 
    font-size: 1.15rem; 
    font-style: italic; 
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    color: var(--text-white);
}

.reviewer { 
    display: flex; 
    align-items: center; 
    gap: 1.2rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.reviewer img { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    padding: 2px;
}

.reviewer h4 { 
    margin: 0; 
    font-size: 1.1rem;
    color: var(--text-white);
}

.reviewer span { 
    color: var(--text-gray); 
    font-size: 0.9rem; 
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-420px * 3 - 2rem * 3)); }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.2) 0%, transparent 60%);
    z-index: -1;
    animation: pulseBg 5s infinite alternate;
}

@keyframes pulseBg {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 1; }
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
}

.store-btn i { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.store-btn .btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.store-btn span { font-size: 0.8rem; }
.store-btn strong { font-size: clamp(1rem, 2vw, 1.2rem); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 80px 0 20px;
    background: #01050F;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.glass-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: var(--transition-fast);
}
.glass-icon:hover { background: var(--neon-green); color: var(--bg-dark); }

.footer-links h4 { margin-bottom: 1.5rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-gray); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--neon-green); padding-left: 5px; }

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1rem;
    color: var(--text-white);
    outline: none;
}

.btn-glow {
    background: var(--primary-gradient);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.border-top { border-top: 1px solid var(--glass-border); }
.footer-legal { display: flex; gap: 2rem; }

/* ==========================================================================
   Corporate Page Specific Styles
   ========================================================================== */
.corporate-page {
    --primary-gradient: linear-gradient(135deg, #1E3A8A, #FF4500);
    --neon-green: #1E3A8A; /* Shift brand color slightly for corporate feel */
}

.corp-tag {
    font-size: 1rem;
    vertical-align: super;
    color: var(--electric-blue);
    margin-left: 5px;
}

.hero-corporate {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(3,10,26,0.8), rgba(3,10,26,1));
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 100%;
    background: var(--glass-border);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--electric-blue);
    z-index: 2;
}

.timeline-content {
    width: 80%;
    padding: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 10%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 10%;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    text-align: center;
}

.icon-3d {
    font-size: 3rem;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 20px rgba(30, 58, 138, 0.4);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-card i { font-size: 2.5rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    overflow: hidden;
    padding: 0;
    text-align: center;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.team-card:hover .team-img img {
    filter: grayscale(0%);
}

.team-info {
    padding: 1.5rem;
    position: relative;
}

.linkedin-link {
    position: absolute;
    top: -20px; right: 20px;
    width: 40px; height: 40px;
    background: #0077b5;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.security-banner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sec-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sec-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.sec-list i { color: var(--electric-blue); }
.giant-icon { font-size: 12rem; opacity: 0.8; }
.flex-row { display: flex; }
.sec-content { flex: 1; }

.partners-carousel {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.partners-carousel::before, .partners-carousel::after {
    content: '';
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 250px;
    flex-shrink: 0;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 2.5rem;
    color: var(--text-gray);
    transition: all 0.4s ease;
    filter: grayscale(100%) opacity(0.7);
    backdrop-filter: blur(10px);
}

.partner-logo span {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-sora);
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.1);
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6 - 3rem * 6)); }
}

.accordion-item {
    border-bottom: 1px solid var(--glass-border);
}

.accordion-item:last-child { border-bottom: none; }

.accordion-header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.accordion-body {
    padding-bottom: 1.5rem;
    display: none;
    color: var(--text-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; }

.map-stylized {
    height: 200px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #051024;
}

.map-grid {
    width: 100%; height: 100%;
    background-image: linear-gradient(#0A1A3A 1px, transparent 1px), linear-gradient(90deg, #0A1A3A 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-gray); }
.glass-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.glass-input:focus {
    border-color: var(--electric-blue);
    background: rgba(255,255,255,0.05);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    /* Adaptação Estrutural: grid-template-columns reduzido ou alterado para 1fr */
    .hero-container, .benefit-row, .drivers-container, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons { 
        justify-content: center; 
        flex-wrap: wrap; /* Permitir quebra se a tela for muito pequena */
    }
    .hero-users { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    .app-showcase { flex-direction: column; gap: 3rem; }
    .app-features-list { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .app-feature-item { padding: 1rem; flex: 1; min-width: 150px; }
    
    .dual-mockups { width: 100%; height: 500px; transform: scale(0.9); }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    
    /* Corporate Page */
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 60px; padding-right: 0; }
    .timeline-dot { left: 20px; }
    .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; margin: 0; }
    .mvv-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .security-banner { flex-direction: column; text-align: center; gap: 2rem; }
    .sec-list li { justify-content: center; }
}

@media (max-width: 768px) {
    /* Espaçamentos proporcionais (reduzidos) */
    .section-padding { padding: 60px 0; }
    
    /* Navbar */
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; cursor: pointer; }
    .mobile-only-btn { display: block; width: 100%; margin-top: 1rem; }
    
    .navbar.active {
        border-radius: 24px;
        background: rgba(3, 10, 26, 0.98) !important;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 10, 26, 0.98);
        backdrop-filter: blur(16px);
        padding: 2rem;
        border-radius: 0 0 24px 24px;
        border: 1px solid var(--glass-border);
        border-top: none;
        gap: 1.5rem;
        align-items: center;
        z-index: 999;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    
    .nav-links.active li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links.active a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }
    
    /* Grid to Column */
    .steps-grid, .tech-grid, .mvv-grid, .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .social-links, .footer-legal { justify-content: center; flex-wrap: wrap; }
    
    /* Redução de padding nos cards para mobile */
    .glass-panel { padding: 1.5rem; }
    .glass-panel.large { padding: 1.5rem; }
    .step-card { padding: 2rem 1.5rem; }
    
    /* Ajustes Hero e App Section */
    .hero { padding-top: 120px; min-height: auto; padding-bottom: 60px; }
    .hero-container { gap: 2rem; }
    
    .hero-mockup .phone-mockup {
        transform: rotateY(-15deg) rotateX(5deg) scale(0.9);
    }
    
    .dual-mockups { height: 400px; transform: scale(0.75); margin-top: -2rem; }
    .dual-mockups .android { left: 5%; }
    .dual-mockups .ios { right: 5%; }
    
    /* Ajustes CTA e Botões */
    .store-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    .store-btn { width: 100%; max-width: 300px; justify-content: center; }
    
    .benefit-list { grid-template-columns: 1fr; }
    .driver-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    /* Telas muito pequenas (Mobile Portrait) */
    .container { padding: 0 1rem; }
    .section-padding { padding: 40px 0; }
    
    /* Botões 100% largura */
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    
    /* Ajustes Finos */
    .badge-new { font-size: 0.75rem; padding: 6px 12px; }
    .user-avatars img { width: 32px; height: 32px; }
    
    .hero-mockup .phone-mockup {
        transform: rotateY(-15deg) rotateX(5deg) scale(0.8);
    }
    
    .dual-mockups { height: 350px; transform: scale(0.65); margin-top: -4rem; }
    
    .testimonial-card { width: 320px; padding: 1.5rem; }
    .quote-icon { font-size: 2.5rem; top: 15px; right: 20px; }
    .review { font-size: 1rem; margin-bottom: 1.5rem; }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-320px * 3 - 6rem)); }
    }
}
