/* NETV Styles - Diseño Netflix Renovado */

/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores NETV */
    --primary-color: #00D4C4;
    --secondary-color: #00FF88;
    --accent-color: #C5FF00;
    --dark-color: #0B1A48;
    --text-color: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #1a1a1a;
    --border-color: #E5E5E5;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, #1a2b5c 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    
    /* Tipografía */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;
    
    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transiciones */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.text-dark {
    color: var(--text-color) !important;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: var(--text-white) !important;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    border-radius: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
}

/* Asegurar separación adecuada entre elementos del menú */
.nav-item {
    position: relative;
    isolation: isolate;
}

/* Separación extra para el botón de pago */
.nav-item:has(.payment-nav-button) {
    margin-left: var(--spacing-md);
}

/* Desktop menu styles */
@media (min-width: 769px) {
    .nav-link {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        padding: var(--spacing-sm) 0;
        position: relative;
        transition: all var(--transition-normal);
        background: transparent;
        z-index: 1;
        isolation: isolate;
    }
    
    /* Asegurar que el botón de pago no sea afectado por las reglas generales */
    .nav-link.payment-nav-button {
        z-index: 10 !important;
        pointer-events: auto !important;
        isolation: isolate !important;
    }
    


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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width var(--transition-normal);
    }

    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-link.active::after {
        width: 100%;
    }
    
    /* Evitar parpadeo en enlaces activos al hacer hover */
    .nav-link.active:hover::after {
        width: 100% !important;
        transition: none;
    }
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all var(--transition-normal);
}

.whatsapp-contact:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-contact i {
    font-size: var(--font-size-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: var(--font-size-xs);
    font-weight: 500;
    opacity: 0.8;
}

.contact-number {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all var(--transition-normal);
}

/* Botón de Pago en Navegación */
.payment-nav-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    animation: pulsePayment 2s infinite !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    margin-left: var(--spacing-md) !important;
    isolation: isolate !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.payment-nav-button::after {
    display: none !important;
}

.payment-nav-button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6) !important;
    color: white !important;
}

.payment-nav-button i {
    margin-right: 8px;
    font-size: 14px;
}

.payment-nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.payment-nav-button:hover::before {
    left: 100%;
}

@keyframes pulsePayment {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4), 0 0 0 0 rgba(238, 90, 36, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4), 0 0 0 4px rgba(238, 90, 36, 0);
        transform: scale(1.02);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Espacio para el header fijo */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 72, 0.8) 0%, rgba(0, 212, 196, 0.3) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.hero-content {
    max-width: 600px;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
    margin-top: -300px; /* Subir aún más el contenido */
    margin-left: 0; /* Posición natural, no forzada */
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 212, 196, 0.2);
    border: 1px solid var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-description {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: var(--font-size-lg);
    width: 24px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* NETV PLAY Section - Mejorada */
.netv-play-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a0a1a 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.netv-play-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 196, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(197, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.netv-play-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,196,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Header de la sección */
.netv-play-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.content-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 25px rgba(0, 212, 196, 0.4),
        0 0 50px rgba(0, 212, 196, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

.content-badge-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 2s linear infinite;
}

.badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
}

.section-title-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.section-description-large {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estadísticas impactantes */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0;
    position: relative;
    z-index: 3;
    justify-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 196, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 196, 0.2);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Showcase principal */
.netv-play-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 3;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Features premium */
.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 40px;
    text-align: center;
}

.feature-premium {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 196, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.feature-premium:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 212, 196, 0.2);
}

.feature-icon-premium {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 212, 196, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing highlight */
.pricing-highlight {
    position: sticky;
    top: 100px;
}

.price-card-premium {
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 212, 196, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.price-card-premium::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-dark);
    border-radius: 23px;
    z-index: -1;
}

.price-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price-amount-large {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-original {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.price-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 500;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 212, 196, 0.4);
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 212, 196, 0.6);
}

.btn-premium::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-premium:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    opacity: 0.5;
    filter: blur(15px);
    z-index: -1;
}

/* Devices showcase premium */
.devices-showcase-premium {
    position: relative;
    z-index: 3;
}

.devices-title {
    text-align: center;
    margin-bottom: 50px;
}

.devices-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.devices-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.device-premium {
    text-align: center;
    transition: transform 0.3s ease;
}

.device-premium:hover {
    transform: translateY(-15px);
}

.device-frame-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 212, 196, 0.2);
}

.device-frame-premium img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.device-premium:hover .device-frame-premium img {
    transform: scale(1.05);
}

.device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-premium:hover .device-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.device-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.device-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.device-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.device-tag {
    background: rgba(0, 212, 196, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 196, 0.3);
}

/* Laptop interface */
.laptop-screen {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    min-height: 200px;
}

