/* =========================================================
   GARAGEM RENTAL - STYLE.CSS COMPLETO (v6.1 - MOBILE FIXED)
   ========================================================= */

:root {
    /* --- CORES & PALETA (PREMIUM) --- */
    --navy-deep: #020617;      /* Fundo Principal (Slate 950) */
    --navy-bg: #050a30;        /* Fundo Alternativo */
    --navy-light: #0f172a;     /* Fundo Cards (Slate 900) */
    
    --blue-vibrant: #0076e6;   /* Azul Ação */
    --blue-glow: rgba(0, 118, 230, 0.5);
    
    --white: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-gray: #b4c6e0;
    
    /* --- GRADIENTES --- */
    --grad-main: linear-gradient(135deg, #0076e6 0%, #00c6ff 100%);
    --grad-dark: radial-gradient(circle at top center, #1e293b 0%, #020617 80%);
    
    /* --- EFEITOS --- */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    /* --- FONTES --- */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- 1. RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

/* CORREÇÃO CRÍTICA MOBILE: Impede rolagem horizontal indesejada */
html, body {
    overflow-x: hidden; 
    width: 100%;
    scroll-behavior: smooth; 
    font-size: 16px; 
}

body {
    background-color: var(--navy-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.center { text-align: center; }

.text-gradient {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 2. HERO SECTION (TOPO) --- */
.hero-deluxe {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--grad-dark);
    position: relative; /* Essencial para a logo absoluta funcionar */    
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Efeito de Fundo Hero */
.hero-glow {
    position: absolute;
    top: 20%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: var(--blue-vibrant);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero-content { text-align: center; position: relative; z-index: 2; width: 100%; }

.badge-premium {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 118, 230, 0.1);
    border: 1px solid rgba(0, 118, 230, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Botão Vibrante */
.btn-vibrant {
    background: var(--blue-vibrant);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 118, 230, 0.4);
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-vibrant:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 118, 230, 0.6);
    background: #2563eb;
}
.pulse { animation: pulse-anim 2s infinite; }
@keyframes pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(0, 118, 230, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 118, 230, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 118, 230, 0); }
}

/* Vídeo Flutuante Hero */
.hero-video-container {
    margin-top: 70px;
    position: relative;
    max-width: 960px;
    width: 100%;
    margin-left: auto; margin-right: auto;
    z-index: 5;
}
.video-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.video-caption {
    margin-top: 20px; color: var(--text-muted); font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center; gap: 8px; opacity: 0.8;
}

/* --- 3. TICKER SECTION (FAIXA DE PREÇO) --- */
.ticker-section {
    padding: 50px 0;
    background: linear-gradient(90deg, #020617 0%, #0f172a 50%, #020617 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.ticker-glow {
    position: absolute;
    width: 300px; height: 100%;
    background: radial-gradient(circle, rgba(0, 118, 230, 0.1) 0%, transparent 70%);
    top: 0; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}

.ticker-content {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 20px; z-index: 2; width: 100%;
}
@media (min-width: 900px) {
    .ticker-content { flex-direction: row; gap: 40px; }
}

.ticker-label {
    font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.prices-wrapper { display: flex; align-items: center; gap: 15px; }

.old-price-display {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #64748b;
    position: relative; display: inline-block;
}
.cut-line {
    position: absolute; top: 50%; left: -5%; width: 0%; height: 3px;
    background-color: #ef4444; transform: rotate(-10deg);
    transition: width 0.5s ease-out; box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
}

.ticker-number-wrapper { display: flex; align-items: baseline; gap: 5px; }
.currency-symbol { font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-vibrant); font-weight: 700; }
.live-counter {
    font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--white);
    line-height: 1; text-shadow: 0 0 30px rgba(0, 118, 230, 0.4);
}
.live-counter.counter-finished { color: #4ade80 !important; text-shadow: 0 0 40px rgba(74, 222, 128, 0.5) !important; }

.condition-badge {
    font-size: 0.75rem; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
    color: #4ade80; padding: 6px 16px; border-radius: 50px; text-transform: uppercase;
    letter-spacing: 1px; opacity: 0; transform: translateY(10px); transition: all 0.5s ease;
}
.condition-badge.visible { opacity: 1; transform: translateY(0); }


/* --- 4. BATTLE ARENA (VISUAL COMPARISON) --- */
.comparison-visual-section {
    padding: 100px 0;
    background: #020617;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-header h2 {
    font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 15px; color: var(--white); line-height: 1.1;
}
.section-header p { color: var(--text-gray); max-width: 650px; margin: 0 auto; font-size: 1.1rem; }

.battle-arena {
    display: flex; justify-content: center; align-items: stretch;
    gap: 0; margin-top: 60px; position: relative;
    max-width: 1000px; margin-left: auto; margin-right: auto;
}

.battle-card {
    flex: 1; padding: 40px 30px; border-radius: 20px;
    position: relative; transition: transform 0.3s ease;
}
.battle-card h3 {
    font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 5px; color: white;
}
.price-reference {
    font-size: 0.9rem; margin-bottom: 30px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
}
.card-badge-top {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    padding: 5px 15px; border-radius: 50px; font-weight: 800; font-size: 0.75rem; letter-spacing: 1px;
}

/* Lado Ruim */
.bad-side {
    background: #0f172a; border: 1px solid #334155; border-right: none;
    border-top-right-radius: 0; border-bottom-right-radius: 0;
    opacity: 0.9; transform: scale(0.95);
}
.bad-side .price-reference { color: #ef4444; }
.card-badge-top.red { background: #ef4444; color: white; }

/* Lado Bom */
.good-side {
    background: linear-gradient(145deg, rgba(0, 118, 230, 0.2), rgba(0,0,0,0.6));
    border: 2px solid #22c55e; border-left: none;
    border-top-left-radius: 0; border-bottom-left-radius: 0;
    z-index: 2; transform: scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.good-side .price-reference { color: #4ade80; }
.card-badge-top.green { background: #22c55e; color: white; box-shadow: 0 0 15px #22c55e; }

/* VS Circle */
.vs-circle {
    width: 60px; height: 60px; background: #020617; border: 3px solid #334155;
    border-radius: 50%; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-style: italic; z-index: 3; font-family: var(--font-display);
}

.battle-points { display: flex; flex-direction: column; gap: 25px; }
.point-row { display: flex; align-items: flex-start; gap: 15px; text-align: left; }
.icon-danger, .icon-success {
    min-width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.icon-danger { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.icon-success { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.text-wrapper strong { display: block; color: white; font-size: 1.1rem; margin-bottom: 2px; }
.text-wrapper p { color: #94a3b8; font-size: 0.9rem; line-height: 1.3; margin: 0; }

.result-box { margin-top: 30px; padding: 15px; border-radius: 12px; text-align: center; }
.result-box strong { font-size: 1.2rem; font-family: var(--font-display); display: block; }
.result-box.fail { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px dashed #ef4444; }
.result-box.win { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid #22c55e; }


/* --- 5. BENEFITS SECTION (CLEAN) --- */
.section-clean { padding: 100px 0; background: var(--navy-deep); position: relative; }

.grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;
}
.feature-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    padding: 40px 30px; border-radius: 24px; transition: 0.3s;
}
.feature-card:hover {
    background: rgba(255,255,255,0.06); transform: translateY(-10px); border-color: var(--blue-vibrant);
}
.icon-box {
    width: 60px; height: 60px; background: rgba(0, 118, 230, 0.2);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    color: var(--blue-vibrant); margin-bottom: 25px; font-size: 1.5rem;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 15px; color: var(--white); }
.feature-card p { color: var(--text-muted); font-size: 1rem; }


/* --- 6. GALLERY PREMIUM (2X2 FIXO) --- */
.gallery-section {
    padding: 100px 0 120px;
    background: #02050f; /* Fundo bem escuro */
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Colunas Fixas */
    gap: 40px; /* Espaço entre elas */
    margin-top: 60px;
    max-width: 900px; /* Limite para não ficar esticado */
    margin-left: auto; margin-right: auto;
}

.gallery-card {
    position: relative; border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/3; /* Formato Retangular Paisagem */
    cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.1); background: #0f172a;
}
.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--blue-vibrant);
    box-shadow: 0 20px 50px rgba(0, 118, 230, 0.2);
}
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;
}
.gallery-card:hover img { transform: scale(1.1); }

/* Detalhes da Galeria */
.card-status {
    position: absolute; top: 20px; right: 20px;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); color: white;
    padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2); z-index: 10;
}
.g-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #020617 10%, rgba(2, 6, 23, 0.6) 40%, transparent 100%);
    z-index: 1;
}
.g-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 30px;
    z-index: 2; transition: transform 0.3s;
}
.gallery-card:hover .g-info { transform: translateY(0); }

.g-cat {
    color: var(--blue-vibrant); font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; display: block;
}
.g-info strong {
    color: white; font-size: 1.4rem; font-family: var(--font-display);
    line-height: 1.2; display: block; margin-bottom: 10px;
}
.g-info p {
    color: #cbd5e1; font-size: 0.9rem; line-height: 1.5; margin: 0;
    opacity: 0.8; display: -webkit-box; -webkit-line-clamp: 2;
    line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}


/* --- 7. FORM SECTION (MODERN) --- */
.form-section {
    padding: 120px 0;
    background: var(--text-main); /* Fundo claro */
    position: relative;
}

.form-wrap-modern {
    background: #ffffff; border-radius: 24px;
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.15); padding: 0;
    max-width: 600px; margin: 0 auto; border: 1px solid #f0f0f0;
    position: relative; overflow: visible;
}
.form-head-modern {
    padding: 35px 30px 20px; text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
    border-bottom: 1px solid #f1f5f9;
}
.form-head-modern h2 {
    font-family: var(--font-display); color: #050a30; font-size: 1.8rem; margin-bottom: 10px;
}
.badges-container { display: flex; justify-content: center; gap: 10px; margin-bottom: 15px; }
.badge-pill {
    background: #eff6ff; color: #0076e6; font-size: 0.8rem;
    padding: 6px 14px; border-radius: 20px; font-weight: 700;
    border: 1px solid rgba(0, 118, 230, 0.15);
}

.progress-container { padding: 20px 30px 0; margin-bottom: 25px; }
.progress-bar-bg { background: #e2e8f0; height: 6px; border-radius: 4px; overflow: hidden; }
.progress-bar-fill {
    background: #0076e6; height: 100%; transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-labels {
    display: flex; justify-content: space-between; font-size: 0.8rem;
    margin-top: 8px; color: #64748b; font-weight: 500;
}

.form-body-modern { padding: 0 30px 40px; }
.input-group-modern { margin-bottom: 20px; text-align: left; }
.input-group-modern label { display: block; margin-bottom: 8px; font-weight: 600; color: #1e293b; font-size: 0.95rem; }
.input-modern {
    width: 100%; padding: 14px 18px; border: 2px solid #e2e8f0;
    border-radius: 12px; font-size: 1rem; transition: all 0.3s ease;
    outline: none; color: #334155; background: #f8fafc;
}
.input-modern:focus {
    border-color: #0076e6; background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 118, 230, 0.1);
}

.segment-grid-modern { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
.seg-card {
    border: 2px solid #e2e8f0; border-radius: 14px; padding: 15px 10px;
    text-align: center; cursor: pointer; transition: all 0.2s; background: #fff;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.seg-card:hover { transform: translateY(-3px); border-color: #0076e6; }
.seg-card.selected {
    background: #eff6ff; border-color: #0076e6;
    box-shadow: 0 4px 15px rgba(0, 118, 230, 0.2);
}
.seg-icon-box {
    font-size: 1.5rem; background: #f1f5f9; width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.seg-card.selected .seg-icon-box { background: #fff; }

.step-footer { display: flex; align-items: center; justify-content: center; margin-top: 30px; gap: 15px; }
.btn-next-modern {
    background: #0076e6; color: white; border: none; padding: 14px 35px;
    border-radius: 50px; font-weight: 600; cursor: pointer; font-size: 1rem;
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 118, 230, 0.3);
}
.btn-next-modern:hover { background: #005bb5; transform: translateY(-2px); }
.btn-prev-modern {
    background: transparent; color: #64748b; border: 1px solid #e2e8f0;
    font-weight: 600; cursor: pointer; padding: 13px 25px; border-radius: 50px;
}
.step-content { display: none; animation: fadeIn 0.4s ease forwards; }
.step-content.active { display: block; }

/* Tela de Sucesso */
.success-screen { padding: 40px 20px; text-align: center; }
.success-icon-circle {
    width: 80px; height: 80px; background: #22c55e; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}
.whatsapp-box {
    margin-top: 25px; background: #f0fdf4; padding: 20px;
    border-radius: 16px; border: 1px solid #dcfce7;
}
.btn-whatsapp-final {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: white; font-weight: 700; text-decoration: none;
    padding: 16px; border-radius: 12px; font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: 0.3s;
}

/* --- 8. FOOTER --- */
.footer-premium {
    background: #050a30; color: white; padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width: 900px) { .footer-grid { grid-template-columns: 4fr 2fr 2fr 4fr; } }
.footer-col h4 {
    color: #0076e6; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-weight: 700;
}
.footer-links li { list-style: none; margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-info-item {
    display: flex; gap: 15px; margin-bottom: 20px; color: #cbd5e1; font-size: 0.9rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding-top: 30px;
    display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center;
}
@media(min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* --- 9. BOTÃO WHATSAPP FLUTUANTE --- */
.floating-whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: linear-gradient(45deg, #5FFC7B, #25D366); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2.5s infinite;
}
.floating-whatsapp-btn:hover { transform: scale(1.1); }
.floating-whatsapp-btn svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- 10. ANIMAÇÕES & UTILS --- */
.scroll-reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- 11. RESPONSIVIDADE GERAL (MOBILE FIX) --- */
@media (max-width: 900px) {
    /* 1. Corrige o brilho que estava "estourando" a tela */
    .hero-glow {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    /* 2. Ajuste do Título para não quebrar feio */
    .hero-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    /* 3. Correção da Batalha (VS vs Badge) - AGORA OK! */
    .battle-arena {
        flex-direction: column;
        gap: 40px; /* Mais espaço entre os cards */
        align-items: center;
        margin-top: 40px;
        overflow: visible; /* Garante que badges não sejam cortadas */
    }

    .battle-card {
        width: 100%;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,0.1);
    }

    /* Lado Ruim (Mobile) */
    .bad-side {
        transform: scale(1);
        border-right: 1px solid #334155;
        border-bottom-right-radius: 20px !important;
        border-top-right-radius: 20px !important;
    }

    /* Lado Bom (Mobile) */
    .good-side {
        border: 2px solid #22c55e;
        transform: scale(1);
        margin-top: 20px; /* Respiro para não colar no VS */
        z-index: 5;
        border-bottom-left-radius: 20px !important;
        border-top-left-radius: 20px !important;
    }
    
    /* Círculo VS - Posicionado entre os dois cards */
    .vs-circle {
        position: static; 
        transform: none; 
        margin: -30px auto; /* Puxa um pouco para cima para ficar no meio */
        background: #020617;
        z-index: 10;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    /* Garante que a Badge Verde fique visível e legível */
    .battle-card .card-badge-top {
        z-index: 20;
        white-space: nowrap;
    }

    /* Outros ajustes menores */
    .hero-video-container { margin-top: 40px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 30px; }
    .gallery-card { aspect-ratio: 4/5; }
    .grid-3, .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .prices-wrapper { flex-direction: column; gap: 5px; }
    .arrow-indicator { transform: rotate(90deg); }
    .live-counter { font-size: 2.5rem; }
}
/* =========================================================
   CORREÇÃO DE LEGIBILIDADE DO FORMULÁRIO (FIX)
   ========================================================= */

/* 1. Força a cor do texto dentro dos cartões de seleção (Hambúrguer, Valores, etc) */
.seg-card span {
    color: #1e293b !important; /* Cor Escura (Slate 800) para contraste */
    font-weight: 600;
    font-size: 1rem; /* Aumenta um pouco para leitura fácil */
    display: block;
    margin-top: 5px;
}

/* Efeito ao passar o mouse: texto fica azul */
.seg-card:hover span,
.seg-card.selected span {
    color: #0076e6 !important;
}

/* 2. Corrige o texto da tela de Sucesso (Caixa Verde) */
.whatsapp-box p {
    color: #14532d !important; /* Verde escuro para ler em cima do verde claro */
    font-size: 0.95rem;
    line-height: 1.5;
}

.success-screen h3 {
    color: #0f172a !important; /* Título preto/azul escuro */
}

.success-screen p {
    color: #475569 !important; /* Texto de apoio cinza escuro */
}

/* 3. Ajuste geral de inputs para garantir que o texto digitado seja escuro */
.input-modern {
    color: #0f172a !important; /* Texto preto ao digitar */
    font-weight: 500;
}
.input-modern::placeholder {
    color: #94a3b8 !important; /* Placeholder cinza visível */
}

/* 4. Melhoria no botão "Voltar" (para não parecer sumido) */
.btn-prev-modern {
    color: #475569 !important;
    border-color: #cbd5e1 !important;
    font-weight: 700;
}
.btn-prev-modern:hover {
    background-color: #f1f5f9;
    color: #0f172a !important;
}
/* =========================================================
   CORREÇÃO FINAL: CAMPO WHATSAPP E DROPDOWN (INTL-TEL-INPUT)
   ========================================================= */

/* 1. Força o container do telefone a ocupar 100% da largura (igual ao input de Nome) */
.iti {
    width: 100% !important;
    display: block !important;
    margin-bottom: 15px; /* Espaço para não colar no botão */
}

/* 2. Ajusta o Input para ter a MESMA altura e cor do campo "Nome" */
#phoneInputDisplay {
    width: 100% !important;
    height: 54px !important; /* Altura fixa para alinhar com o input de cima */
    background-color: #f8fafc !important; /* Fundo claro */
    color: #0f172a !important; /* Texto digitado escuro */
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* 3. Foco: Quando clica, fica azul igual aos outros */
#phoneInputDisplay:focus {
    border-color: #0076e6 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(0, 118, 230, 0.1) !important;
}

/* =========================================================
   CORREÇÃO URGENTE: TEXTO DO WHATSAPP E LISTA DE PAÍSES
   ========================================================= */

/* 1. Corrige a lista de países (O menu que abre) */
.iti__country-list {
    color: #000000 !important;       /* Força texto PRETO */
    background-color: #ffffff !important; /* Garante fundo BRANCO */
    white-space: normal !important;  /* Evita que texto encavale */
}

/* 2. Força a cor dos nomes dos países e códigos (+55, etc) dentro da lista */
.iti__country-name, 
.iti__dial-code {
    color: #1e293b !important;       /* Azul escuro quase preto */
}

/* 3. Corrige o "+55" que aparece ao lado da bandeira (estava sumindo) */
.iti__selected-dial-code {
    color: #1e293b !important;       /* Texto Escuro */
    font-weight: 600 !important;
}

/* 4. Pinta a setinha (triângulo) do menu de preto */
.iti__arrow {
    border-top-color: #1e293b !important;
}
.iti__arrow--up {
    border-bottom-color: #1e293b !important;
}

/* 5. Garante que o campo de digitação tenha a mesma altura e estilo do "Nome" */
.iti {
    width: 100% !important;
    display: block !important;
    margin-bottom: 20px !important;
}

#phoneInputDisplay {
    height: 54px !important;         /* Altura idêntica ao campo de Nome */
    background-color: #f8fafc !important; 
    color: #0f172a !important;       /* Texto digitado fica escuro */
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    width: 100% !important;
}
/* =========================================================
   NOVA SEÇÃO: DEPOIMENTOS MARQUEE (INFINITO)
   ========================================================= */
.testimonials-marquee-section {
    padding: 80px 0;
    background-color: #f1f5f9; /* Fundo Cinzinha Claro */
    overflow: hidden; /* Esconde o que sai da tela */
    position: relative;
}

.marquee-wrapper {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    overflow: hidden;
    position: relative;
    /* Máscara para suavizar as bordas laterais */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content; /* Permite que o conteúdo estique */
}

.marquee-track img {
    height: auto;
    width: 380px; /* Tamanho fixo para padronizar os cards */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Sombra suave */
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.marquee-track img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Animações de Corrida */
.scroll-left {
    animation: scrollLeft 60s linear infinite;
}
.scroll-right {
    animation: scrollRight 60s linear infinite;
}

/* Pausa a animação ao passar o mouse ou tocar */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Ajuste conforme a duplicação */
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .marquee-track img { width: 300px; } /* Cards menores no celular */
    /* No mobile, permite scroll manual horizontal também se quiser */
    .marquee-wrapper {
        overflow-x: auto; 
        scroll-behavior: smooth;
        mask-image: none; /* Remove máscara para facilitar toque */
        -webkit-mask-image: none;
    }
}

/* =========================================================
   NOVO: BANNER DE COOKIES (ESTILO FLUTUANTE)
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 25px;
    z-index: 10000; /* Acima de tudo */
    font-family: var(--font-body);
    animation: slideUpCookie 0.5s ease-out forwards;
}

/* Ajuste para não ficar em cima do botão do WhatsApp */
@media (max-width: 768px) {
    .cookie-banner {
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px; /* Sobe para ficar acima do botão do Whats */
        width: 90%;
    }
}

@keyframes slideUpCookie {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    @keyframes slideUpCookie {
        from { opacity: 0; transform: translate(-50%, 50px); }
        to { opacity: 1; transform: translate(-50%, 0); }
    }
}

.cookie-content {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-icon {
    min-width: 40px;
    height: 40px;
    background: #eff6ff;
    color: #0076e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.btn-cookie-link {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-cookie-link:hover { color: #0076e6; }

.btn-cookie-accept {
    background: #0076e6;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-cookie-accept:hover {
    background: #005bb5;
}