/* --- VARIÁVEIS --- */
:root {
    --primary-green: #00e676; 
    --primary-red: #e50914;   
    --bg-dark: #080808;       
    --bg-card: #121212;       
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); scroll-behavior: smooth; }

body { background-color: var(--bg-dark); color: var(--text-white); overflow-x: hidden; }

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- TOP BAR --- */
.top-bar-offer {
    background: linear-gradient(90deg, #d32f2f, #b71c1c);
    color: white; padding: 8px; text-align: center; font-size: 0.85rem; font-weight: 600;
}

/* --- HEADER --- */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: rgba(8,8,8,0.95); backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #222;
}

.logo-container a { display: flex; align-items: center; gap: 10px; }

/* Mantém a logo controlada */
.logo-img { 
    width: 50px; 
    height: 50px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 2px solid var(--primary-green); 
}

.logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.highlight { color: var(--primary-green); }

.desktop-nav ul { display: flex; gap: 25px; }
.desktop-nav a { color: var(--text-gray); font-weight: 500; font-size: 0.95rem; }
.desktop-nav a:hover { color: var(--primary-green); }

.btn-neon {
    border: 1px solid var(--primary-green); color: var(--primary-green);
    padding: 8px 20px; border-radius: 50px; font-weight: 600; display: flex; gap: 8px; align-items: center;
}
.btn-neon:hover { background: var(--primary-green); color: black; box-shadow: 0 0 15px rgba(0,230,118,0.3); }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- MENU MOBILE --- */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.95); z-index: 2000;
    display: none; /* Escondido no PC */
    flex-direction: column; justify-content: center; align-items: center;
}
.mobile-menu-logo { width: 120px; height: auto; margin-bottom: 30px; border-radius: 50%; }
.mobile-links li { margin-bottom: 20px; font-size: 1.5rem; text-align: center; }
.mobile-links a { color: white; }
.close-menu-btn { position: absolute; top: 20px; right: 30px; font-size: 3rem; cursor: pointer; color: white;}

/* --- HERO (CORREÇÃO APLICADA AQUI) --- */
.hero {
    position: relative;
    padding: 60px 5%;
    min-height: 80vh;
    overflow: hidden;
    /* Centraliza o conteúdo verticalmente */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-glow {
    position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 70%); filter: blur(60px); z-index: -1;
}

/* NOVA REGRA: Isso força o Texto e a Imagem a ficarem lado a lado */
.hero-content {
    display: flex; /* Transforma em linha */
    align-items: center; /* Alinha verticalmente no centro */
    justify-content: space-between; /* Separa os dois itens */
    width: 100%;
    max-width: 1200px; /* Limita a largura para não esticar demais em telas grandes */
    gap: 50px; /* Espaço entre texto e imagem */
    z-index: 2;
}

.hero-text { 
    flex: 1; /* Ocupa metade do espaço */
    max-width: 600px; 
}

