/* CSS Variáveis de Identidade: IPTV BR Play (Laranja Vibrante + Escuro Premium) */
:root {
    --brand-primary: #FF6A00;
    --brand-primary-light: #FF8833;
    --brand-primary-dark: #CC5500;
    --brand-secondary: #FFB347;

    --bg-base: #0B0A0E;
    --bg-surface: #121016;
    --bg-surface-glass: rgba(25, 22, 30, 0.65);
    
    --text-primary: #FFFFFF;
    --text-secondary: #A19FAF;
    --text-muted: #6B687B;

    --border-glass: rgba(255, 255, 255, 0.08);
    
    --transition-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
    
    --width-container: 1100px;
}

/* Reset Base (Extremamente leve para LCP) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilitários Container & Layout */
.container {
    width: 100%;
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia Avançada */
h1, h2, h3, h4 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Componentes de Vidro (Glassmorphism) */
.glass-panel {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

/* Navegação (Navbar Estreita) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    background: rgba(11, 10, 14, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.logo i {
    font-size: 28px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary-dark));
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--transition-snappy), box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--brand-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--brand-primary);
    transition: all 0.3s var(--transition-snappy);
}

.btn-primary-outline:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-outline:hover {
    background: var(--border-glass);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
    position: relative;
}

.badge-seo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--brand-secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 106, 0, 0.2);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--bg-base);
    margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }

.hero-trust p {
    font-size: 13px;
    color: var(--text-secondary);
}
.hero-trust strong { color: var(--text-primary); font-weight: 600; }

/* Mockup Imagens da TV Hero */
.hero-image-area {
    position: relative;
}

.tv-mockup {
    position: relative;
    width: 100%;
}

.main-card {
    padding: 10px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0, 0.6);
}

.tv-screen {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.play-button-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(255, 106, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: white;
    box-shadow: 0 0 20px rgba(255,106,0,0.5);
}

.floating-badge {
    position: absolute;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.badge-1 {
    top: -20px; right: -20px;
    color: #FFF;
}
.badge-1 i { color: #4ADE80; font-size: 18px; }

.badge-2 {
    bottom: 30px; left: -30px;
    color: #FFF;
}
.badge-2 i { color: #F87171; font-size: 18px; }

/* Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}
.glow-1 {
    top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: var(--brand-primary);
}
.glow-2 {
    bottom: -10%; right: -10%;
    width: 500px; height: 500px;
    background: var(--brand-secondary);
}

/* Sections Universais */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefícios Grid */
.benefits-section { margin-top: 50px; padding: 100px 0; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    transition: transform 0.4s var(--transition-snappy), background 0.4s;
}
.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 22, 30, 0.85);
}
.icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--brand-primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}
.benefit-card h3 {
    font-size: 22px; margin-bottom: 15px;
}
.benefit-card p {
    color: var(--text-secondary); font-size: 15px;
}

/* Preços */
.pricing-section { padding: 100px 0; background: rgba(0,0,0,0.3); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.popular-plan {
    background: var(--bg-surface);
    border: 2px solid var(--brand-primary);
    border-radius: 24px;
    position: relative;
    transform: scale(1.05); /* Quebra de padrao pra chamar atençao visal */
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 40px rgba(255,106,0,0.05);
}
.badge-popular {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px; letter-spacing: 1px;
}
.plan-header { text-align: center; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border-glass);}
.plan-name { font-size: 20px; font-weight: 600; color: var(--text-secondary); margin-bottom: 15px;}
.plan-price { display: flex; align-items: center; justify-content: center;}
.currency { font-size: 20px; font-weight: 600; margin-top: -15px; color: var(--brand-primary); margin-right: 5px; }
.amount { font-size: 54px; font-weight: 900; line-height: 1; }
.period { font-size: 16px; color: var(--text-secondary); align-self: flex-end; margin-bottom: 8px; margin-left: 5px;}
.savings { color: #4ADE80; font-size: 13px; font-weight: 600; margin-top: 10px; }

.plan-features { list-style: none; flex-grow: 1; margin-bottom: 40px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; font-size: 15px; }
.plan-features li i { color: var(--brand-primary); font-size: 20px; }
.plan-features li.accent i { color: #FBBF24; }
.w-100 { width: 100%; }

/* FAQ Section */
.faq-section { padding: 100px 0; }
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--brand-primary);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-secondary);
}
.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 300px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer Seo-Focused */
.site-footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 20px;
    background: #000;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 14px; margin-top: 20px; max-width: 300px;
}
.footer-links {
    display: flex;
    justify-content: space-around;
}
.link-col h4 {
    font-size: 16px; margin-bottom: 20px; color: var(--text-primary);
}
.link-col a {
    display: block; color: var(--text-secondary); font-size: 14px;
    text-decoration: none; margin-bottom: 12px; transition: color 0.2s;
}
.link-col a:hover { color: var(--brand-primary); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: var(--text-muted);
    font-size: 13px;
}

/* Flutuante do Zap */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

/* Micro-animations JS Ready */
.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 106, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}
.floating-wpp.pulse-anim {
    animation: pulse-wpp 2s infinite;
}
@keyframes pulse-wpp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-anim { animation: floating 6s ease-in-out infinite; }
.float-anim-delayed { animation: floating 6s ease-in-out infinite 1s; }
.float-anim-delayed-2 { animation: floating 6s ease-in-out infinite 2s; }
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Scroll reveal states */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-snappy);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE (Mobile First Optimization) */
@media (max-width: 991px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 40px; }
    .popular-plan { transform: scale(1); }
    .hero-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px;}
    .hero-title { font-size: 38px; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-trust { justify-content: center; }
    .badge-seo { margin: 0 auto 20px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center;}
    .footer-links { flex-direction: column; gap: 30px; }
    .tv-screen { display: none; } /* Ocultar no mobile se pesar layout. mock custom p/ mobile ajuda. */
    .hero-section { padding-top: 120px; padding-bottom: 40px; min-height: auto;}
    .main-card { padding: 3px; }
    .tv-screen { display: block; } /* Voltar tv screen */
    .badge-2 { bottom: 10px; left: 10px;}
}
