/* Base & Reset (Dark Theme) */
:root {
    --primary: #FF5A00; /* Laranja Neon Automotivo */
    --primary-dark: #cc4800;
    --primary-glow: rgba(255, 90, 0, 0.4);
    --bg-dark: #0A0C10; /* Asfalto Profundo */
    --bg-card: rgba(22, 26, 33, 0.65); /* Glassmorphism Base */
    --white: #FFFFFF;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --success: #25D366; /* WhatsApp */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: var(--text-main);
    line-height: 1.5;
    font-size: 14px;
    overflow-x: hidden;
}

/* Forçar visual de Aplicativo Mobile mesmo no PC */
.mobile-app-mode {
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background: var(--bg-dark);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(255, 90, 0, 0.1);
    position: relative;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--white); }
.highlight { color: var(--primary); }
.text-gradient {
    background: linear-gradient(90deg, #FF5A00, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }

/* Cinematic Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Ocupa quase toda a tela */
    display: flex;
    align-items: flex-end; /* Conteúdo vai pro chão */
    padding: 30px 20px 40px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Tratamento Profissional Automotivo: Saturação, Contraste e Nitidez óptica */
    filter: contrast(1.25) saturate(1.3) brightness(0.85);
}

.hero-logo-branca {
    width: auto;
    max-width: 80%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.9));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    height: 130px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: contrast(1.25) brightness(1.1) drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,12,16,0.2) 0%, rgba(10,12,16,0.95) 80%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.scroll-indicator {
    margin-top: 25px;
    animation: bounceDown 2s infinite;
    opacity: 0.9;
}

.scroll-arrow {
    display: block;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: -5px;
    font-weight: 900;
}

.scroll-indicator p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.badge-alert {
    display: inline-block;
    background: rgba(255, 90, 0, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary-glow);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 400;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 90, 0, 0.05);
    border-top: 1px solid rgba(255, 90, 0, 0.1);
    border-bottom: 1px solid rgba(255, 90, 0, 0.1);
    backdrop-filter: blur(10px);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Stats Section */
.stats-section {
    padding: 25px 20px;
    text-align: center;
    margin: 10px 0 20px;
}

.stat-impact h2 { font-size: 20px; margin-bottom: 5px; }
.stat-impact p { font-size: 14px; color: var(--text-main); }
.stat-impact strong { color: var(--primary); font-size: 18px; }

.highlight-text {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 90, 0, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

/* Row Lado a Lado (Stats) */
.mobile-row {
    display: flex;
    gap: 15px;
    padding: 0 20px 30px;
}

.stat-box {
    flex: 1;
    padding: 15px;
    text-align: center;
}

.stat-icon { font-size: 26px; display: block; margin-bottom: 8px; }
.stat-box h3 { font-size: 15px; margin-bottom: 4px; }
.stat-box p { font-size: 12px; color: var(--text-muted); }

/* Galeria Swiper & Depoimentos */
.section-header { text-align: center; padding: 10px 20px 20px; }
.section-header h2 { font-size: 26px; text-transform: uppercase; letter-spacing: -0.5px;}
.section-header p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.swiper-portfolio { width: 100%; padding: 0 20px 40px; }
.swiper-portfolio .swiper-slide {
    width: 85%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.swiper-portfolio img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.testimonials-section { padding: 0 20px 30px; }
.testimonials-section h2 { margin-bottom: 25px; font-size: 24px; }
.swiper-depoimentos { width: 100%; padding-bottom: 10px; }
.testimonial-card { padding: 20px 15px; text-align: center; margin: 0 5px; }
.stars { color: #FFD700; margin-bottom: 10px; font-size: 16px; letter-spacing: 2px;}
.testimonial-card p { font-size: 13px; font-style: italic; color: var(--text-main); margin-bottom: 12px; }
.client-name { font-size: 12px; font-weight: 900; color: var(--primary); text-transform: uppercase; }

.swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; box-shadow: 0 0 10px var(--primary-glow); }

/* Como Funciona 2x2 */
.how-it-works { padding: 0 20px 40px; }
.how-it-works h2 { margin-bottom: 25px; }

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.step-card {
    padding: 18px 15px;
    position: relative;
    text-align: center;
}

.step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.step-card h4 { font-size: 15px; margin-top: 8px; margin-bottom: 4px; }
.step-card p { font-size: 12px; color: var(--text-muted); }

/* Pacotes */
.packages-section { padding-bottom: 40px; }
.packages-grid {
    display: flex;
    gap: 15px;
    padding: 0 20px;
}

.package-card {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.border-subtle { border: 1px solid rgba(255,255,255,0.05); }

.featured-pkg {
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px var(--primary-glow);
    background: linear-gradient(180deg, rgba(22, 26, 33, 0.9) 0%, rgba(255, 90, 0, 0.05) 100%);
    transform: translateY(-5px);
}

.badge-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 900;
    border-radius: 12px;
    white-space: nowrap;
}

.pkg-header { text-align: center; margin-bottom: 12px; height: 40px;}
.pkg-header h3 { font-size: 16px; margin-bottom: 4px;}
.pkg-header p { font-size: 11px; color: var(--text-muted); }

.bonus-tag {
    display: inline-block;
    background: #FFC107;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 9px;
    text-transform: uppercase;
}

.pkg-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pkg-features {
    list-style: none;
    margin-bottom: 15px;
    flex-grow: 1;
}

.pkg-features li {
    font-size: 11px;
    margin-bottom: 6px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Boxes de Preço */
.price-box {
    text-align: center;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 10px;
}

.price-currency { font-size: 14px; font-weight: bold; color: var(--primary); }
.price-value { font-size: 24px; font-weight: 900; font-family: 'Outfit'; color: var(--white); }
.price-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }

.highlight-price .price-value { font-size: 32px; }

/* Alerta de Escassez */
.scarcity-alert {
    font-size: 11px;
    color: #ffeb3b;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    animation: flashText 2.5s infinite;
}

@keyframes flashText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* FAQ / Objeções */
.faq-section { padding: 0 20px 40px; }
.faq-section h2 { margin-bottom: 25px; font-size: 24px; }
.faq-container { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 18px 15px; border-left: 3px solid var(--primary); }
.faq-item h4 { font-size: 14px; margin-bottom: 8px; color: var(--white); }
.faq-item p { font-size: 13px; color: var(--text-muted); }

/* Buttons */
.btn-primary {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    transition: all 0.3s;
}

.btn-primary:active { transform: scale(0.98); }

.btn-outline {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Efeitos Especiais (Dinâmicos) */
.glow-fx { box-shadow: 0 0 15px var(--primary-glow); }

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(255, 90, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 90, 0, 0); }
}

/* Footer CTA Flutuante */
.footer-cta {
    padding: 40px 20px 100px;
    text-align: center;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.footer-cta h2 { font-size: 26px; text-transform: uppercase; }
.footer-cta p { font-size: 13px; color: var(--text-muted); margin-top: 8px;}

.btn-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--success);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    z-index: 990;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.float-pulse {
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* --- POPUP DE OFERTA BÔNUS --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.popup-overlay.show-popup {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    width: 90%;
    max-width: 400px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.show-popup .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 5px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    opacity: 0.6;
}

.popup-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    margin-bottom: 15px;
}

.popup-content h3 { font-size: 20px; margin-bottom: 10px; }
.popup-content p { font-size: 14px; color: var(--text-main); margin-bottom: 20px; }
.popup-content strong { color: var(--primary); font-size: 15px;}
