        /* --- 1. CONFIGURAÇÕES GERAIS --- */
        :root {
            --primary-red: #E50914;
            --bg-dark: #050505;
            --bg-card: #141414;
            --text-white: #ffffff;
            --text-gray: #b3b3b3;
            --gradient-red: linear-gradient(135deg, #E50914 0%, #8a040b 100%);
            --accent-green: #00ff88;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .section-title span { color: var(--primary-red); }

        /* --- 2. HEADER & NAV --- */
        header {
            background-color: rgba(5, 5, 5, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #222;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img { height: 40px; width: auto; display: block; }

        .nav-links { 
            display: flex; 
            gap: 30px; 
            align-items: center; 
        }

        .nav-links a {
            position: relative;
            font-weight: 500;
            padding: 8px;
            color: var(--text-gray);
            font-size: 1rem;
            transition: 0.3s;
        }

        /* Efeito de Linhas */
        .nav-links a:not(.btn-outline):not(.notification-btn)::before, 
        .nav-links a:not(.btn-outline):not(.notification-btn)::after {
            content: ''; position: absolute; width: 0; height: 2px;
            background-color: var(--primary-red); transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--primary-red);
        }
        .nav-links a:not(.btn-outline):not(.notification-btn)::before { top: 0; left: 0; }
        .nav-links a:not(.btn-outline):not(.notification-btn)::after { bottom: 0; right: 0; }

        .nav-links a:not(.btn-outline):not(.notification-btn):hover, 
        .nav-links a:not(.btn-outline):not(.notification-btn).active { color: white; }
        
        .nav-links a:not(.btn-outline):not(.notification-btn):hover::before, 
        .nav-links a:not(.btn-outline):not(.notification-btn):hover::after,
        .nav-links a:not(.btn-outline):not(.notification-btn).active::before, 
        .nav-links a:not(.btn-outline):not(.notification-btn).active::after { width: 100%; }

        /* --- NOTIFICAÇÕES --- */
        .notification-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-right: 10px;
        }
        
        .notification-btn i {
            font-size: 1.4rem;
            color: var(--text-gray);
            transition: color 0.3s;
        }

        .notification-btn:hover i { color: white; }

        .badge-notificacao {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--primary-red);
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #000;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .notification-btn.tem-notificacao .badge-notificacao {
            opacity: 1;
            transform: scale(1);
        }

        .notification-btn.tem-notificacao i {
            animation: bellShake 2.5s infinite;
            color: var(--primary-red);
        }

        @keyframes bellShake {
            0% { transform: rotate(0); }
            5% { transform: rotate(15deg); }
            10% { transform: rotate(-15deg); }
            15% { transform: rotate(10deg); }
            20% { transform: rotate(-10deg); }
            25% { transform: rotate(0); }
            100% { transform: rotate(0); }
        }
        
        /* BOTÃO ÁREA DO CLIENTE */
        .btn-outline {
            border: 1px solid white; 
            padding: 10px 25px; 
            border-radius: 4px; 
            color: white !important;
            font-weight: 700; 
            text-transform: uppercase; 
            position: relative; 
            overflow: hidden; 
            z-index: 1;
            font-size: 0.9rem;
            margin-left: 0;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .btn-outline::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
            background-color: var(--primary-red); z-index: -1; transition: width 0.3s ease;
        }
        
        .btn-outline:hover { border-color: var(--primary-red); box-shadow: 0 0 15px rgba(229, 9, 20, 0.4); }
        .btn-outline:hover::before { width: 100%; }

        .mobile-menu { display: none; font-size: 1.8rem; cursor: pointer; color: white; }

        /* --- 3. HERO SECTION --- */
        .hero {
            min-height: 90vh;
            background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(20,20,20,0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover; background-position: center; 
            display: flex; align-items: center; margin-top: 60px;
            padding: 40px 0;
            border-bottom: 2px solid var(--primary-red);
        }
        
        .hero-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* LADO ESQUERDO */
        .hero-branding {
            flex: 1.5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            min-width: 400px;
            padding-right: 40px;
        }

        .brand-logo-hero {
            max-width: 220px;
            margin-bottom: 25px;
            filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.3));
        }

        .hero-title-pro {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .hero-title-pro span { color: var(--primary-red); }

        .hero-subtitle-pro {
            font-size: 1.1rem;
            color: var(--text-gray);
            font-weight: 400;
            margin-bottom: 30px;
            max-width: 500px;
            line-height: 1.6;
        }

        .services-row { display: flex; gap: 15px; flex-wrap: wrap; }

        .service-badge {
            display: flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.1); padding: 8px 16px;
            border-radius: 50px; font-size: 0.9rem; font-weight: 600; color: white;
            border: 1px solid rgba(255,255,255,0.1); transition: 0.3s;
        }

        .service-badge i { color: var(--primary-red); }
        .service-badge:hover { background: rgba(229, 9, 20, 0.2); border-color: var(--primary-red); transform: translateY(-2px); }

        /* LADO DIREITO: Card Flutuante (Referência) */
        .hero-offer {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            min-width: 320px;
        }

        /* ESTILO DO CARD HERO */
        .offer-card-hero {
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(20px); 
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            position: relative;
            overflow: visible;
            max-width: 380px; width: 100%; 
            animation: floatCard 4s ease-in-out infinite;
        }

        .offer-badge {
            background: var(--primary-red); color: white;
            font-size: 0.8rem; font-weight: 800; padding: 5px 15px;
            border-radius: 20px; text-transform: uppercase; display: inline-block;
            margin-bottom: 15px; box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
        }

        .offer-title { font-size: 1.2rem; color: #ccc; margin-bottom: 5px; }

        /* TÍTULO DE VELOCIDADE (Unificado) */
        .offer-speed-hero, .card-speed {
            font-size: 4.5rem; font-weight: 900; line-height: 1;
            background: -webkit-linear-gradient(#fff, #bbb);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 10px; position: relative; z-index: 1;
        }
        
        .offer-speed-hero span, .card-speed span {
            font-size: 1.5rem; display: block; font-weight: 500;
            margin-top: -10px; color: var(--primary-red); -webkit-text-fill-color: var(--primary-red);
        }

        /* LISTA DE BENEFÍCIOS (Unificado) */
        .offer-benefits-hero, .beneficios {
            text-align: left; margin: 20px 0 20px; padding-left: 15px; list-style: none;
        }

        .offer-benefits-hero li, .beneficios li {
            color: #ddd; margin-bottom: 12px; font-size: 0.95rem;
            display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
        }

        .offer-benefits-hero li i, .beneficios li i { 
            color: var(--accent-green); margin-top: 4px; min-width: 16px; font-size: 1.1rem;
        } 

        .badge-aviso {
            display: inline-block; background-color: rgba(229, 9, 20, 0.15);
            color: #ff6b6b; font-size: 0.65rem; font-weight: 700;
            padding: 2px 8px; border-radius: 12px; margin-left: 5px;
            white-space: nowrap; text-transform: uppercase; border: 1px solid rgba(229, 9, 20, 0.3);
        }
        
        /* LINHA E TEXTO DE RODAPÉ */
        .card-divider {
            border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 15px 0 10px;
        }

        .disclaimer-tv {
            font-size: 0.7rem; color: #777; margin-bottom: 15px;
            text-align: left; padding-left: 10px; line-height: 1.3;
        }

        /* Highlight Amarelo Pulsante */
        .discount-highlight {
            color: #FFD700; font-size: 0.9rem; font-weight: 700;
            margin-bottom: 5px; display: block; text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5); animation: pulseText 2s infinite;
             display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .discount-highlight i { color: #FFD700; font-size: 1.1rem; }
        
        @keyframes pulseText {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(0.98); }
        }

        .offer-price-hero, .preco { font-size: 2.2rem; font-weight: 800; color: white; margin-bottom: 20px; }
        .offer-price-hero small, .preco small { font-size: 1rem; font-weight: 400; color: #aaa; }

        /* --- BOTÃO HERO (SÓLIDO E PULSANTE) --- */
        .btn-hero-cta {
            display: block; width: 100%; padding: 15px;
            background: var(--gradient-red); color: white;
            font-weight: 900; text-transform: uppercase; border: none; border-radius: 8px;
            font-size: 1.1rem; cursor: pointer; box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
            transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
            animation: pulseBtn 2s infinite;
        }
        .btn-hero-cta:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(229, 9, 20, 0.7); }

        /* --- BOTÃO DOS PLANOS (OUTLINE) --- */
        .btn-card {
            background: transparent;
            color: white;
            padding: 15px 0;
            border-radius: 4px;
            font-weight: 900;
            text-transform: uppercase;
            border: 1px solid white;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
            background-color: var(--primary-red); z-index: -1; transition: width 0.3s ease;
        }

        .btn-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
            transform: translateY(-2px);
        }

        .btn-card:hover::before { width: 100%; }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulseBtn {
            0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(229, 9, 20, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
        }

        /* --- 4. PLANOS --- */
        .planos { 
            padding: 80px 0;
            background: linear-gradient(to bottom, #000, rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .filtro-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
        .btn-filtro {
            background: transparent; border: none; color: var(--text-gray); font-size: 1.1rem;
            font-weight: 700; padding: 10px 20px; cursor: pointer; position: relative; transition: 0.3s;
            font-family: 'Montserrat', sans-serif;
        }
        .btn-filtro::after {
            content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 50%;
            background-color: var(--primary-red); transition: 0.3s; transform: translateX(-50%);
        }
        .btn-filtro:hover, .btn-filtro.ativo { color: white; }
        .btn-filtro.ativo::after { width: 80%; }
        
        /* AQUI É O AJUSTE PRINCIPAL */
        .planos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding-top: 30px; }
        
        /* CARD: Tamanho exato do código antigo, visual do novo */
        .card {
            /* Visual (Novo) */
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(20px); 
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            position: relative;
            overflow: visible;
            transition: transform 0.3s, border-color 0.3s;

            /* Tamanho e Comportamento (Antigo) */
            flex: 1 1 280px;
            max-width: 320px; /* Isso impede de ficar gigante */
            min-width: 260px;
            display: flex; flex-direction: column; justify-content: space-between;
        }

        .card.escondido { display: none; }
        .card.fade-in { animation: fadeIn 0.5s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        
        .card:hover { 
            transform: translateY(-5px); /* Movimento sutil igual antigo */
            border-color: var(--primary-red); 
            box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2); 
        }
        
        /* TAG DE DESCONTO */
        .tag-desconto {
            position: absolute; top: -15px; left: -15px; 
            background: var(--primary-red); color: white;
            width: 45px; height: 45px; border-radius: 50%; 
            display: flex; align-items: center; justify-content: center;
            font-weight: 900; font-size: 1.1rem; 
            box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
            z-index: 10;
        }

        /* Ícone de Serviço no Canto */
        .service-icon-corner {
            position: absolute; top: 25px; right: 25px;
            font-size: 1.8rem; color: #777;
            transition: 0.3s;
        }
        .card:hover .service-icon-corner { color: var(--primary-red); }

        /* DESTAQUE GERAL (USADO NO 500 E 600) */
        .card.destaque {
            border: 2px solid var(--primary-red); 
            background: rgba(229, 9, 20, 0.05); 
            z-index: 2;
            /* Removi o transform: scale(1.05) para manter o tamanho padrão do antigo */
        }
        
        .card.destaque:hover { 
            transform: translateY(-5px); 
        }
        
        .badge-destaque-topo {
            position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
            background: var(--gradient-red); color: white;
            padding: 8px 20px; border-radius: 30px;
            font-weight: 800; font-size: 0.85rem; text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(229, 9, 20, 0.5);
            white-space: nowrap; z-index: 10; display: flex; align-items: center; gap: 8px;
        }
/* --- 5. VANTAGENS (Código Unificado) --- */

.vantagens { 
    padding: 80px 0; 
    background-color: #242424; /* Cor do fundo da seção */
    border-bottom: 1px solid #222; 
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; /* Impede que a luz da animação vaze a tela */
}

/* Configuração do Grid (Flexbox + Posicionamento para a linha) */
.vantagens-grid { 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    gap: 40px; 
    text-align: center; 
    position: relative; /* Necessário para a linha absoluta */
    z-index: 1;
}

/* --- EFEITO DE LINHA CONECTANDO (Back-end) --- */

/* 1. O "Cabo" Fixo (Linha Cinza) */
.vantagens-grid::before {
    content: '';
    position: absolute;
    top: 55px; /* Altura para passar no meio dos ícones */
    left: 15%; 
    right: 15%; 
    height: 2px;
    background: rgba(255, 255, 255, 0.1); 
    z-index: -1; /* Fica atrás de tudo */
}

/* 2. O "Fluxo de Dados" (Luz Vermelha Correndo) */
.vantagens-grid::after {
    content: '';
    position: absolute;
    top: 55px; /* Mesma altura do cabo */
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    z-index: -1;
    background-size: 50% 100%; 
    background-repeat: no-repeat;
    animation: dataFlow 3s infinite linear;
    opacity: 0.8;
}

/* Animação da Luz percorrendo a linha */
@keyframes dataFlow {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* --- ESTILO DOS ITENS --- */
.vantagem-item {
    /* O background igual ao da seção serve para "cortar" a linha atrás do ícone */
    background: #242424; 
    z-index: 2;
    padding: 20px;
    border-radius: 15px; /* Arredondado suave */
    transition: transform 0.3s ease;
    cursor: default;
}

.vantagem-item i {
    font-size: 3rem; 
    color: var(--primary-red); 
    margin-bottom: 20px;
    display: inline-block; /* Necessário para as animações de transformação funcionarem */
}

.vantagem-item h3 { margin-bottom: 10px; font-size: 1.5rem; color: white; }
.vantagem-item p { color: var(--text-gray); max-width: 280px; margin: 0 auto; }

/* --- ANIMAÇÕES DOS ÍCONES (HOVER) --- */

/* 1. Foguete Treme */
.vantagem-item:hover .fa-rocket {
    animation: tremer 0.5s infinite linear;
}

/* 2. Fone Balança */
.vantagem-item:hover .fa-headset {
    animation: balancar 1s infinite ease-in-out;
}

/* 3. Escudo Pulsa */
.vantagem-item:hover .fa-shield-alt {
    animation: pulsar 1.5s infinite;
}

/* Keyframes das Animações */
@keyframes tremer {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

@keyframes balancar {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    .vantagens-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px; 
    }

    /* Transforma a linha em Vertical no celular */
    .vantagens-grid::before,
    .vantagens-grid::after {
        width: 2px;
        height: 80%; /* Altura total */
        top: 10%;
        left: 50%; /* Centralizado */
        right: auto;
        transform: translateX(-50%);
    }

    /* Muda a direção da luz para descer */
    .vantagens-grid::after {
        background: linear-gradient(180deg, transparent, var(--primary-red), transparent);
        background-size: 100% 50%;
        animation: dataFlowVertical 3s infinite linear;
    }

    @keyframes dataFlowVertical {
        0% { background-position: 0 -100%; }
        100% { background-position: 0 200%; }
    }
}
        
        
        
        .vantagem-item { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
        .vantagem-item.aparecer { opacity: 1; transform: translateY(0); }
        .vantagem-item:nth-child(1) { transition-delay: 0.1s; }
        .vantagem-item:nth-child(2) { transition-delay: 0.3s; }
        .vantagem-item:nth-child(3) { transition-delay: 0.5s; }

        .vantagem-item i { font-size: 3rem; color: var(--primary-red); margin-bottom: 20px; }
        .vantagem-item h3 { margin-bottom: 10px; font-size: 1.5rem; }
        .vantagem-item p { color: var(--text-gray); max-width: 280px; margin: 0 auto; }

        /* --- 6. FAQ --- */
        .faq-section { padding: 80px 0; background-color: #050505; }
        .faq-content { display: flex; align-items: flex-start; gap: 50px; }
        .faq-image { flex: 1; display: flex; justify-content: center; align-items: center; min-height: 300px; }
        .faq-image i {
            font-size: 14rem; background: -webkit-linear-gradient(#ff4d4d, #800000);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.5));
            transform: rotate(-10deg) translateY(-20px); transition: transform 0.3s ease;
        }
        .faq-image i:hover { transform: rotate(0deg) scale(1.1); }
        .faq-list { flex: 1.5; }
        .faq-item { border-bottom: 1px solid #222; margin-bottom: 10px; }
        .faq-question {
            width: 100%; background: none; border: none; color: white; padding: 20px 0;
            text-align: left; font-size: 1.1rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
            cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s;
        }
        .faq-question:hover { color: var(--primary-red); }
        .faq-question i { transition: transform 0.3s; }
        .faq-question.active { color: var(--primary-red); }
        .faq-question.active i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }
        .faq-answer p { padding-bottom: 20px; }

        /* --- 7. LOCALIZAÇÃO --- */
        .localizacao { padding: 80px 0; background-color: var(--bg-dark); }
        .conteudo-localizacao { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .mapa iframe { border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
        .info-location { padding: 20px; }
        .info-bloco { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
        .info-bloco i { font-size: 2rem; color: var(--primary-red); margin-top: 5px; }
        .info-bloco p { color: var(--text-gray); font-size: 1.1rem; }
        .vermelho { color: var(--primary-red); font-weight: bold; }

        /* --- 8. TV STREAMING --- */
        .tv-streaming {
            position: relative; padding: 100px 0; text-align: center;
            background: url('https://images.unsplash.com/photo-1593784991095-a20506948430?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed;
            background-size: cover;
        }
        .tv-streaming::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.85);
        }
        .tv-content { position: relative; z-index: 2; }
        .tv-content h2 { font-size: 2.2rem; color: white; margin-bottom: 15px; font-weight: 800; }
        .tv-content p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 40px; }
        .tv-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 50px; align-items: center; }
        .tv-logos img { max-height: 50px; width: auto; filter: grayscale(0%); transition: transform 0.3s; }
        .tv-logos img:hover { transform: scale(1.1); }

        /* --- 9. FOOTER --- */
        footer { 
            background-color: #000; 
            padding: 60px 0 20px; 
            border-top: 2px solid var(--primary-red);
        }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        
        .footer-logo img { max-width: 150px; margin-bottom: 20px; filter: brightness(100%); }
        .footer-col h3 { color: white; font-size: 1.2rem; margin-bottom: 20px; border-left: 3px solid var(--primary-red); padding-left: 10px; text-transform: uppercase; }
        .footer-col a { display: block; color: var(--text-gray); margin-bottom: 10px; font-size: 0.95rem; }
        .footer-col a:hover { color: var(--primary-red); padding-left: 5px; }
        .footer-col p { color: var(--text-gray); margin-bottom: 10px; font-size: 0.95rem; }

        .footer-social { display: flex; gap: 15px; margin-top: 10px; }
        .footer-social img { width: 24px; height: 24px; transition: transform 0.3s ease; }
        .footer-social img:hover {
            transform: scale(1.33);
            filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7466%) hue-rotate(353deg) brightness(93%) contrast(114%);
        }

        .footer-bottom { border-top: 1px solid #222; padding-top: 20px; text-align: center; color: #555; font-size: 0.8rem; display: flex; flex-direction: column; gap: 10px; align-items: center; }
        
        .github-dev { display: flex; align-items: center; gap: 5px; color: #777; }
        .github-dev i { font-size: 1.2rem; color: var(--primary-red); }
        .github-dev a { color: white; font-weight: bold; }
        .github-dev a:hover { text-decoration: underline; color: var(--primary-red); }

        /* --- BOTÃO WHATSAPP --- */
        .whatsapp-button {
            position: fixed; bottom: 20px; left: 20px; z-index: 999;
            transition: transform 0.3s ease;
        }
        .whatsapp-button img { width: 50px; height: 50px; display: block; } 
        
        .whatsapp-button .tooltip {
            position: absolute; left: 60px; top: 50%; transform: translateY(-50%);
            background-color: #25d366; color: white; padding: 5px 10px; border-radius: 5px;
            white-space: nowrap; opacity: 0; pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            font-size: 14px; font-weight: bold;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
        }
        .whatsapp-button:hover { transform: scale(1.1); }
        .whatsapp-button:hover .tooltip { opacity: 1; transform: translateY(-50%) translateX(5px); }

        /* --- MODAIS (GERAL) --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85);
            z-index: 3000; display: none; justify-content: center; align-items: center; 
        }
        .modal-container {
            background-color: var(--bg-card); border: 2px solid var(--primary-red); padding: 30px;
            border-radius: 10px; width: 90%; max-width: 500px; box-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
            position: relative; animation: slideDown 0.3s ease;
        }
        @keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        .modal-header h2 { color: white; margin-bottom: 20px; border-left: 4px solid var(--primary-red); padding-left: 15px; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 5px; color: var(--text-gray); }
        .form-group input { width: 100%; padding: 12px; background-color: #000; border: 1px solid #333; color: white; border-radius: 5px; outline: none; }
        .form-group input:focus { border-color: var(--primary-red); }
        
        .form-buttons { display: flex; gap: 15px; margin-top: 20px; }
        .btn-submit { flex: 1; padding: 12px; background-color: var(--primary-red); color: white; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
        .btn-submit:hover { background-color: #b0060e; }
        .btn-close { flex: 1; padding: 12px; background-color: transparent; border: 1px solid #555; color: #ccc; border-radius: 5px; cursor: pointer; font-weight: bold; transition: 0.3s;}
        .btn-close:hover { background-color: #333; }

        /* --- POPUP DE MENSAGEM --- */
        #popup-mensagem {
            display: none; position: fixed; top: 20px; right: 20px;
            z-index: 4000; padding: 20px; border-radius: 8px;
            color: white; font-weight: bold; box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            min-width: 300px; animation: slideInRight 0.5s ease;
        }

        .popup-sucesso { background-color: #1f9c44; border-left: 5px solid #146c2e; }
        .popup-erro { background-color: #E50914; border-left: 5px solid #8b060c; }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* --- MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .mobile-menu { display: block; }
            .faq-content { flex-direction: column; }
            .faq-image { display: none; } 
            .conteudo-localizacao { grid-template-columns: 1fr; }
            .tv-logos { gap: 20px; }
            .tv-logos img { max-height: 40px; }

            /* HERO MOBILE */
            .hero-layout { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 30px; }
            
            .hero-branding { 
                align-items: center; 
                text-align: center; 
                padding-right: 0; 
                min-width: auto;
            }

            .hero-title-pro { font-size: 2.5rem; }
            .services-row { justify-content: center; }

            .hero-offer { justify-content: center; width: 100%; }
            .offer-card-hero { max-width: 100%; }
            
            /* MENU MOBILE */
            .nav-links {
                position: absolute;
                top: 70px; right: 0; width: 100%;
                background-color: rgba(5, 5, 5, 0.98);
                flex-direction: column; align-items: center; gap: 0;
                border-bottom: 2px solid var(--primary-red);
                max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
            }
            .nav-links.active { max-height: 500px; padding: 20px 0; }
            .nav-links a { display: block; padding: 15px; width: 100%; text-align: center; border-bottom: 1px solid #222; }
            .btn-outline { margin-top: 15px; display: inline-block; width: auto; }
            
            .notification-btn { margin-right: 0; padding: 15px; width: 100%; justify-content: center; }
            .badge-notificacao { top: 10px; right: 45%; }
        }