.netflix-interface {
    background: linear-gradient(135deg, #141414, #1a1a1a);
    border-radius: 8px;
    padding: 15px;
    height: 100%;
    overflow: hidden;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.netv-logo-small {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.interface-nav {
    display: flex;
    gap: 15px;
}

.interface-nav span {
    color: var(--text-light);
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.interface-nav span:hover,
.interface-nav span.nav-active {
    color: var(--text-white);
    background: rgba(0, 212, 196, 0.2);
}

.interface-content {
    height: calc(100% - 60px);
    overflow: hidden;
}

/* Featured Movie */
.featured-movie {
    margin-bottom: 15px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    min-height: 80px;
}

.movie-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 212, 196, 0.3);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.movie-loading p {
    color: var(--text-light);
    font-size: 10px;
    margin: 0;
}

.featured-movie-content {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: linear-gradient(90deg, rgba(0,0,0,0.8), transparent);
}

.featured-poster {
    width: 40px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.featured-info {
    flex: 1;
    min-width: 0;
}

.featured-info h5 {
    color: var(--text-white);
    font-size: 11px;
    margin: 0 0 4px 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-info p {
    color: var(--text-light);
    font-size: 9px;
    margin: 0;
    line-height: 1.2;
}

.movie-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 8px;
    margin-top: 2px;
}

/* Trending Movies */
.trending-movies {
    margin-top: 10px;
}

.trending-movies h6 {
    color: var(--text-white);
    font-size: 10px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.mini-movies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.mini-movie {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mini-movie:hover {
    transform: scale(1.05);
}

.mini-movie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2px 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mini-movie:hover .mini-movie-overlay {
    opacity: 1;
}

.mini-movie-title {
    color: var(--text-white);
    font-size: 7px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Guarantee section */
.guarantee-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.guarantee-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Animaciones */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(0, 212, 196, 0.4), 0 0 50px rgba(0, 212, 196, 0.2); }
    50% { box-shadow: 0 8px 25px rgba(0, 212, 196, 0.6), 0 0 50px rgba(0, 212, 196, 0.4); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive para NETV PLAY */
@media (max-width: 1200px) {
    .stats-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 800px;
    }
    
    .netv-play-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .guarantee-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .price-amount-large {
        font-size: 3rem;
    }
}

/* Experiences Section */
.experiences-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
}

.section-header {
    margin-bottom: var(--spacing-3xl);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.experience-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.experience-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.8) 0%, rgba(0, 255, 136, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.experience-card:hover .experience-overlay {
    opacity: 1;
}

.experience-icon {
    background: var(--bg-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.experience-card:hover .experience-icon {
    transform: scale(1);
}

.experience-content {
    padding: var(--spacing-xl);
}

.experience-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.experience-features {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 15px;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Movies Section - Diseño Futurista Premium */
.movies-section {
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.movies-section .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.movies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.05) 0%, transparent 70%);
    z-index: 1;
    animation: lightMove 12s ease-in-out infinite;
}

.movies-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.03) 49%, rgba(0, 255, 255, 0.03) 51%, transparent 52%);
    z-index: 1;
    animation: scanLine 6s linear infinite;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
    background-size: 300% 300%;
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(255, 0, 110, 0.3),
        0 0 40px rgba(131, 56, 236, 0.2),
        0 0 60px rgba(58, 134, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
    filter: blur(5px);
}

.movies-carousel {
    position: relative;
    z-index: 2;
}

.movies-container {
    overflow: hidden;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    max-width: none;
    width: 100%;
}

.movie-slider {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
}

.movie-item {
    flex: 0 0 280px;
    height: 420px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.movie-item:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 255, 255, 0.2),
        0 0 100px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.movie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.movie-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: var(--spacing-lg);
    opacity: 1 !important;
    transition: none !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.movie-info {
    text-align: left;
    color: var(--text-white);
    width: 100%;
}

.movie-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(0, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    line-height: 1.2;
}

.movie-info p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    color: #e0e0e0;
    margin-bottom: var(--spacing-sm);
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    z-index: 2;
    position: relative;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicator.active {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
    transform: scale(1.3);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.4),
        0 0 40px rgba(0, 255, 255, 0.2);
}

.indicator.active::before {
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

/* Animaciones */
@keyframes backgroundPulse {
    0%, 100% { 
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    }
    50% { 
        background: linear-gradient(135deg, #0f0f0f 0%, #1f1f33 25%, #1b2843 50%, #144065 75%, #0f0f0f 100%);
    }
}

@keyframes lightMove {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.05) 0%, transparent 70%);
    }
    33% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(0, 255, 127, 0.05) 0%, transparent 70%);
    }
    66% {
        background: 
            radial-gradient(circle at 50% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 30% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 60%, rgba(0, 255, 127, 0.05) 0%, transparent 70%);
    }
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive para el carrusel de películas */
@media (max-width: 1400px) {
    .movie-item {
        flex: 0 0 260px;
        height: 390px;
    }
}

@media (max-width: 1200px) {
    .movies-section .container {
        max-width: 1200px;
    }
    
    .movie-item {
        flex: 0 0 240px;
        height: 360px;
    }
    
    .movie-slider {
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .movies-section .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .movie-item {
        flex: 0 0 220px;
        height: 330px;
    }
}

@media (max-width: 768px) {
    .movie-item {
        flex: 0 0 200px;
        height: 300px;
    }
    
    .movies-container {
        padding: var(--spacing-md);
    }
    
    .movie-slider {
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .movie-item {
        flex: 0 0 180px;
        height: 270px;
    }
    
    .movie-info h4 {
        font-size: var(--font-size-md);
    }
    
    .movie-info p {
        font-size: var(--font-size-xs);
    }
    

}

/* Plans Section */
#planes {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-light);
}



.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-3xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    min-width: 280px;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0fffe 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card.special-offer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    border: 2px solid rgba(0, 255, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(0, 255, 255, 0.2);
}

.plan-card.special-offer:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 255, 255, 0.3);
}

.plan-card.special-offer .plan-badge {
    background: linear-gradient(45deg, #ff006e, #ff4500);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
}

.plan-card.special-offer .currency,
.plan-card.special-offer .amount {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.plan-card.special-offer .period {
    color: rgba(255, 255, 255, 0.8);
}

.price-original {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

.device-pricing-compact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.device-pricing-compact h5 {
    color: #00ffff;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    text-align: center;
}

.device-options-compact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.device-options-compact span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.device-options-compact i {
    color: #ff6b6b;
}

.plan-card.special-offer .plan-features li {
    color: white;
}

.plan-card.special-offer .plan-features i {
    color: #00ff7f;
}

.special-btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff) !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3) !important;
    font-weight: 700 !important;
}

.special-btn:hover {
    background: linear-gradient(45deg, #ff00ff, #00ffff) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4) !important;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.plan-header {
    margin-bottom: var(--spacing-xl);
}

.plan-name {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.currency {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: var(--font-size-base);
    color: var(--text-light);
}

.plan-features {
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    margin: 0;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.plan-features li:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.plan-features i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    width: 20px;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
    font-weight: 700;
    margin-top: auto;
}

/* Dispositivos Adicionales */
.additional-devices {
    margin-top: var(--spacing-4xl);
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e6fffa 100%);
    border-radius: 25px;
    text-align: center;
}

.devices-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.devices-info p {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
}

.devices-pricing {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.device-option {
    background: var(--bg-white);
    border-radius: 20px;
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    min-width: 300px;
    border: 2px solid transparent;
}

.device-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.device-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-icon i {
    font-size: 24px;
    color: white;
}

.device-details {
    flex-grow: 1;
    text-align: left;
}

.device-details h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.device-details p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin: 0;
}

.device-price {
    text-align: right;
    flex-shrink: 0;
}

.device-price .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.device-price .period {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* Platforms Section */
.platforms-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: 15px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: var(--text-white);
}

.platform-icon {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.platform-item:hover .platform-icon {
    color: var(--text-white);
    transform: scale(1.1);
}

.platform-name {
    font-weight: 600;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gradient-dark);
    color: var(--text-white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.cta-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--text-white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo .logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: var(--font-size-lg);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: var(--spacing-xs) 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideMovies {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .netv-play-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .devices-container {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.7s; }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        text-align: center;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: transparent;
    }
    
    .nav-link::after {
        display: none; /* Ocultar el pseudo-elemento en móviles */
    }
    
    .nav-link:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .whatsapp-contact {
        display: none;
    }
    
    .payment-nav-button {
        padding: 15px 25px !important;
        font-size: 16px !important;
        border-radius: 25px !important;
        margin: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md) !important;
        box-shadow: 0 4px 15px rgba(238, 90, 36, 0.6) !important;
        width: calc(100% - 2 * var(--spacing-md)) !important;
        justify-content: center !important;
    }
    
    .payment-nav-button i {
        font-size: 14px !important;
        margin-right: 8px !important;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 400px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .devices-showcase {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-features {
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        font-size: var(--font-size-sm);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .plan-card {
        padding: var(--spacing-lg);
    }
    
    .amount {
        font-size: var(--font-size-3xl);
    }
    
    .movie-item {
        flex: 0 0 250px;
        height: 350px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}



/* ===============================
   PÁGINA DE SERVICIOS
   =============================== */

.servicios-page {
    padding-top: 80px;
}

.servicios-hero {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-dark);
    text-align: center;
    overflow: hidden;
}

.servicios-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.servicios-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.servicios-hero .hero-badge i {
    color: var(--primary-color);
}

.servicios-hero .hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.servicios-hero .hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.price-from {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.price-amount {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.business-services {
    padding: 80px 0;
    background: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.business-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.business-icon i {
    font-size: 1.5rem;
    color: white;
}

.business-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.business-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* ===============================
   PÁGINA ACERCA DE
   =============================== */

.acerca-page {
    padding-top: 80px;
}

.acerca-hero {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-dark);
    text-align: center;
    overflow: hidden;
}

.acerca-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.acerca-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.acerca-hero .hero-badge i {
    color: var(--primary-color);
}

.acerca-hero .hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.acerca-hero .hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.historia-section {
    padding: 80px 0;
    background: white;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.historia-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.stats-mini {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.stat-mini {
    text-align: center;
}

.stat-mini .stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-mini .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.historia-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.historia-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.valores-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.valor-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.valor-icon i {
    font-size: 2rem;
    color: white;
}

.valor-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.valor-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.equipo-section {
    padding: 80px 0;
    background: white;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.miembro-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.miembro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.miembro-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--spacing-lg);
    border: 4px solid var(--primary-color);
}

.miembro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.miembro-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.miembro-cargo {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.miembro-descripcion {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===============================
   PÁGINA DE BLOG
   =============================== */

.blog-page {
    padding-top: 80px;
}

.blog-hero {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-dark);
    text-align: center;
    overflow: hidden;
}

.blog-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.blog-hero .hero-badge i {
    color: var(--primary-color);
}

.blog-hero .hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.blog-hero .hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-article {
    padding: 80px 0;
    background: white;
}

.article-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-featured .article-image {
    position: relative;
    height: 400px;
}

.article-featured .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-badge {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.article-featured .article-content {
    padding: var(--spacing-xl);
}

.article-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.article-category {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 15px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.article-date {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
}

.article-featured h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.3;
}

.article-featured p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.articles-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.article-card .article-image {
    height: 200px;
    overflow: hidden;
}

.article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-card .article-content {
    padding: var(--spacing-xl);
}

.article-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.3;
}

.article-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.article-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: var(--spacing-sm);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-4xl);
}

.pagination-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.newsletter-text h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.newsletter-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form form {
    display: flex;
    gap: var(--spacing-md);
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: 10px;
    font-size: var(--font-size-base);
}

.newsletter-form button {
    white-space: nowrap;
}

/* ===============================
   PÁGINA DE CONTACTO
   =============================== */

.contacto-page {
    padding-top: 80px;
}

.contacto-hero {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-dark);
    text-align: center;
    overflow: hidden;
}

.contacto-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contacto-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.contacto-hero .hero-badge i {
    color: var(--primary-color);
}

.contacto-hero .hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.contacto-hero .hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.contact-method {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.method-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.method-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--font-size-lg);
}

.method-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-4xl);
}

.contact-form {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: var(--spacing-xl);
}

.sidebar-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.sidebar-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.urgent-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.urgent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

.urgent-btn.whatsapp {
    background: #25D366;
}

.urgent-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.office h4 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.office p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.office i {
    color: var(--primary-color);
    width: 16px;
}

.faq-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.faq-links a:hover {
    color: var(--accent-color);
}

.map-section {
    padding: 80px 0 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: var(--spacing-xl);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Responsive para páginas adicionales */
@media (max-width: 768px) {
    .services-grid,
    .business-grid,
    .valores-grid,
    .equipo-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .historia-content,
    .article-featured,
    .newsletter-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-mini {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
         .pagination {
         flex-wrap: wrap;
     }
 }
 
 /* ===============================
    ESTILOS PARA FUNCIONALIDADES
    =============================== */
 
 /* Validación de formularios */
 .form-group input.error,
 .form-group select.error,
 .form-group textarea.error {
     border-color: #e74c3c;
     box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
 }
 
 .error-message {
     color: #e74c3c;
     font-size: var(--font-size-sm);
     margin-top: var(--spacing-xs);
     display: flex;
     align-items: center;
     gap: var(--spacing-xs);
 }
 
 .error-message::before {
     content: '⚠';
     font-size: 14px;
 }
 
 /* Modales */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.8);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }
 
 .modal-overlay.show {
     opacity: 1;
     visibility: visible;
 }
 
 .modal-content {
     background: white;
     border-radius: 20px;
     max-width: 500px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     transform: scale(0.8);
     transition: transform 0.3s ease;
 }
 
 .modal-overlay.show .modal-content {
     transform: scale(1);
 }
 
 .modal-header {
     padding: var(--spacing-xl);
     border-bottom: 1px solid var(--border-color);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 .modal-header h3 {
     margin: 0;
     color: var(--text-dark);
     font-size: var(--font-size-lg);
 }
 
 .modal-close {
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: var(--text-muted);
     padding: 0;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: all 0.3s ease;
 }
 
 .modal-close:hover {
     background: var(--bg-light);
     color: var(--text-dark);
 }
 
 .modal-body {
     padding: var(--spacing-xl);
 }
 
 .quote-form .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: var(--spacing-lg);
     margin-bottom: var(--spacing-lg);
 }
 
 .quote-form .form-group {
     margin-bottom: var(--spacing-lg);
 }
 
 .quote-form label {
     display: block;
     margin-bottom: var(--spacing-sm);
     font-weight: 600;
     color: var(--text-dark);
 }
 
 .quote-form input,
 .quote-form textarea {
     width: 100%;
     padding: var(--spacing-md);
     border: 1px solid var(--border-color);
     border-radius: 10px;
     font-size: var(--font-size-base);
     transition: border-color 0.3s ease;
 }
 
 .quote-form input:focus,
 .quote-form textarea:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 0 3px rgba(0, 212, 196, 0.1);
 }
 
 /* Notificaciones */
 .notification {
     position: fixed;
     top: 20px;
     right: 20px;
     background: white;
     border-radius: 10px;
     padding: var(--spacing-lg);
     box-shadow: var(--shadow-xl);
     display: flex;
     align-items: center;
     gap: var(--spacing-md);
     z-index: 10001;
     transform: translateX(400px);
     transition: transform 0.3s ease;
     max-width: 400px;
     border-left: 4px solid var(--primary-color);
 }
 
 .notification.show {
     transform: translateX(0);
 }
 
 .notification-success {
     border-left-color: #27ae60;
 }
 
 .notification-success i {
     color: #27ae60;
 }
 
 .notification-error {
     border-left-color: #e74c3c;
 }
 
 .notification-error i {
     color: #e74c3c;
 }
 
 .notification-info {
     border-left-color: var(--primary-color);
 }
 
 .notification-info i {
     color: var(--primary-color);
 }
 
 .notification i {
     font-size: 20px;
 }
 
 .notification span {
     flex: 1;
     color: var(--text-dark);
     font-weight: 500;
 }
 
 .notification-close {
     background: none;
     border: none;
     font-size: 18px;
     cursor: pointer;
     color: var(--text-muted);
     padding: 0;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: all 0.3s ease;
 }
 
 .notification-close:hover {
     background: var(--bg-light);
     color: var(--text-dark);
 }
 
 /* Loader */
 .page-loader {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(255, 255, 255, 0.9);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }
 
 .page-loader.show {
     opacity: 1;
     visibility: visible;
 }
 
 .loader-content {
     text-align: center;
 }
 
 .spinner {
     width: 40px;
     height: 40px;
     border: 4px solid var(--bg-light);
     border-top: 4px solid var(--primary-color);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin: 0 auto var(--spacing-md);
 }
 
 @keyframes spin {
     0% { transform: rotate(0deg); }
     100% { transform: rotate(360deg); }
 }
 
 .loader-content p {
     color: var(--text-dark);
     font-weight: 500;
     margin: 0;
 }
 
 /* Botones con estados de carga */
 .btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     pointer-events: none;
 }
 
 .btn .fa-spinner {
     animation: spin 1s linear infinite;
 }
 
 /* Tooltips */
 .tooltip {
     position: absolute;
     background: var(--bg-dark);
     color: white;
     padding: var(--spacing-sm) var(--spacing-md);
     border-radius: 6px;
     font-size: var(--font-size-sm);
     white-space: nowrap;
     z-index: 10002;
     opacity: 0;
     transition: opacity 0.3s ease;
     pointer-events: none;
 }
 
 .tooltip.show {
     opacity: 1;
 }
 
 .tooltip::after {
     content: '';
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     border: 5px solid transparent;
     border-top-color: var(--bg-dark);
 }
 
 /* Efectos hover mejorados para tarjetas */
 .service-card,
 .plan-card,
 .article-card {
     cursor: pointer;
     transition: all 0.3s ease;
 }
 
 .service-card:hover,
 .plan-card:hover,
 .article-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-xl);
 }
 
 /* Animaciones de entrada */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(30px);
     }
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }
 
 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
     }
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }
 
 /* Responsive para modales */
 @media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: var(--spacing-lg);
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    /* Responsive para planes */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 450px;
    }
    
    .plan-card {
        margin: 0 auto;
        min-width: 320px;
    }
    
    /* Responsive para dispositivos adicionales */
    .devices-pricing {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .device-option {
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        max-width: 700px;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        max-width: 1000px;
    }
}

