/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo i {
    color: #e50914;
    margin-right: 0.5rem;
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #e50914, #ff6b35);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #e50914;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(45deg, #e50914, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #e50914, #ff6b35);
    color: #fff;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.feature i {
    color: #25d366;
    font-size: 1.1rem;
}

.seo-keywords {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 10px;
    border-left: 4px solid #e50914;
}

.seo-keywords p {
    color: #fff;
    margin: 0;
}

/* TV Showcase */
.tv-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.tv-main {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-horizontal {
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: block;
}

.tv-horizontal:hover {
    transform: scale(1.02);
}

.tv-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, #e50914, #ff6b35, #ffd700);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
    animation: glow 3s ease-in-out infinite alternate;
}

.tv-side {
    position: absolute;
    z-index: 1;
}

.tv-left {
    left: -60px;
    top: 80px;
    transform: rotate(-10deg);
}

.tv-right {
    right: -60px;
    top: 100px;
    transform: rotate(10deg);
}

.tv-vertical {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
}

.tv-vertical:hover {
    opacity: 1;
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(229, 9, 20, 0.15);
    border: 2px solid rgba(229, 9, 20, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 28px;
    color: #e50914;
}

.floating-icon.film {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon.film::before {
    content: '\f008';
}

.floating-icon.gamepad {
    top: 65%;
    right: 12%;
    animation-delay: 2s;
}

.floating-icon.gamepad::before {
    content: '\f11b';
}

.floating-icon.futbol {
    bottom: 25%;
    left: 12%;
    animation-delay: 4s;
}

.floating-icon.futbol::before {
    content: '\f1e3';
}

.floating-icon.music {
    top: 35%;
    right: 20%;
    animation-delay: 1s;
}

.floating-icon.music::before {
    content: '\f001';
}

/* Planos Section */
.planos {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
}

.planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23e50914" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: #ccc;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plano-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    transition: left 0.6s ease;
}

.plano-card:hover::before {
    left: 100%;
}

.plano-card:hover {
    transform: translateY(-15px);
    border-color: #e50914;
    box-shadow: 0 25px 50px rgba(229, 9, 20, 0.3);
}

.plano-card.popular {
    border-color: #e50914;
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.plano-card.popular:hover {
    transform: scale(1.08) translateY(-15px);
}

.plano-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #e50914, #ff6b35);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.plano-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    color: #e50914;
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0.2rem;
}

.period {
    color: #ccc;
    font-size: 1.2rem;
}

.savings {
    color: #25d366;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.plano-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plano-features li {
    color: #ccc;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.plano-features i {
    color: #25d366;
    font-size: 1.1rem;
    width: 20px;
}

.btn-plano {
    background: linear-gradient(45deg, #e50914, #ff6b35);
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-plano:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.4);
}

/* Canais Section */
.canais {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.canal-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.canal-category:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.canal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e50914, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.canal-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.canal-icon i {
    color: #fff;
    font-size: 2.5rem;
}

.canal-category h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.canal-category p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(229, 9, 20, 0.5);
    transform: translateX(10px);
}

.faq-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Contato Section */
.contato {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contato-info h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contato-info p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contato-item:hover {
    border-color: #e50914;
    transform: translateX(10px);
}

.contato-item i {
    color: #e50914;
    font-size: 2rem;
}

.contato-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contato-item p {
    color: #ccc;
    margin: 0;
}

.contato-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.contato-cta h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contato-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(229, 9, 20, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e50914;
}

.footer-social h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(229, 9, 20, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e50914;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
    white-space: nowrap;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glow {
    0% { opacity: 0.3; filter: blur(25px); }
    100% { opacity: 0.5; filter: blur(15px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tv-showcase {
        height: 300px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .tv-horizontal {
        width: 250px;
        height: 150px;
    }
    
    .tv-vertical {
        width: 80px;
        height: 110px;
    }
    
    .tv-left {
        left: -30px;
        top: 50px;
        transform: rotate(-8deg);
    }
    
    .tv-right {
        right: -30px;
        top: 70px;
        transform: rotate(8deg);
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plano-card.popular {
        transform: none;
    }
    
    .canais-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon::before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tv-showcase {
        height: 250px;
    }
    
    .tv-horizontal {
        width: 220px;
        height: 140px;
    }
    
    .tv-vertical {
        width: 80px;
        height: 110px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .canal-category,
    .plano-card {
        padding: 1.5rem;
    }
}