.hero h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.text-gradient { background: linear-gradient(to right, #fff, #b3b3b3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.tag-live {
    background: rgba(0,230,118,0.1); color: var(--primary-green);
    padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; border: 1px solid rgba(0,230,118,0.2);
}
.dot-pulse { width: 8px; height: 8px; background: var(--primary-green); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.hero-p { color: var(--text-gray); font-size: 1rem; margin-bottom: 30px; line-height: 1.5; max-width: 90%; }

.price-hero { margin-bottom: 30px; display: flex; align-items: baseline; gap: 5px; }
.p-small { color: #888; font-size: 0.9rem; }
.p-big { color: var(--primary-green); font-size: 2rem; font-weight: 800; }

.cta-group { display: flex; gap: 15px; }
.btn-primary-hero {
    background: var(--primary-green); color: black; padding: 15px 30px;
    border-radius: 8px; font-weight: 800; box-shadow: 0 10px 20px rgba(0,230,118,0.2);
}
.btn-primary-hero:hover { transform: translateY(-3px); }

.btn-secondary-hero {
    border: 1px solid #333; color: white; padding: 15px 30px; border-radius: 8px; font-weight: 600;
}
.btn-secondary-hero:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* Configuração da imagem para ficar do lado direito */
.hero-image { 
    flex: 1; /* Ocupa a outra metade */
    display: flex; 
    justify-content: flex-end; /* Alinha a imagem à direita */
    position: relative; 
}
.glass-card-tv { position: relative; width: 100%; max-width: 500px; }
.tv-img { width: 100%; border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid #333; }
.floating-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: #1a1a1a; padding: 10px 20px; border-radius: 10px; border: 1px solid var(--primary-green);
    display: flex; align-items: center; gap: 10px; font-weight: bold; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.floating-badge i { color: var(--primary-green); }

/* --- PROMO RED BANNER --- */
.promo-strip-red {
    background: radial-gradient(circle, #5e0000 0%, #1a0000 100%);
    padding: 60px 5%; text-align: center; border-top: 1px solid #440000; border-bottom: 1px solid #440000;
}
.promo-content h2 { font-size: 2rem; color: white; margin-bottom: 10px; font-weight: 800; }
.promo-content p { color: #ffcccc; margin-bottom: 30px; }
.btn-red-pill {
    background: #ff0000; color: white; padding: 15px 40px; border-radius: 50px;
    font-weight: bold; font-size: 1.1rem; box-shadow: 0 0 20px rgba(255,0,0,0.4); display: inline-block;
}
.btn-red-pill:hover { background: white; color: #ff0000; }

/* --- PLATAFORMAS --- */
.plataformas-section { padding: 60px 5%; background: white; color: black; text-align: center; }
.section-title { font-size: 2rem; margin-bottom: 10px; color: inherit; }
.section-subtitle { color: #666; margin-bottom: 40px; }

.logos-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.logo-card { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.logo-card img { max-width: 100%; max-height: 100%; transition: 0.3s; }
.logo-card:hover img { transform: scale(1.1); }

/* --- COMPATIBILIDADE --- */
.compatibility-section { padding: 60px 5%; background: var(--bg-card); text-align: center; }
.compatibility-section .section-title { color: white; }

.devices-container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.device-card {
    background: #1f1f1f; padding: 25px; border-radius: 12px; width: 200px;
    transition: 0.3s; border: 1px solid transparent;
}
.device-card:hover { border-color: var(--primary-green); transform: translateY(-5px); }
.device-card i { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 15px; }
.device-card h3 { font-size: 1rem; margin-bottom: 5px; color: white; }

/* --- PREÇOS --- */
.pricing-section { padding: 80px 5%; background: var(--bg-dark); text-align: center; }
.pricing-section .section-title { color: white; }
.pricing-container { 
    display: flex; justify-content: center; align-items: center; 
    gap: 30px; flex-wrap: wrap; padding-bottom: 20px;
}

.pricing-card {
    background: #141414; border: 1px solid #333; border-radius: 15px;
    padding: 40px 30px; width: 320px; position: relative; transition: 0.3s; height: auto;
}
.pricing-card.destaque {
    border: 2px solid var(--primary-green);
    background: linear-gradient(180deg, rgba(0,230,118,0.05) 0%, #141414 100%); 
    transform: scale(1.05); z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.tag-mais-vendido, .tag-promo-red, .tag-eco {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; width: max-content;
}
.tag-mais-vendido { background: var(--primary-green); color: black; }
.tag-promo-red { background: #ff0000; color: white; }
.tag-eco { background: #333; color: white; border: 1px solid #555; }

.plano-nome { font-size: 1.5rem; margin-bottom: 15px; color: white; }
.plano-preco { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 5px; }
.plano-preco span { font-size: 1rem; color: #888; font-weight: 400; }
.lista-beneficios { text-align: left; margin: 25px 0; }
.lista-beneficios li { margin-bottom: 12px; color: #ccc; font-size: 0.95rem; }
.lista-beneficios i { color: var(--primary-green); margin-right: 10px; }

.btn-assinar-card {
    display: block; width: 100%; padding: 15px; background: #333; color: white;
    border-radius: 8px; font-weight: 700;
}
.pricing-card.destaque .btn-assinar-card { background: var(--primary-green); color: black; }
.btn-assinar-card:hover { filter: brightness(1.2); }
.btn-pulse { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn { 0% { box-shadow: 0 0 0 0 rgba(0,230,118,0.4); } 70% { box-shadow: 0 0 0 10px rgba(0,230,118,0); } 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); } }

/* --- FAQ & FEEDBACK --- */
.faq-section { padding: 60px 5%; max-width: 800px; margin: 0 auto; }
.faq-item { background: #1a1a1a; margin-bottom: 15px; border-radius: 8px; border: 1px solid #333; }
.faq-item summary { padding: 20px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; }
.faq-resposta { padding: 20px; border-top: 1px solid #333; color: #ccc; line-height: 1.5; }

.feedback-section { padding: 60px 0; overflow: hidden; background: #111; }
.slide-track { display: flex; gap: 20px; animation: scroll 30s linear infinite; width: max-content; }
.feedback-img { height: 250px; border-radius: 10px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* --- FOOTER --- */
.main-footer { background: black; padding: 60px 5% 20px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo img { width: 30px; border-radius: 50%; }
.footer-col p { color: #888; font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 { margin-bottom: 20px; color: white; }
.payment-icons i { font-size: 2rem; margin-right: 10px; color: #ccc; }
.ssl-badge { margin-top: 15px; border: 1px solid #444; padding: 5px 10px; display: inline-block; border-radius: 5px; font-size: 0.8rem; color: #00e676; }
.footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 20px; color: #444; font-size: 0.8rem; }

/* --- EXTRAS --- */
.floating-btn {
    position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white;
    padding: 12px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999; display: flex; gap: 10px; align-items: center;
}
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: center; z-index: 2000;
}
.modal-box {
    background: #1a1a1a; padding: 30px; border-radius: 15px; width: 90%; max-width: 400px;
    position: relative; border: 1px solid #333;
}
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; }
.modal-input {
    width: 100%; padding: 12px; margin-bottom: 15px; background: #000;
    border: 1px solid #333; color: white; border-radius: 5px;
}
.btn-submit { width: 100%; padding: 12px; background: #25d366; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; }

/* --- MOBILE --- */
@media (max-width: 900px) {
    .desktop-nav, .btn-neon { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* No celular, mudamos a direção para coluna */
    .hero-content {
        flex-direction: column; 
        text-align: center;
    }
    
    .hero-image {
        justify-content: center; /* Centraliza a imagem no celular */
        margin-top: 30px;
    }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .pricing-card.destaque {
        transform: scale(1); margin: 20px 0; 
        box-shadow: none; border: 2px solid var(--primary-green); 
    }
}