/* NETV Security Section */
.security-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.security-section .container {
    position: relative;
    z-index: 2;
}

.security-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

.security-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.security-info h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.security-info p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.security-highlights {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 212, 196, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.highlight-item i {
    font-size: var(--font-size-base);
}

.security-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.security-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.2) 0%, rgba(0, 255, 136, 0.2) 100%);
    z-index: 2;
}

.security-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.security-image:hover img {
    transform: scale(1.05);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.feature-icon i {
    font-size: var(--font-size-xl);
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.security-cta {
    background: var(--gradient-dark);
    padding: var(--spacing-3xl);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2300D4C4" opacity="0.3"><animate attributeName="r" values="2;4;2" dur="3s" repeatCount="indefinite"/></circle></svg>');
    animation: float 6s ease-in-out infinite;
}

.security-cta .cta-content {
    position: relative;
    z-index: 2;
}

.security-cta h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
}

.security-cta p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
}

.security-cta .btn {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
    font-weight: 700;
    box-shadow: var(--shadow-xl);
}

.security-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

/* Responsive Design para Security Section */
@media (max-width: 1024px) {
    .security-hero {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .security-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: var(--spacing-3xl) 0;
    }
    
    .security-info h3 {
        font-size: var(--font-size-2xl);
    }
    
    .security-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .security-cta {
        padding: var(--spacing-2xl);
    }
    
    .security-cta h3 {
        font-size: var(--font-size-2xl);
    }
    
    .security-cta .btn {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .security-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
    
    .security-image img {
        height: 250px;
    }
}

/* =================================
   PROGRAMACIÓN TV STYLES
   ================================= */

/* Programación Hero */
.programacion-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.programacion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.programacion-hero .container {
    position: relative;
    z-index: 2;
}

.programacion-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.programacion-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 212, 196, 0.3);
}

.programacion-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programacion-hero .hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Filtros Section */
.filtros-section {
    padding: 40px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filtros-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 196, 0.1);
}

.filtros-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filtros-header h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
}

.filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filtro-grupo label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
}

.filtro-select,
.filtro-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.filtro-select:focus,
.filtro-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 196, 0.1);
}

.filtro-select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Guía de Programación */
.guia-programacion {
    padding: 0;
    margin: 0;
    background: var(--bg-dark);
    min-height: 60vh;
}

/* Eliminar espacios de todas las secciones de programación */
.guia-programacion * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.guia-programacion .container {
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Estados de Carga */
.loading-container,
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 212, 196, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-container p,
.error-container p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.error-container .error-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.error-container h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Grid de Canales */
.canales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Canal Card */
.canal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(0, 212, 196, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.canal-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 196, 0.2);
}

.canal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.canal-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.canal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.canal-info {
    flex: 1;
}

.canal-nombre {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.canal-estado {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.canal-estado .fa-circle.en-vivo {
    color: #00ff88;
    font-size: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.canal-estado .fa-circle.fuera-linea {
    color: #666;
    font-size: 8px;
}

/* Programa Actual */
.programa-actual {
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.programa-actual:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 212, 196, 0.3);
}

.programa-tiempo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.programa-titulo {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.programa-descripcion {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.programa-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.programa-categoria {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.en-vivo-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s ease-in-out infinite;
}

/* Próximos Programas */
.proximos-programas {
    margin-top: 20px;
}

.proximos-programas h5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.programa-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.programa-item:hover {
    background: rgba(0, 212, 196, 0.05);
    border-radius: 8px;
    padding: 12px 10px;
    margin: 0 -10px;
}

.programa-item:last-child {
    border-bottom: none;
}

.programa-item .programa-tiempo {
    min-width: 60px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
}

.programa-contenido {
    flex: 1;
}

.programa-contenido h6 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.programa-item .programa-categoria {
    font-size: 11px;
    padding: 2px 8px;
}

.sin-programas {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Modal de Programa */
.programa-modal-content {
    max-width: 700px;
    width: 90%;
}

.programa-detalles {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.programa-imagen {
    position: relative;
}

.programa-imagen img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.programa-estado {
    position: absolute;
    top: 8px;
    right: 8px;
}

.estado-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.estado-badge.proximo {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.programa-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.programa-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.meta-item i {
    color: var(--primary-color);
    width: 16px;
}

.programa-descripcion h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.programa-descripcion p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Responsive para Programación */
@media (max-width: 1200px) {
    .canales-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .programacion-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filtros-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .filtros-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .canales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programa-detalles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programa-imagen {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .programacion-hero {
        padding: 100px 0 60px;
    }
    
    .programacion-hero .hero-title {
        font-size: 2rem;
    }
    
    .canal-card {
        padding: 20px;
    }
    
    .filtros-container {
        padding: 20px;
    }
}

/* ================================
   ESTILOS NETFLIX INTERACTIVOS
   ================================ */

/* Carrusel de Programas Destacados */
.programa-destacado {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.carrusel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carrusel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carrusel-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carrusel-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.carrusel-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    z-index: 2;
    color: white;
}

.carrusel-slide-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
    animation: slideInLeft 1s ease-out;
}

.carrusel-slide-titulo {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    max-width: 600px;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.carrusel-slide-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.carrusel-slide-meta span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.carrusel-slide-progreso {
    flex: 1;
    min-width: 200px;
}

.carrusel-slide-progreso .progreso-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.carrusel-slide-progreso .progreso-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4c4, #1a7f7a);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.carrusel-slide-descripcion {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.carrusel-slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}

/* Controles del Carrusel */
.carrusel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.carrusel-prev, .carrusel-next {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0;
    visibility: hidden;
}

.programa-destacado:hover .carrusel-prev,
.programa-destacado:hover .carrusel-next {
    opacity: 1;
    visibility: visible;
}

.carrusel-prev:hover, .carrusel-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.carrusel-prev {
    left: 30px;
}

.carrusel-next {
    right: 30px;
}

/* Indicadores del Carrusel */
.carrusel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carrusel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrusel-indicator.active {
    background: white;
    transform: scale(1.2);
}

.carrusel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.btn-watch, .btn-info {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-watch {
    background: linear-gradient(135deg, #e6394a, #d62d20);
    color: white;
}

.btn-watch:hover {
    background: linear-gradient(135deg, #d62d20, #b8261f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-info {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Secciones de Programa */
.programs-section {
    padding: 0;
    margin: 0;
    background: #1a1a2e;
}

.programs-section:nth-child(even) {
    background: #16213e;
}

/* Eliminar todos los espacios entre secciones */
.programs-section + .programs-section {
    margin-top: 0 !important;
}

#categorias-sections .programs-section {
    margin: 0 !important;
    padding: 0 !important;
}

.section-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #00d4c4;
}

/* Carrusel de Programas */
.programs-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 0;
    scroll-behavior: smooth;
}

.programs-carousel::-webkit-scrollbar {
    height: 8px;
}

.programs-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.programs-carousel::-webkit-scrollbar-thumb {
    background: #00d4c4;
    border-radius: 4px;
}

.program-card {
    flex: 0 0 auto;
    width: 280px;
    background: #0f0f23;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #00d4c4;
    box-shadow: 0 15px 40px rgba(0, 212, 196, 0.3);
}

.program-card-image {
    position: relative;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #2a2a3e;
}

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.program-card-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-card-status.live {
    background: linear-gradient(135deg, #e6394a, #d62d20);
    color: white;
    animation: pulse 2s infinite;
}

.program-card-status.upcoming {
    background: rgba(0, 212, 196, 0.9);
    color: white;
}

.program-card-content {
    padding: 15px;
    color: white;
}

.program-card-channel {
    color: #00d4c4;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.program-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.program-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Categorías de Canales */
.categoria-section {
    margin-bottom: 10px;
}

.categoria-titulo {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 212, 196, 0.3);
}

.categoria-titulo i {
    color: #00d4c4;
    font-size: 1.5rem;
}

.categoria-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-left: auto;
}

.canales-categoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

/* Canales Grid Netflix Style */
.canales-netflix-grid {
    display: block;
}

.canal-netflix-card {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.canal-netflix-card:hover {
    transform: translateY(-5px);
    border-color: #00d4c4;
    box-shadow: 0 20px 40px rgba(0, 212, 196, 0.2);
}

.canal-header-netflix {
    padding: 20px;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    display: flex;
    align-items: center;
    gap: 15px;
}

.canal-logo-netflix {
    width: 60px;
    height: 60px;
    background: #00d4c4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.canal-logo-netflix img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 10px;
}

.canal-logo-netflix i {
    font-size: 1.5rem;
    color: white;
}

.canal-info-netflix {
    flex: 1;
}

.canal-nombre-netflix {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.canal-estado-netflix {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.canal-estado-netflix i {
    font-size: 0.8rem;
}

.canal-estado-netflix.live {
    color: #e6394a;
}

.canal-estado-netflix.scheduled {
    color: #00d4c4;
}

.programa-actual-netflix {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
}

.programa-actual-netflix:hover {
    background: rgba(0, 212, 196, 0.1);
}

.programa-titulo-netflix {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.programa-tiempo-netflix {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.programa-descripcion-netflix {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.programa-progreso-netflix {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.programa-progreso-netflix .progreso-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4c4, #1a7f7a);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.proximos-programas-netflix {
    padding: 20px 25px;
}

.proximos-programas-netflix h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.programa-item-netflix {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.programa-item-netflix:hover {
    background: rgba(0, 212, 196, 0.1);
    padding-left: 10px;
    padding-right: 10px;
}

.programa-tiempo-item {
    color: #00d4c4;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 50px;
}

.programa-contenido-netflix {
    flex: 1;
}

.programa-contenido-netflix h6 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}

.programa-categoria-small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Netflix */
@media (max-width: 768px) {
    .carrusel-slide-titulo {
        font-size: 2.5rem;
    }
    
    .carrusel-slide-content {
        padding: 40px 20px;
    }
    
    .carrusel-prev, .carrusel-next {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .carrusel-controls {
        padding: 0 15px;
    }
    
    .carrusel-prev {
        left: 15px;
    }
    
    .carrusel-next {
        right: 15px;
    }
    
    .program-card {
        width: 280px;
    }
    
    .canales-categoria-grid {
        grid-template-columns: 1fr;
    }
    
    .categoria-titulo {
        font-size: 1.5rem;
    }
    
    .carrusel-slide-actions {
        flex-direction: column;
    }
    
    .btn-watch, .btn-info {
        width: 100%;
        justify-content: center;
    }
}

/* Modal Netflix */
.programa-modal-netflix {
    max-width: 900px;
    width: 92vw;
    max-height: 95vh;
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 50px rgba(0, 212, 196, 0.3),
        0 0 100px rgba(0, 255, 136, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: modalGlow 3s ease-in-out infinite alternate;
}

/* Animación de brillo del modal */
@keyframes modalGlow {
    0% {
        box-shadow: 
            0 0 50px rgba(0, 212, 196, 0.3),
            0 0 100px rgba(0, 255, 136, 0.2),
            0 25px 50px rgba(0, 0, 0, 0.8);
    }
    100% {
        box-shadow: 
            0 0 80px rgba(0, 212, 196, 0.5),
            0 0 150px rgba(0, 255, 136, 0.3),
            0 25px 50px rgba(0, 0, 0, 0.8);
    }
}

/* Borde brillante animado */
.programa-modal-netflix::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #00D4C4, #00FF88, #C5FF00, #00D4C4, 
        #00FF88, #C5FF00, #00D4C4);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    animation: gradientBorderAnimation 4s ease infinite;
}

@keyframes gradientBorderAnimation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Efectos de partículas */
.programa-modal-netflix::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 196, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 60%, rgba(197, 255, 0, 0.1) 0%, transparent 30%);
    animation: particleFloat 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.modal-close-netflix {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.9));
    color: white;
    border: 2px solid rgba(0, 212, 196, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.modal-close-netflix:hover {
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.2), rgba(0, 255, 136, 0.2));
    border-color: rgba(0, 212, 196, 0.8);
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 0 30px rgba(0, 212, 196, 0.6);
}

.modal-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.modal-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.modal-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

.programa-modal-netflix:hover .modal-hero-background {
    transform: scale(1.05);
}

.modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 212, 196, 0.05) 20%,
        transparent 40%,
        transparent 60%,
        rgba(0, 255, 136, 0.05) 80%,
        transparent 100%
    ),
    linear-gradient(
        transparent 0%,
        transparent 60%,
        rgba(15, 15, 15, 0.4) 80%,
        rgba(15, 15, 15, 0.85) 100%
    );
    animation: overlayShimmer 4s ease-in-out infinite;
}

@keyframes overlayShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.modal-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 10;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.modal-hero-info h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 0, 0, 0.7),
        2px 2px 15px rgba(0, 0, 0, 0.8),
        -2px -2px 15px rgba(0, 0, 0, 0.8);
    /* Removemos el efecto shimmer para mejor legibilidad */
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.modal-badge {
    background: linear-gradient(135deg, #e6394a, #d62d20);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(230, 57, 74, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: badgeShine 2s linear infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.modal-badge.upcoming {
    background: linear-gradient(135deg, #00d4c4, #00ff88);
    box-shadow: 0 4px 15px rgba(0, 212, 196, 0.4);
}

.modal-year, .modal-duration {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.modal-btn-play {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-btn-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 196, 0.4), transparent);
    transition: left 0.6s;
}

.modal-btn-play:hover::before {
    left: 100%;
}

.modal-btn-play:hover {
    background: linear-gradient(135deg, #00D4C4, #00FF88);
    color: white;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 196, 0.4);
}

.modal-btn-add, .modal-btn-like {
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.2), rgba(0, 255, 136, 0.2));
    color: white;
    border: 2px solid rgba(0, 212, 196, 0.5);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.modal-btn-add::before, .modal-btn-like::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #00D4C4, #00FF88);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.modal-btn-add:hover::before, .modal-btn-like:hover::before {
    width: 100%;
    height: 100%;
}

.modal-btn-add:hover, .modal-btn-like:hover {
    border-color: rgba(0, 212, 196, 1);
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 212, 196, 0.6);
}

.modal-details {
    padding: 40px 50px 50px;
    color: white;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    position: relative;
}

.modal-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D4C4, #00FF88, #C5FF00, #00D4C4);
    background-size: 300% 100%;
    animation: topBorderFlow 3s linear infinite;
}

@keyframes topBorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.modal-description-section {
    margin-bottom: 35px;
}

.modal-description-section p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7);
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 196, 0.2);
    transition: all 0.3s ease;
}

.modal-info-item:hover {
    background: linear-gradient(135deg, rgba(0, 212, 196, 0.2), rgba(0, 255, 136, 0.2));
    border-color: rgba(0, 212, 196, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 196, 0.2);
}

.modal-info-item strong {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 212, 196, 0.3);
}

.modal-info-item span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.6);
}

/* Responsive Modal Mejorado */
@media (max-width: 768px) {
    .programa-modal-netflix {
        width: 98vw;
        max-height: 98vh;
        margin: 1vh auto;
    }
    
    .modal-hero {
        height: 300px;
    }
    
    .modal-hero-content {
        padding: 30px 25px;
    }
    
    .modal-hero-info h1 {
        font-size: 2.2rem;
    }
    
    .modal-details {
        padding: 30px 25px;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modal-btn-play {
        justify-content: center;
        padding: 18px 25px;
    }
    
    .modal-close-netflix {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
}

/* ===== OPTIMIZACIONES PARA PANTALLAS GRANDES ===== */

/* Pantallas grandes (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .canales-categoria-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 25px;
    }
    
    .program-card {
        width: 320px;
    }
    
    .programs-carousel {
        gap: 20px;
    }
    
    .categoria-section {
        margin-bottom: 0;
    }
    
    .categoria-titulo {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .canal-header-netflix {
        padding: 25px;
    }
    
    .program-card-content {
        padding: 18px;
    }
    
    .program-card-image {
        height: 170px;
    }
}

/* Pantallas extra grandes (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 1520px;
    }
    
    .canales-categoria-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 30px;
    }
    
    .program-card {
        width: 350px;
    }
    
    .programs-carousel {
        gap: 25px;
    }
    
    .categoria-section {
        margin-bottom: 0;
    }
    
    .categoria-titulo {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .canal-header-netflix {
        padding: 30px;
    }
    
    .program-card-content {
        padding: 20px;
    }
    
    .program-card-image {
        height: 180px;
    }
}

/* Pantallas ultra anchas (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    
    .canales-categoria-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 35px;
    }
    
    .program-card {
        width: 380px;
    }
    
    .programs-carousel {
        gap: 30px;
    }
    
    .categoria-section {
        margin-bottom: 0;
    }
    
    .categoria-titulo {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
    
    .canal-header-netflix {
        padding: 35px;
    }
    
    .program-card-content {
        padding: 25px;
    }
    
    .program-card-image {
        height: 200px;
    }
    
    /* Más programas por fila en carruseles */
    .programs-carousel {
        justify-content: flex-start;
    }
}

/* Optimización específica para el hero del carrusel */
@media (min-width: 1400px) {
    .carrusel-slide-content {
        padding: 60px;
        max-width: 50%;
    }
    
    .carrusel-slide-titulo {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .carrusel-slide-descripcion {
        font-size: 1.2rem;
        line-height: 1.6;
        max-width: 600px;
    }
}

@media (min-width: 1600px) {
    .carrusel-slide-content {
        padding: 80px;
        max-width: 45%;
    }
    
    .carrusel-slide-titulo {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .carrusel-slide-descripcion {
        font-size: 1.3rem;
        max-width: 700px;
    }
}

/* Optimización para secciones de programas */
@media (min-width: 1400px) {
    .programs-section {
        margin-bottom: 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
}

@media (min-width: 1600px) {
    .programs-section {
        margin-bottom: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

/* === MODAL NETV PLAY PREMIUM === */
.modal-netv-play {
    z-index: 10000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 46, 0.9));
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-netv-play.show {
    display: flex !important;
}

.modal-netv-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #000 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.4),
        0 0 100px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 650px;
    width: 95%;
    max-height: 95vh;
    overflow: hidden;
    animation: netvModalSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    margin: auto;
}

.modal-netv-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00ff88, #ff6b35, #00d4ff);
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    animation: gradientBorder 3s ease infinite;
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes netvModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.netv-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #00d4ff;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.netv-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.netv-modal-body {
    padding: 30px;
    color: white;
}

.netv-header {
    text-align: center;
    margin-bottom: 30px;
}

.netv-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.netv-play-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #00d4ff;
}

.netv-play-logo i {
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.netv-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.netv-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.7);
}

.netv-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 500;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.7);
}

.netv-features {
    margin-bottom: 30px;
}

.netv-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;
}

.netv-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.netv-feature .feature-icon {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}

.netv-feature .feature-icon i {
    font-size: 20px;
    color: white;
}

.netv-feature .feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 212, 255, 0.3);
}

.netv-feature .feature-text p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6);
}

.netv-contact-section {
    text-align: center;
    margin-bottom: 25px;
}

.netv-contact-section h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 212, 255, 0.3);
}

.netv-contact-section > p {
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.phone-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.additional-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 14px;
}

.additional-info p {
    margin: 8px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6);
}

.additional-info i {
    color: #00d4ff;
    width: 16px;
}

.additional-info a {
    color: #00d4ff;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

.netv-footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive para Modal NETV PLAY */
@media (max-width: 768px) {
    .modal-netv-content {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .netv-modal-body {
        padding: 20px;
    }
    
    .netv-title {
        font-size: 24px;
    }
    
    .contact-options {
        gap: 10px;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .netv-feature {
        padding: 12px;
    }
    
    .netv-feature .feature-icon {
        min-width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .netv-feature .feature-icon i {
        font-size: 16px;
    }
}

/* ===== RESPONSIVE DESIGN - MODALES Y ELEMENTOS ===== */

/* Modal Netflix - Responsive */
@media (max-width: 1024px) {
    .programa-modal-netflix {
        max-width: 95vw;
        width: 95vw;
        margin: 10px;
    }
    
    .modal-hero-content {
        padding: 30px;
    }
    
    .modal-hero-info h1 {
        font-size: 2.2rem;
    }
    
    .modal-details {
        padding: 25px 30px;
    }
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .programa-modal-netflix {
        max-width: 98vw;
        width: 98vw;
        max-height: 95vh;
        margin: 0;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .modal-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .modal-hero-content {
        padding: 20px;
        background: linear-gradient(
            transparent 0%,
            rgba(0, 0, 0, 0.4) 20%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
    
    .modal-hero-info h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .modal-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .modal-year, .modal-duration {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .modal-btn-play {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 1rem;
    }
    
    .modal-btn-add, .modal-btn-like {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .modal-details {
        padding: 20px;
        max-height: 45vh;
        overflow-y: auto;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-close-netflix {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0;
        align-items: stretch;
    }
    
    .programa-modal-netflix {
        max-width: 100vw;
        width: 100vw;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-hero {
        height: 45vh;
        min-height: 250px;
    }
    
    .modal-hero-content {
        padding: 15px;
    }
    
    .modal-hero-info h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .modal-details {
        padding: 15px;
        max-height: 55vh;
    }
    
    .modal-description-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .modal-actions {
        position: sticky;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 15px;
        margin: -15px;
        margin-top: 20px;
    }
}

/* Modal NETV PLAY - Responsive */
@media (max-width: 1024px) {
    .modal-netv-content {
        max-width: 90vw;
        width: 90vw;
        margin: 20px;
    }
    
    .netv-modal-body {
        padding: 25px;
    }
    
    .netv-title {
        font-size: 22px;
    }
    
    .netv-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modal-netv-play {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-netv-content {
        max-width: 95vw;
        width: 95vw;
        max-height: 90vh;
        margin: 0;
        border-radius: 15px;
        overflow-y: auto;
    }
    
    .netv-modal-body {
        padding: 20px;
    }
    
    .netv-logo-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .netv-title {
        font-size: 20px;
        text-align: center;
        line-height: 1.3;
    }
    
    .netv-subtitle {
        font-size: 14px;
        text-align: center;
    }
    
    .netv-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px 0;
    }
    
    .netv-feature {
        padding: 15px;
        text-align: center;
    }
    
    .netv-feature .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }
    
    .netv-feature .feature-icon i {
        font-size: 20px;
    }
    
    .netv-feature .feature-text h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .netv-feature .feature-text p {
        font-size: 13px;
    }
    
    .netv-contact-section h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .netv-contact-section > p {
        text-align: center;
        font-size: 14px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
    }
    
    .contact-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        justify-content: center;
    }
    
    .additional-info {
        text-align: center;
    }
    
    .additional-info p {
        font-size: 12px;
        margin: 8px 0;
    }
    
    .netv-footer {
        text-align: center;
        margin-top: 20px;
    }
    
    .netv-footer p {
        font-size: 14px;
    }
    
    .netv-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal-netv-play {
        padding: 0;
        align-items: stretch;
    }
    
    .modal-netv-content {
        max-width: 100vw;
        width: 100vw;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .netv-modal-body {
        padding: 15px;
    }
    
    .netv-title {
        font-size: 18px;
    }
    
    .netv-contact-section h3 {
        font-size: 16px;
    }
    
    .contact-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .additional-info p {
        font-size: 11px;
    }
}

/* Programación Page - Responsive */
@media (max-width: 1024px) {
    .programacion-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .canales-netflix-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .programs-carousel {
        gap: 15px;
    }
    
    .program-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .programacion-hero {
        padding: 80px 0 60px;
        min-height: 70vh;
    }
    
    .programacion-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .programacion-hero .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .programacion-hero .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .canales-netflix-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .canal-netflix-card {
        padding: 15px;
    }
    
    .canal-header-netflix {
        margin-bottom: 12px;
    }
    
    .canal-logo-netflix {
        width: 50px;
        height: 50px;
    }
    
    .canal-nome-netflix {
        font-size: 1.1rem;
    }
    
    .programa-actual-netflix {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .programa-titulo-netflix {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .programa-descripcion-netflix {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .proximos-programas-netflix {
        max-height: 150px;
    }
    
    .programa-item-netflix {
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    
    .programs-carousel {
        gap: 10px;
        padding: 0 15px;
    }
    
    .program-card {
        min-width: 250px;
        flex-shrink: 0;
    }
    
    .program-card-content {
        padding: 12px;
    }
    
    .program-card-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .program-card-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .programs-section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .programacion-hero {
        padding: 70px 0 50px;
        min-height: 60vh;
    }
    
    .programacion-hero .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .programacion-hero .hero-description {
        font-size: 0.9rem;
    }
    
    .canal-netflix-card {
        padding: 12px;
    }
    
    .programa-actual-netflix {
        padding: 10px;
    }
    
    .programa-titulo-netflix {
        font-size: 0.9rem;
    }
    
    .programa-descripcion-netflix {
        font-size: 0.8rem;
    }
    
    .program-card {
        min-width: 220px;
    }
    
    .program-card-content {
        padding: 10px;
    }
    
    .program-card-title {
        font-size: 0.85rem;
    }
    
    .program-card-description {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .programs-section {
        padding: 25px 0;
    }
}

/* Carrusel - Responsive */
@media (max-width: 768px) {
    .carrusel-slide-content {
        padding: 20px;
        bottom: 20px;
    }
    
    .carrusel-slide-titulo {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .carrusel-slide-meta {
        margin-bottom: 12px;
    }
    
    .carrusel-slide-descripcion {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .carrusel-slide-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-watch, .btn-info {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .carrusel-controls {
        display: none;
    }
    
    .carrusel-indicators {
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .carrusel-slide-content {
        padding: 15px;
        bottom: 15px;
    }
    
    .carrusel-slide-titulo {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .carrusel-slide-descripcion {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .btn-watch, .btn-info {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Header Navigation - Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .whatsapp-contact {
        display: none;
    }
    
    .payment-nav-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .payment-nav-button i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-logo .logo {
        height: 30px;
    }
    
    .payment-nav-button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* Footer - Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo .logo {
        height: 40px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        font-size: 0.8rem;
        padding: 15px 0;
    }
}

/* Platforms Section - Responsive */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .platform-item {
        padding: 15px;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .platform-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .platform-item {
        padding: 12px;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
    }
    
    .platform-name {
        font-size: 0.75rem;
    }
}

/* CTA Section - Responsive */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* General Responsive Utilities */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .programacion-hero {
        padding: 60px 0 40px;
        min-height: 80vh;
    }
    
    .modal-hero {
        height: 60vh;
    }
    
    .modal-details {
        max-height: 40vh;
    }
    
    .carrusel-slide-content {
        padding: 15px;
    }
    
    .carrusel-slide-titulo {
        font-size: 1.6rem;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .canal-logo-netflix img,
    .program-card-image img,
    .modal-hero-background img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modal-netv-content {
        background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    }
    
    .programa-modal-netflix {
        background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .programa-modal-netflix,
    .modal-netv-content,
    .program-card,
    .canal-netflix-card,
    .carrusel-slide {
        animation: none !important;
        transition: none !important;
    }
    
    .carrusel-container {
        scroll-behavior: auto;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .modal-close-netflix,
    .netv-close,
    .contact-btn,
    .modal-btn-play,
    .btn-watch,
    .btn-info {
        min-height: 44px;
        min-width: 44px;
    }
    
    .program-card,
    .canal-netflix-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .programs-carousel {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .program-card {
        scroll-snap-align: start;
    }
}

/* Hover States for Non-Touch Devices */
@media (hover: hover) {
    .program-card:hover,
    .canal-netflix-card:hover {
        transform: translateY(-5px);
    }
    
    .modal-btn-play:hover,
    .contact-btn:hover {
        transform: translateY(-2px);
    }
}

/* Safe Area for Devices with Notches */
@supports (padding: max(0px)) {
    .modal-overlay {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
        padding-top: max(20px, env(safe-area-inset-top));
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .programacion-hero {
        padding-top: calc(80px + env(safe-area-inset-top));
    }
}

/* Tablet Specific Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .canales-netflix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .programs-carousel {
        gap: 20px;
    }
    
    .program-card {
        min-width: 300px;
    }
    
    .modal-hero-info h1 {
        font-size: 2.5rem;
    }
    
    .netv-title {
        font-size: 24px;
    }
}

/* Large Mobile Screens */
@media (min-width: 414px) and (max-width: 767px) {
    .programa-modal-netflix {
        max-width: 96vw;
        border-radius: 20px;
    }
    
    .modal-netv-content {
        max-width: 96vw;
        border-radius: 20px;
    }
    
    .program-card {
        min-width: 260px;
    }
}

/* Very Small Screens */
@media (max-width: 320px) {
    .programacion-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .modal-hero-info h1 {
        font-size: 1.3rem;
    }
    
    .netv-title {
        font-size: 16px;
    }
    
    .program-card {
        min-width: 200px;
    }
    
    .contact-btn {
        font-size: 12px;
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .modal-overlay,
    .nav-toggle,
    .carrusel-controls,
    .carrusel-indicators,
    .modal-btn-play,
    .contact-btn {
        display: none !important;
    }
    
    .programa-modal-netflix,
    .modal-netv-content {
        position: static;
        box-shadow: none;
        background: white;
        color: black;
    }
}

/* ========================================
   DISEÑO NETFLIX RENOVADO - PROGRAMACIÓN
   ======================================== */

/* Main Layout */
.programacion-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    padding-top: 80px;
}

/* Netflix Loading */
.netflix-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.netflix-loading.hidden {
    display: none;
}

.loading-animation {
    text-align: center;
    max-width: 300px;
}

.loading-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 212, 196, 0.3));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.loading-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.loading-progress {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 212, 196, 0.3)); }
    100% { filter: brightness(1.5) drop-shadow(0 0 30px rgba(0, 212, 196, 0.6)); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Netflix Error */
.netflix-error {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000 0%, #2a1a1a 50%, #1a0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.error-content {
    text-align: center;
    max-width: 400px;
    padding: 40px;
}

.error-icon {
    font-size: 64px;
    color: #e50914;
    margin-bottom: 20px;
    animation: errorPulse 2s ease-in-out infinite;
}

.netflix-error h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.netflix-error p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-retry {
    background: linear-gradient(135deg, #e50914 0%, #ff1a1a 100%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

@keyframes errorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Netflix Hero */
.netflix-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 196, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-time, .hero-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.hero-live {
    color: #e50914;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary, .hero-btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #000000;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 196, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Content Sections */
.content-sections {
    padding: 0 60px 80px;
    display: none; /* Inicialmente oculto hasta que se cargue */
}

.programs-section {
    margin-bottom: 40px;
}

.programs-section:last-child {
    margin-bottom: 80px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.section-title:hover {
    color: #b3b3b3;
}

.section-title i {
    color: #46d369;
    font-size: 1.2rem;
}

.programs-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.programs-carousel::-webkit-scrollbar {
    height: 8px;
}

.programs-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.programs-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Netflix Premium Style Program Cards */
.program-card {
    min-width: 320px;
    max-width: 320px;
    background: linear-gradient(145deg, #1e1e1e 0%, #141414 100%);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.program-card:hover {
    transform: scale(1.15) translateY(-10px);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-card:hover .program-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.program-card:hover .program-card-glow {
    opacity: 1;
}

.program-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.program-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
}

.program-card-placeholder {
    color: #444444;
    font-size: 54px;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.program-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0050, #00d4ff, #ff0050);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.program-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.program-card-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card-channel {
    color: #00ff88;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.program-card-time {
    color: #e5e5e5;
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.program-card-description {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.program-card-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.program-card-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.program-card-btn.play {
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    border-color: #ff0050;
    color: #ffffff;
}

.program-card-btn.play:hover {
    background: linear-gradient(135deg, #ff4081 0%, #ff0050 100%);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.4);
}

/* Status Badge - Movido fuera de la imagen */
.program-card-status-container {
    position: absolute;
    top: -8px;
    right: 12px;
    z-index: 20;
}

.program-card-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-card-status.live {
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    color: #ffffff;
    animation: live-glow 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4);
}

.program-card-status.upcoming {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    animation: upcoming-glow 3s ease-in-out infinite alternate;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

@keyframes live-glow {
    0% { 
        box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 8px 30px rgba(255, 0, 80, 0.8);
        transform: scale(1.05);
    }
}

@keyframes upcoming-glow {
    0% { 
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
        transform: scale(1.05);
    }
}

/* Netflix Carousel Scrollbar */
.programs-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 25px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
    position: relative;
}

.programs-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 20, 20, 1) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.programs-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    width: 60px;
    height: 100%;
    background: linear-gradient(270deg, rgba(20, 20, 20, 1) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.programs-carousel::-webkit-scrollbar {
    height: 8px;
}

.programs-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.programs-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff0050, #00d4ff);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.programs-carousel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff4081, #00d4ff);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Efecto de entrada para las cards */
.program-card {
    animation: cardFadeIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }
.program-card:nth-child(5) { animation-delay: 0.5s; }
.program-card:nth-child(n+6) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Canales Grid */
.categoria-section {
    margin-bottom: 50px;
}

.categoria-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.categoria-titulo i {
    color: var(--primary-color);
}

.categoria-count {
    background: rgba(0, 212, 196, 0.2);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.canales-categoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.canal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.canal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 196, 0.2);
    border-color: var(--primary-color);
}

.canal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.canal-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.canal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.canal-info {
    flex: 1;
}

.canal-nombre {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.canal-estado {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.canal-estado .fa-circle.en-vivo {
    color: #e50914;
    animation: pulse 2s infinite;
}

.canal-estado .fa-circle.fuera-linea {
    color: #666666;
}

/* Netflix Premium Modal */
.netflix-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(20px);
    animation: modalBackdropFadeIn 0.4s ease-out;
}

.netflix-modal.show {
    display: flex;
}

@keyframes modalBackdropFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(15, 15, 15, 0.8) 80%,
        rgba(15, 15, 15, 1) 100%
    );
    z-index: 2;
}

.modal-header-placeholder {
    color: #444444;
    font-size: 80px;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
    background: rgba(255, 0, 80, 0.9);
    transform: scale(1.1) rotate(90deg);
    border-color: #ff0050;
}

.modal-body {
    padding: 40px;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.95) 100%);
}

.modal-status-badge {
    position: absolute;
    top: -60px;
    left: 40px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.modal-status-badge.live {
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    color: #ffffff;
    animation: live-glow 2s ease-in-out infinite alternate;
    box-shadow: 0 6px 25px rgba(255, 0, 80, 0.5);
}

.modal-status-badge.upcoming {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    animation: upcoming-glow 3s ease-in-out infinite alternate;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.modal-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.modal-channel {
    color: #00ff88;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.modal-meta-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #e5e5e5;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-description {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify;
}

.modal-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.modal-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.modal-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.6s;
}

.modal-btn:hover::before {
    left: 100%;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.5);
    background: linear-gradient(135deg, #ff4081 0%, #ff0050 100%);
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

/* Modal NETV Contratar */
.netv-contract-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 15000;
    backdrop-filter: blur(25px);
    animation: modalBackdropFadeIn 0.5s ease-out;
}

.netv-contract-modal.show {
    display: flex;
}

.contract-modal-content {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 25px;
    max-width: 1000px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff0050, #00d4ff, #00ff88, #ff0050) 1;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9);
    animation: contractModalSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes contractModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(100px) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
    }
}

.contract-modal-header {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff0050 0%, #00d4ff 100%);
    position: relative;
    overflow: hidden;
}

.contract-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contract-modal-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    z-index: 2;
    position: relative;
}

.contract-modal-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

.contract-modal-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.contract-modal-body {
    padding: 50px;
}

.contract-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contract-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contract-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.contract-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0050, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contract-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.contract-feature-description {
    color: #cccccc;
    line-height: 1.6;
}

.contract-contact-info {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.contract-contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 25px;
    text-align: center;
}

.contract-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contract-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-contact-icon {
    font-size: 1.5rem;
    color: #00ff88;
    width: 40px;
    text-align: center;
}

.contract-contact-text {
    color: #ffffff;
    font-weight: 600;
}

.contract-modal-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.contract-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.contract-btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.contract-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
}

.contract-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contract-btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .hero-content {
        left: 60px;
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .content-sections {
        padding: 0 60px 60px;
    }
    
    .canales-categoria-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .netflix-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        left: 40px;
        max-width: 450px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content-sections {
        padding: 0 40px 40px;
    }
    
    .canales-categoria-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .netflix-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        left: 30px;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .content-sections {
        padding: 0 40px 40px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .canales-categoria-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .program-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .program-card-image {
        height: 157px;
    }
    
    .program-card:hover {
        transform: scale(1.12) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .netflix-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .content-sections {
        padding: 0 20px 20px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .canales-categoria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .program-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .program-card-image {
        height: 135px;
    }
    
    .program-card:hover {
        transform: scale(1.08) translateY(-5px);
    }
    
    .program-card-overlay {
        padding: 15px;
    }
    
    .program-card-actions {
        gap: 8px;
    }
    
    .program-card-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .programs-carousel {
        gap: 12px;
        padding-left: 4px;
        padding-right: 4px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        height: 200px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .netflix-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .program-card-content {
        padding: 15px;
    }
    
    .canal-card {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
}
