/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b2891;
    --secondary-color: #d946ef;
    --accent-color: #c026d3;
    --purple-dark: #581c87;
    --purple-light: #e879f9;
    --dark-bg: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #1a1a1a;
    --text-dark: #ffffff;
    --text-light: #d1d5db;
    --text-muted: #6b7280;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #581c87 0%, #8b2891 30%, #c026d3 70%, #d946ef 100%);
    --gradient-secondary: linear-gradient(135deg, #3b0764 0%, #581c87 50%, #8b2891 100%);
    --gradient-accent: linear-gradient(45deg, #8b2891, #c026d3, #d946ef, #e879f9);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-purple: 0 0 20px rgba(139, 40, 145, 0.5);
    --shadow-purple-lg: 0 0 40px rgba(139, 40, 145, 0.6);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.8);
    --shadow-dark-lg: 0 16px 64px rgba(0, 0, 0, 0.9);
    --border-purple: 1px solid rgba(139, 40, 145, 0.3);
    --glow-purple: drop-shadow(0 0 10px #8b2891) drop-shadow(0 0 20px #c026d3);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Tipografía mejorada para títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Iconos en títulos */
h1 i, h2 i, h3 i, h4 i, h5 i, h6 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    opacity: 0.9;
    font-size: 0.9em;
    vertical-align: middle;
}

/* Efectos especiales para iconos en títulos principales */
h1 i, h2 i {
    background: linear-gradient(135deg, #8b2891, #c026d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(139, 40, 145, 0.5));
}

/* Pack icons específicos */
.pack-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0;
}

/* Stat icons específicos */
.stat-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(139, 40, 145, 0.8));
}

/* Plan badges icons */
.plan-badge i {
    margin-right: 0.25rem;
    font-size: 0.9em;
}

/* Mejoras generales de consistencia visual */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Espaciado consistente para secciones */
section {
    padding: 60px 0;
}

/* Mejora en botones generales */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Transiciones suaves globales */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 40, 145, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(88, 28, 135, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilidades */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(to bottom, #8a2be2, #4a148c);
    border: 2px solid #ff79c6;
    color: white;
    box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.7s;
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #9370db, #6a5acd);
    box-shadow: 0 0 25px rgba(255, 121, 198, 0.9);
    transform: translateY(-5px);
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover::after {
    left: 120%;
}

@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 20px rgba(139, 40, 145, 0.1);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-purple);
    transform: translateY(-3px);
}

.btn-plan {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    margin-top: auto;
    font-weight: 700;
    margin-bottom: 0;
}

.btn-plan:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-neon-lg);
}

/* Header Mejorado - Oculto inicialmente */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 40, 145, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

/* Header visible cuando se hace scroll */
.header.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.8;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(139, 40, 145, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(139, 40, 145, 0.6); }
}

.navbar {
    padding: 15px 0;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.nav-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 40, 145, 0.5));
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(139, 40, 145, 0.8));
}

.nav-brand h2 {
    color: var(--white);
    font-weight: 900;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(139, 40, 145, 0.5);
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none; /* Oculto porque ahora usamos logo imagen */
}

.nav-brand span {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    display: block;
    margin-top: 2px;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-brand h2:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    background: rgba(139, 40, 145, 0.1);
    border-radius: 50px;
    padding: 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 40, 145, 0.3);
    box-shadow: 
        0 8px 25px rgba(139, 40, 145, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-menu li {
    position: relative;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: block;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(139, 40, 145, 0.8);
    transform: translateY(-2px);
    border-color: rgba(139, 40, 145, 0.5);
    box-shadow: 0 5px 15px rgba(139, 40, 145, 0.3);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 40, 145, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(139, 40, 145, 0.1);
    border: 1px solid rgba(139, 40, 145, 0.2);
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(139, 40, 145, 0.2);
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 40, 145, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: var(--primary-color);
}

/* Hero Section - Diseño Elegante y Profesional CON PARALLAX */
.hero-section {
    height: 100vh;
    background: url('../images/background3.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed !important; /* PARALLAX ACTIVADO */
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px;
    overflow: hidden;
    transform: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    will-change: transform;
}

/* Overlay elegante con gradiente sutil */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(74, 20, 140, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* Efecto sutil de líneas diagonales */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 121, 198, 0.05) 49%, rgba(255, 121, 198, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(138, 43, 226, 0.05) 49%, rgba(138, 43, 226, 0.05) 51%, transparent 52%);
    background-size: 60px 60px;
    z-index: 1;
    opacity: 0.3;
}

@keyframes floatingOrbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-20px, -30px) scale(1.1);
    }
    66% {
        transform: translate(30px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: contentFadeIn 1.5s ease-out 0.5s forwards;
}

/* Logo en el hero */
.hero-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: logoFadeIn 1.2s ease-out 0.2s forwards;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(255, 121, 198, 0.3));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0 0 40px rgba(255, 121, 198, 0.5));
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #ffffff !important; /* BLANCO PURO */
    text-shadow: none !important; /* SIN SOMBRAS HORRIBLES */
    filter: none !important;
    transform: none !important;
    letter-spacing: -1px;
    animation: titleFadeIn 1.2s ease-out 0.8s both;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .highlight {
    display: block;
    color: #ffffff; /* Blanco puro para máxima legibilidad */
    font-size: 0.65em;
    margin-top: 20px;
    font-weight: 800; /* Más pesado para mayor visibilidad */
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    animation: highlightFadeIn 1s ease-out 1.2s both;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(139, 40, 145, 0.4); /* Sombra más simple y clara */
    background: rgba(139, 40, 145, 0.15); /* Fondo más sutil */
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid rgba(139, 40, 145, 0.6);
    backdrop-filter: blur(10px); /* Efecto glass */
}

/* SOLUCIÓN NUCLEAR - FORZAR ANTI-BORROSIDAD */
.hero-section, .hero-content, .hero-content h1, .hero-content .highlight, #hero-highlight-text {
    transform: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    will-change: auto !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -ms-backdrop-filter: none !important;
}

/* ESTILOS ESPECÍFICOS CON ID ÚNICO - MÁXIMA PRIORIDAD */
#hero-highlight-text {
    display: block !important;
    color: #ffffff !important;
    background: #8b2891 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 20px 30px !important;
    margin: 25px auto !important;
    border-radius: 30px !important;
    border: 3px solid #ffffff !important;
    text-align: center !important;
    width: fit-content !important;
    position: relative !important;
    z-index: 999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: Arial, sans-serif !important;
    line-height: 1.2 !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    image-rendering: crisp-edges !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

/* LÍNEA DECORATIVA ESPECÍFICA PARA ID ÚNICO - TEMPORALMENTE DESHABILITADA */
/*
#hero-highlight-text::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    z-index: 9999 !important;
}
*/

@keyframes highlightFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: textFadeIn 1s ease-out 1.4s both;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsFadeIn 1s ease-out 1.6s both;
}

@keyframes buttonsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: rgba(255, 121, 198, 0.2);
    border: 2px solid #ff79c6;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 121, 198, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 121, 198, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(255, 121, 198, 0.3);
    box-shadow: 0 6px 20px rgba(255, 121, 198, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
    border-color: #ff79c6;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

/* Asegurar que TODOS los botones primarios mantengan texto blanco en hover */
.btn.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
}

/* Responsive Design para Hero - Diseño Elegante */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 20px;
        background-attachment: scroll;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-logo {
        margin-bottom: 30px;
    }
    
    .hero-logo-img {
        height: 80px;
        max-width: 220px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .hero-content .highlight {
        font-size: 0.7em;
        letter-spacing: 2px;
        margin-top: 15px;
        padding: 8px 16px; /* Padding más compacto en móvil */
        font-weight: 800; /* Mantener peso alto */
    }
    
    /* RESPONSIVE ESPECÍFICO PARA ID ÚNICO */
    #hero-highlight-text {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 280px;
        padding: 14px 28px;
        font-size: 0.95rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 15px;
    }
    
    .hero-logo {
        margin-bottom: 25px;
    }
    
    .hero-logo-img {
        height: 60px;
        max-width: 180px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content .highlight {
        font-size: 0.65em;
        letter-spacing: 1px;
        padding: 6px 12px; /* Padding aún más compacto en pantallas pequeñas */
        font-weight: 800; /* Mantener peso alto */
    }
    
    /* RESPONSIVE MÓVIL ESPECÍFICO PARA ID ÚNICO */
    #hero-highlight-text {
        font-size: 12px !important;
        padding: 10px 15px !important;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    
    .btn {
        width: 260px;
        padding: 12px 24px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}















/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-left, .hero-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#bg-video, .bg-video-tv {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-video {
    opacity: 1 !important;
    filter: brightness(0.4) contrast(1.1) !important;
}

#bg-video.loaded {
    opacity: 1;
}

/* Fallback para cuando el video no carga */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(139, 40, 145, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(circle at 30% 70%, rgba(212, 70, 239, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 40, 145, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(88, 28, 135, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    color: var(--white);
    text-align: center;
    z-index: 10;
    position: relative;
}

/* Animación rotativa removida para mostrar el video de fondo */

/* Planes Section */
.planes-section {
    padding: 80px 0 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.planes-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #151520 50%, #0f0f1a 100%);
}

.planes-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.7) contrast(1.0) saturate(0.9);
    z-index: 1;
}

/* Asegurar cobertura completa en pantallas grandes */
@media (min-aspect-ratio: 16/9) {
    .planes-bg-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .planes-bg-video {
        width: auto;
        height: 100%;
    }
}

.planes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(8, 8, 15, 0.65) 0%,
        rgba(25, 15, 35, 0.60) 30%,
        rgba(15, 10, 25, 0.70) 70%,
        rgba(5, 5, 12, 0.75) 100%
    );
    z-index: 2;
}

.planes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(50, 30, 80, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 50, 120, 0.04) 0%, transparent 50%);
    z-index: 2;
}

.planes-section .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 4;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(80, 60, 120, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.section-header h2:hover {
    color: #d946ef;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 40, 145, 0.5);
}

/* Device Selector */
.device-selector {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-dark);
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    border: var(--border-neon);
    overflow: hidden;
}

.device-selector::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 40, 145, 0.1), transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.device-selector h3 {
    margin-bottom: 40px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.device-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.device-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(139, 40, 145, 0.5);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

/* Gaming Section */
.gaming-section {
    padding: 120px 0;
    background-image: url('../images/background4.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        rgba(0, 0, 0, 0.4),
        radial-gradient(circle at 30% 70%, rgba(139, 40, 145, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(88, 28, 135, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.gaming-section .container {
    position: relative;
    z-index: 1;
}

.gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

/* Gaming Performance */
.gaming-performance {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(139, 40, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.performance-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.performance-header p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: rgba(139, 40, 145, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(139, 40, 145, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 40, 145, 0.3);
    border-color: rgba(139, 40, 145, 0.5);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-surface);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    0% { width: 0; }
    100% { width: var(--target-width, 100%); }
}

/* Gaming Features */
.gaming-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gaming-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(139, 40, 145, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gaming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 40, 145, 0.1), transparent);
    transition: left 0.6s ease;
}

.gaming-card:hover::before {
    left: 100%;
}

.gaming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 40, 145, 0.3);
    border-color: rgba(139, 40, 145, 0.5);
}

.gaming-card.primary {
    border-left: 4px solid var(--primary-color);
}

.gaming-card.secondary {
    border-left: 4px solid var(--secondary-color);
}

.gaming-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(139, 40, 145, 0.4);
}

.gaming-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.gaming-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.gaming-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Gaming Platforms */
.gaming-platforms {
    margin-top: 80px;
    text-align: center;
}

.gaming-platforms h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 50px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.platform-item {
    background: var(--dark-card);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(139, 40, 145, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 40, 145, 0.3);
    border-color: rgba(139, 40, 145, 0.5);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.platform-item:hover .platform-icon img {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(2);
}

.platform-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.platform-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gaming CTA */
.gaming-cta {
    margin-top: 80px;
    text-align: center;
    background: var(--dark-card);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(139, 40, 145, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mejora de contraste para botones en gaming CTA - SOLUCIÓN DEFINITIVA */
.gaming-cta .btn-primary {
    background: linear-gradient(to bottom, #8a2be2, #4a148c) !important;
    border: 2px solid #ff79c6 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1) !important;
    box-shadow: 0 0 15px rgba(255, 121, 198, 0.6) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    /* FORZAR PROPIEDADES PARA EVITAR CONFLICTOS */
    -webkit-text-fill-color: unset !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-decoration: none !important;
}

.gaming-cta .btn-primary::after {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -60% !important;
    width: 20% !important;
    height: 200% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    transform: rotate(30deg) !important;
    transition: all 0.7s !important;
}

.gaming-cta .btn-primary:hover {
    background: linear-gradient(to bottom, #9370db, #6a5acd) !important;
    box-shadow: 0 0 25px rgba(255, 121, 198, 0.9) !important;
    transform: translateY(-5px) !important;
    color: #ffffff !important;
    border: 2px solid #ff79c6 !important;
    /* FORZAR PROPIEDADES PARA EVITAR CONFLICTOS */
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1) !important;
}

.gaming-cta .btn-primary:hover::after {
    left: 120% !important;
}

.gaming-cta .btn-secondary {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-color: rgba(139, 40, 145, 0.6);
}

.gaming-cta .btn-secondary:hover {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1) !important;
    background: rgba(139, 40, 145, 0.3) !important;
    border-color: rgba(139, 40, 145, 0.8);
}

/* FORZAR VISIBILIDAD DEL TEXTO - SOLUCIÓN DEFINITIVA */
.gaming-cta .btn-primary,
.gaming-cta .btn-primary *,
.gaming-cta .btn-primary i,
.gaming-cta .btn-primary span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gaming-cta .btn-primary:hover,
.gaming-cta .btn-primary:hover *,
.gaming-cta .btn-primary:hover i,
.gaming-cta .btn-primary:hover span {
    color: #8b2891 !important;
    -webkit-text-fill-color: #8b2891 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Gaming Section */
@media (max-width: 768px) {
    .gaming-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gaming-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .gaming-card {
        padding: 25px;
    }
}

/* Sección Header - Slogan */
.section-header .slogan {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(139, 40, 145, 0.5);
}

/* Sección Fibra Óptica */
.fibra-section {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 40, 145, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 70, 239, 0.05) 0%, transparent 50%),
        var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.fibra-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

.fibra-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 20px;
    border: var(--border-neon);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 40, 145, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 40, 145, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(139, 40, 145, 0.4);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pestañas Fibra/Wireless Interactivas */
.tech-tabs {
    margin-top: 60px;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background: var(--dark-card);
    border: 2px solid rgba(139, 40, 145, 0.3);
    padding: 20px 40px;
    border-radius: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 40, 145, 0.1), transparent);
    transition: left 0.6s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 40, 145, 0.3);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 40, 145, 0.5);
}

.tab-btn.active::before {
    display: none;
}

.tab-btn i {
    font-size: 1.3rem;
}

/* Contenido de pestañas */
.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Video Showcase */
.video-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: var(--dark-card);
}

.tech-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.video-showcase:hover .tech-video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 25px 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-showcase:hover .video-overlay {
    opacity: 1;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.tech-badge i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Información técnica */
.tech-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.tech-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tech-features {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1rem;
}

.feature-point i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

/* Estadísticas técnicas */
.tech-stats {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(139, 40, 145, 0.3);
    min-width: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(139, 40, 145, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.stat-item:hover::before {
    height: 100%;
    opacity: 0.1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Video de Marketing */
.marketing-video-section {
    margin-top: 80px;
    text-align: center;
}

.marketing-video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.marketing-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.marketing-video-container:hover .marketing-video {
    transform: scale(1.05);
}

.marketing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marketing-video-container:hover .marketing-overlay {
    opacity: 1;
}

.marketing-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.marketing-overlay p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive para pestañas */
@media (max-width: 768px) {
    .tab-navigation {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 15px 30px;
    }

    .tech-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        min-width: 80px;
        padding: 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .marketing-video {
        height: 250px;
    }

    .tech-info h3 {
        font-size: 1.6rem;
    }
}

/* Sección SIDEBOT */
.sidebot-section {
    background: var(--dark-card);
    padding: 40px 40px 80px 40px;
    border-radius: 20px;
    margin-top: 60px;
    margin-bottom: 80px;
    border: var(--border-neon);
    position: relative;
    overflow: hidden;
}

.sidebot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 40, 145, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sidebot-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    text-align: center;
}

.sidebot-icon {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: robotPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(139, 40, 145, 0.5);
    overflow: hidden;
    padding: 0;
}

@keyframes robotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sidebot-content {
    flex: 1;
    text-align: center;
}

.sidebot-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.sidebot-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.response-time i {
    font-size: 1.2rem;
}

/* Sidelink mention */
.sidelink-mention {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 40, 145, 0.3);
    text-align: center;
}

.sidelink-mention p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sidelink-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 4px 8px;
}

.sidelink-link:hover {
    color: var(--white);
    background: rgba(139, 40, 145, 0.2);
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(139, 40, 145, 0.8);
}

.sidelink-mini-icon {
    width: 16px;
    height: 16px;
    border-radius: 50% !important;
    filter: drop-shadow(0 0 8px rgba(139, 40, 145, 0.6));
    transition: all 0.3s ease;
    object-fit: cover;
    background: rgba(139, 40, 145, 0.2);
    padding: 0;
    border: 1px solid rgba(139, 40, 145, 0.6);
    clip-path: circle(50% at 50% 50%);
    overflow: hidden;
    display: inline-block;
}

.sidelink-link:hover .sidelink-mini-icon {
    filter: drop-shadow(0 0 12px rgba(139, 40, 145, 1));
    transform: scale(1.1);
}

/* Icono principal de Sidelink */
.sidelink-main-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebot-icon a {
    display: inline-block;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebot-icon a:hover {
    transform: scale(1.1);
}

.sidebot-icon a:hover .sidelink-main-icon {
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8));
}

/* Pestañas de Planes */
.planes-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 4;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(139, 40, 145, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    min-width: 180px;
    font-family: 'Poppins', sans-serif;
}

.tab-btn i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.tab-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 5px 0;
}

.tab-btn small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tab-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(139, 40, 145, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 40, 145, 0.3);
}

.tab-btn.active {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(139, 40, 145, 0.2), rgba(217, 70, 239, 0.1));
    color: white;
    box-shadow: 0 10px 30px rgba(139, 40, 145, 0.4);
}

.tab-btn.active i {
    color: var(--purple-light);
    transform: scale(1.1);
}

/* Contenido de Planes */
.planes-content {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.planes-content.active {
    display: block;
    opacity: 1;
    animation: fadeInContent 0.5s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Información Wireless */
.wireless-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(10, 10, 20, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(139, 40, 145, 0.3);
    backdrop-filter: blur(15px);
}

.wireless-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(139, 40, 145, 0.3), rgba(217, 70, 239, 0.2));
    border-radius: 25px;
    margin-bottom: 15px;
    border: 1px solid rgba(139, 40, 145, 0.4);
}

.wireless-badge i {
    color: var(--purple-light);
    font-size: 1.2rem;
}

.wireless-badge span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.wireless-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Planes Wireless Específicos */
.wireless-plan {
    border: 2px solid rgba(139, 40, 145, 0.4);
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9), rgba(139, 40, 145, 0.05));
}

.wireless-plan .wireless-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    margin-bottom: 15px;
}

.wireless-plan .wireless-icon i {
    color: white;
    font-size: 1.5rem;
}

.wireless-plan:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(139, 40, 145, 0.4);
    transform: translateY(-8px);
}

.wireless-plan.featured {
    border-color: var(--purple-light);
    box-shadow: 0 10px 30px rgba(233, 121, 249, 0.3);
}

/* Botones Wireless Mejorados */
.wireless-btn {
    position: relative;
    background: linear-gradient(135deg, #8a2be2, #d946ef);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wireless-btn span {
    position: relative;
    z-index: 2;
}

.wireless-btn i {
    position: relative;
    z-index: 2;
    font-size: 1.1em;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.wireless-btn:hover .btn-shine {
    left: 100%;
}

.wireless-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
    background: linear-gradient(135deg, #9370db, #ff69b4);
}

.wireless-btn.featured-btn {
    background: linear-gradient(135deg, #ff69b4, #8a2be2, #d946ef);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

.wireless-btn.featured-btn:hover {
    background: linear-gradient(135deg, #ff1493, #9370db, #ff69b4);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.7);
}

.wireless-btn.premium-btn {
    background: linear-gradient(135deg, #d946ef, #8a2be2, #c026d3);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.5);
}

.wireless-btn.premium-btn:hover {
    background: linear-gradient(135deg, #e879f9, #9370db, #d946ef);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.7);
}

/* TV Pack Selectors */
.tv-packs-selector {
    margin: 10px 0;
    padding: 12px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.tv-packs-selector h4 {
    color: #1e90ff;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tv-pack-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pack-option {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pack-option:hover {
    background: rgba(30, 144, 255, 0.1);
    transform: translateX(5px);
}

.pack-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: #1e90ff;
    cursor: pointer;
}

.pack-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
}

.pack-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.pack-price {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.85rem;
}

.pack-option input[type="checkbox"]:checked + .pack-label {
    color: #1e90ff;
}

.pack-option input[type="checkbox"]:checked + .pack-label .pack-price {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Responsive adjustments for TV packs */
@media (max-width: 768px) {
    .tv-packs-selector {
        padding: 15px;
    }
    
    .pack-label {
        font-size: 0.85rem;
    }
    
    .pack-option {
        padding: 8px;
    }
}

/* Selected Plan State */
.plan-card.selected {
    border: 2px solid #1e90ff;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(138, 43, 226, 0.15));
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
    position: relative;
}

.plan-card.selected::before {
    content: '✓ SELECCIONADO';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    z-index: 15;
    animation: selectedPulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos responsivos para la etiqueta SELECCIONADO */
@media (max-width: 768px) {
    .plan-card.selected::before {
        top: 6px;
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 22px;
        letter-spacing: 0.6px;
    }
    
    .plan-card.selected:hover::before {
        top: 6px !important;
        padding: 6px 12px !important;
        font-size: 0.85rem !important;
        border-radius: 22px !important;
        letter-spacing: 0.6px !important;
    }
}

@media (max-width: 480px) {
    .plan-card.selected::before {
        top: 5px;
        padding: 5px 10px;
        font-size: 0.8rem;
        border-radius: 20px;
        letter-spacing: 0.5px;
    }
    
    .plan-card.selected:hover::before {
        top: 5px !important;
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        letter-spacing: 0.5px !important;
    }
}

@keyframes selectedPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
    }
    50% { 
        transform: translateX(-50%) scale(1.05); 
    }
}

/* SweetAlert Custom Styles */
.colored-toast {
    border-left: 4px solid #1e90ff !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}

/* Animaciones para actualización de precios */
@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes priceUpdate {
    0% {
        transform: scale(1);
        color: inherit;
    }
    50% {
        transform: scale(1.1);
        color: #1e90ff;
        text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
    }
    100% {
        transform: scale(1);
        color: inherit;
        text-shadow: none;
    }
}

/* Mejora en la visualización de plan seleccionado */
.selected-item .price {
    font-weight: bold;
    color: #1e90ff;
    font-size: 1.1rem; /* Aumentado para mejor visibilidad */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Añadido para mejor contraste */
}

/* Mejorar iconos en elementos seleccionados */
.selected-item i {
    margin-right: 8px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mejorar texto en elementos seleccionados */
.selected-item span:first-child {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Info Grid - Nuevo diseño */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 144, 255, 0.5);
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.2);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e90ff, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card .contact-details h4 {
    color: #1e90ff;
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-card .contact-details p {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card .contact-details small {
    color: #aaa;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

/* Mapa de Google Maps */
.map-container {
    margin: 50px 0 40px 0;
    position: relative;
    z-index: 2;
}

.map-container h3 {
    color: #1e90ff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.map-container h3 i {
    margin-right: 10px;
    color: #ff6b35;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(30, 144, 255, 0.2);
    border: 2px solid rgba(30, 144, 255, 0.3);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 144, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(138, 43, 226, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
    position: relative;
    z-index: 2;
}

.map-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 0 0 15px 15px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-top: none;
    text-align: center;
}

.map-info p {
    color: #fff;
    margin: 8px 0;
    font-size: 0.95rem;
}

.map-info p i {
    color: #ff6b35;
    margin-right: 8px;
    width: 16px;
}

.map-info strong {
    color: #1e90ff;
}

/* Modern Form Container */
.modern-form-container {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1e90ff, #8a2be2, #ff1493, #1e90ff);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    animation: gradientShift 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.form-wrapper:hover::before {
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-wrapper .form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(30, 144, 255, 0.3);
}

.form-wrapper .form-header h3 {
    color: #1e90ff;
    font-size: 1.4rem;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-wrapper .form-header p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Modern Form Styles */
.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.modern-form .form-group.full-width {
    grid-column: 1 / -1;
}

.modern-form .form-group input,
.modern-form .form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.modern-form .form-group input:focus,
.modern-form .form-group textarea:focus {
    outline: none;
    border-color: #1e90ff;
    background: rgba(30, 144, 255, 0.1);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.modern-form .form-group label {
    position: absolute;
    top: 12px;
    left: 45px;
    color: #aaa;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.9rem;
}

.modern-form .form-group input:focus + label,
.modern-form .form-group input:not(:placeholder-shown) + label,
.modern-form .form-group textarea:focus + label,
.modern-form .form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 10px;
    font-size: 0.75rem;
    color: #1e90ff;
    background: #1a1a2e;
    padding: 0 5px;
}

.modern-form .form-group i {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #1e90ff;
    font-size: 1rem;
    z-index: 2;
}

/* Selection Panel */
.selection-panel {
    background: rgba(30, 144, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.selection-panel h4 {
    color: #1e90ff;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selection-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selection-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selection-item .no-selection {
    color: #888;
    font-style: italic;
}

.total-summary {
    background: linear-gradient(135deg, #1e90ff, #8a2be2);
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.total-summary .label {
    color: #fff;
    font-size: 1rem;
}

.total-summary .amount {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Submit Button */
.submit-btn {
    display: inline-block; /* Cambiado para que sea más compacto */
    padding: 6px 12px; /* Padding muy pequeño */
    background: linear-gradient(135deg, #1e90ff, #8a2be2);
    border: none;
    border-radius: 6px; /* Radio más pequeño */
    color: white;
    font-size: 0.8rem; /* Texto más pequeño */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center; /* Centrar texto */
    position: relative;
    overflow: hidden;
    margin: 15px auto 0; /* Centrado */
    display: block; /* Para centrar con margin auto */
    width: fit-content; /* Solo el ancho del contenido */
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        margin: 40px 0 30px 0;
    }
    
    .map-container h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .map-wrapper iframe {
        height: 280px;
    }
    
    .map-info {
        padding: 15px;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .map-container {
        margin: 30px 0 25px 0;
    }
    
    .map-container h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .map-info {
        padding: 12px;
    }
    
    .map-info p {
        font-size: 0.85rem;
        margin: 6px 0;
    }
}

/* OLD CONTACT STYLES - DISABLED
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
END OLD STYLES */

/* Company Info */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reducido de 25px */
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 18px; /* Reducido de 25px */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-header {
    text-align: center;
    margin-bottom: 15px; /* Reducido de 20px */
    padding-bottom: 10px; /* Reducido de 12px */
    border-bottom: 1px solid rgba(30, 144, 255, 0.3);
}

.info-header h3 {
    color: #1e90ff;
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-header p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reducido de 20px */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px; /* Reducido de 15px */
    padding: 12px; /* Reducido de 15px */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(30, 144, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 35px; /* Reducido de 40px */
    height: 35px; /* Reducido de 40px */
    background: linear-gradient(135deg, #1e90ff, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-content h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.contact-content small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Social Section */
.social-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h4 {
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #1e90ff, #8a2be2);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 18px; /* Reducido de 25px */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-header {
    text-align: center;
    margin-bottom: 15px; /* Reducido de 20px */
}

.map-header h4 {
    color: #1e90ff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px; /* Reducido de 40px */
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 20px; /* Reducido de 30px */
    padding-bottom: 15px; /* Reducido de 20px */
    border-bottom: 1px solid rgba(30, 144, 255, 0.3);
}

.form-header h3 {
    color: #1e90ff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr; /* Cambiado de repeat(2, 1fr) a 1fr */
    gap: 15px; /* Reducido de 20px */
}

/* Floating Labels */
.form-group.floating-label {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group.floating-label input,
.form-group.floating-label textarea {
    padding: 12px 40px 12px 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group.floating-label label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    z-index: 1;
}

.form-group.floating-label input:focus,
.form-group.floating-label input:not(:placeholder-shown),
.form-group.floating-label textarea:focus,
.form-group.floating-label textarea:not(:placeholder-shown) {
    border-color: #1e90ff;
    background: rgba(30, 144, 255, 0.1);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.form-group.floating-label input:focus + label,
.form-group.floating-label input:not(:placeholder-shown) + label,
.form-group.floating-label textarea:focus + label,
.form-group.floating-label textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 10px;
    font-size: 0.8rem;
    color: #1e90ff;
    background: linear-gradient(to right, #0a0a0a, #1a1a2e);
    padding: 0 5px;
    border-radius: 4px;
}

.field-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group.floating-label input:focus ~ .field-icon,
.form-group.floating-label textarea:focus ~ .field-icon {
    color: #1e90ff;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.floating-label textarea {
    resize: vertical;
    min-height: 80px; /* Reducido de 100px */
}

/* Selection Summary */
.selection-summary {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 15px;
    padding: 18px; /* Reducido de 25px */
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.selection-summary h4 {
    color: #1e90ff;
    margin-bottom: 15px; /* Reducido de 20px */
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px; /* Aumentado para mejor presentación */
    margin-bottom: 10px; /* Aumentado para mejor espaciado */
    color: #fff;
    font-size: 1rem; /* Aumentado de 0.9rem a 1rem para mejor legibilidad */
    font-weight: 500; /* Añadido para mejor peso de fuente */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid #1e90ff;
    line-height: 1.4; /* Añadido para mejor espaciado de líneas */
}

.selected-item:empty {
    display: none;
}

.no-selection {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.total-price {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.total-price .label {
    color: #fff;
}

.total-price .amount {
    color: #00ff88;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.total-price .period {
    color: rgba(255, 255, 255, 0.8);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px; /* Reducido de 20px */
}

.btn-submit {
    padding: 16px 32px !important;
    background: linear-gradient(135deg, #8a2be2 0%, #9d4edd 50%, #a855f7 100%) !important;
    border: none;
    border-radius: 12px !important;
    color: white;
    font-size: 1.1rem !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px !important;
    box-shadow: 
        0 8px 25px rgba(138, 43, 226, 0.4),
        0 4px 12px rgba(138, 43, 226, 0.2) !important;
    width: auto !important;
    margin-top: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-submit::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 ease;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(138, 43, 226, 0.6),
        0 8px 20px rgba(138, 43, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #9d4edd 0%, #a855f7 50%, #c084fc 100%) !important;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-submit i {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px; /* Reducido de 40px */
    }
    
    .form-container {
        padding: 20px; /* Reducido de 25px */
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px; /* Reducido de 15px para móviles */
    }
    
    .selection-summary {
        padding: 15px; /* Reducido de 20px */
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .map-embed iframe {
        height: 180px; /* Reducido de 250px */
    }
}

/* Planes Grid */
.planes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 4;
    padding: 20px;
}

/* Grid específico para planes wireless - 3 columnas */
.wireless-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    gap: 25px;
}

/* Para pantallas muy anchas */
@media (min-width: 1400px) {
    .wireless-grid {
        max-width: 1300px;
        gap: 30px;
    }
    
    .planes-section .container {
        max-width: 1500px;
        padding: 0 40px;
    }
}

.plan-card {
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    padding: 15px 18px;
    text-align: center;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(80, 60, 120, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(80, 60, 120, 0.3);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    z-index: 1;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(139, 40, 145, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-20px) scale(1.03) perspective(1000px) rotateY(3deg) rotateX(1deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(100, 80, 150, 0.6),
        0 0 40px rgba(80, 60, 120, 0.4);
    background: rgba(20, 20, 35, 0.9);
    border-color: rgba(100, 80, 150, 0.7);
    z-index: 10;
}

.plan-card:hover::before {
    height: 100%;
    opacity: 0.1;
    background: var(--gradient-primary);
}

/* Asegurar que las tarjetas seleccionadas no sean afectadas por el hover general */
.plan-card.selected:hover::before {
    content: '✓ SELECCIONADO' !important;
    position: absolute !important;
    top: 8px !important;
    left: 50% !important;
    transform: translateX(-50%) scale(1.02) !important;
    background: linear-gradient(135deg, #00ff88, #00cc6a) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    z-index: 25 !important;
    animation: selectedPulse 1.5s infinite !important;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    white-space: nowrap !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    width: auto !important;
    opacity: 1 !important;
}

.plan-card:hover::after {
    opacity: 1;
}


.plan-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 
        var(--shadow-dark-lg),
        var(--shadow-neon);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: translateY(-20px) scale(1.08) perspective(1000px) rotateY(3deg) rotateX(1deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(100, 80, 150, 0.8),
        0 0 50px rgba(80, 60, 120, 0.6);
    z-index: 15;
}

.plan-card.featured::before {
    height: 6px;
    background: var(--gradient-neon);
    animation: rainbowBorder 3s linear infinite;
}

@keyframes rainbowBorder {
    0%, 100% { background: var(--gradient-primary); }
    25% { background: linear-gradient(135deg, #ff1493, #00ff80); }
    50% { background: linear-gradient(135deg, #00ff80, #0080ff); }
    75% { background: linear-gradient(135deg, #0080ff, #ff8000); }
}

.plan-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(139, 40, 145, 0.4);
    z-index: 2;
}

.plan-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speed {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.speed::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.5;
    border-radius: 1px;
}

.plan-price {
    margin-bottom: 35px;
    position: relative;
}

.price-crossed {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-current {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.plan-features li:hover {
    color: var(--white);
    padding-left: 8px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1rem;
    filter: var(--glow-pink);
    min-width: 18px;
}

/* TV Section */
.tv-section {
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
    background: var(--dark-bg);
}

.tv-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 40, 145, 0.8), rgba(212, 70, 239, 0.6), rgba(139, 40, 145, 0.8), transparent);
    border-radius: 2px;
    z-index: 1;
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.tv-section .container {
    position: relative;
    z-index: 2;
}

.tv-section .video-background {
    filter: brightness(0.2) contrast(1.3);
}

.tv-section .video-overlay {
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 40, 145, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 70, 239, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Video de fondo Universal+ */
.universal-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.universal-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

.universal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(139, 40, 145, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%),
        radial-gradient(circle at 70% 30%, rgba(212, 70, 239, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.tv-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

/* ===== NUEVA SECCIÓN TV PREMIUM SHOWCASE ===== */
.tv-premium-showcase {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

/* Header Section */
.tv-header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.tv-title-container {
    padding: 0 20px;
}

.tv-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.tv-title-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tv-title-container p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Visual Showcase */
.tv-visual-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.universal-display {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.universal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.universal-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #1e90ff, #8a2be2, #ff6b6b, #1e90ff);
    background-size: 400% 400%;
    animation: glowPulse 4s ease-in-out infinite;
    border-radius: 25px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
}

@keyframes glowPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Floating Stats */
.tv-stats-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px 16px;
    text-align: center;
    color: white;
    animation: floatAnimation 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-stat:nth-child(1) {
    top: -20px;
    left: -30px;
}

.floating-stat:nth-child(2) {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.floating-stat:nth-child(3) {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-stat.delay-1 {
    animation-delay: 1s;
}

.floating-stat.delay-2 {
    animation-delay: 2s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e90ff;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Content Grid */
.tv-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Features Cards */
.features-cards-container h3 {
    color: #1e90ff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 40, 145, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 40, 145, 0.5);
    box-shadow: 0 15px 35px rgba(139, 40, 145, 0.2);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e90ff, #8a2be2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-card-icon i {
    color: white;
    font-size: 1.4rem;
}

.feature-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Premium Packs */
.packs-premium-container h3 {
    color: #1e90ff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-packs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-pack {
    position: relative;
}

.premium-pack input[type="checkbox"] {
    display: none;
}

.pack-label {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pack-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.pack-label:hover::before {
    left: 100%;
}

.pack-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.premium-pack.futbol .pack-label:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.premium-pack.peliculas .pack-label:hover {
    border-color: rgba(162, 155, 254, 0.5);
    box-shadow: 0 10px 25px rgba(162, 155, 254, 0.2);
}

.premium-pack.golf .pack-label:hover {
    border-color: rgba(0, 210, 211, 0.5);
    box-shadow: 0 10px 25px rgba(0, 210, 211, 0.2);
}

.pack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pack-icon-new {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-pack.futbol .pack-icon-new {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.premium-pack.peliculas .pack-icon-new {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.premium-pack.golf .pack-icon-new {
    background: linear-gradient(135deg, #00d2d3, #01a3a4);
}

.pack-icon-new i {
    color: white;
    font-size: 1.3rem;
}

.pack-check {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pack-check i {
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-pack input[type="checkbox"]:checked + .pack-label .pack-check {
    background: #4CAF50;
    border-color: #4CAF50;
}

.premium-pack input[type="checkbox"]:checked + .pack-label .pack-check i {
    opacity: 1;
}

.pack-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.pack-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pack-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1e90ff;
}

.pack-price span {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Responsive Design para TV Premium Showcase */
@media (max-width: 1024px) {
    .tv-premium-showcase {
        margin: 40px 0;
        padding: 0 20px;
    }
    
    .tv-header-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .tv-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .universal-display {
        width: 280px;
        height: 180px;
    }
    
    .floating-stat {
        position: relative;
        margin: 10px 5px;
        display: inline-block;
    }
    
    .tv-stats-floating {
        position: relative;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    
    .floating-stat:nth-child(1),
    .floating-stat:nth-child(2),
    .floating-stat:nth-child(3) {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .tv-premium-showcase {
        margin: 30px 0;
        padding: 0 15px;
    }
    
    .tv-title-container {
        padding: 0 10px;
    }
    
    .tv-title-container h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .tv-title-container p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .tv-premium-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .universal-display {
        width: 220px;
        height: 140px;
    }
    
    .floating-stat {
        padding: 8px 12px;
        font-size: 0.85rem;
        margin: 5px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .feature-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-card-icon i {
        font-size: 1.2rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .pack-label {
        padding: 15px;
    }
    
    .pack-icon-new {
        width: 40px;
        height: 40px;
    }
    
    .pack-icon-new i {
        font-size: 1.2rem;
    }
    
    .pack-info h4 {
        font-size: 1rem;
    }
    
    .pack-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tv-premium-showcase {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .tv-title-container {
        padding: 0 5px;
    }
    
    .tv-title-container h2 {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .tv-title-container p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .tv-premium-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    
    .universal-display {
        width: 180px;
        height: 120px;
    }
    
    .universal-glow {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        filter: blur(10px);
    }
    
    .floating-stat {
        padding: 6px 10px;
        font-size: 0.8rem;
        margin: 3px;
        border-radius: 10px;
    }
    
    .stat-icon {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .features-cards-container h3,
    .packs-premium-container h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .feature-card-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }
    
    .feature-card-icon i {
        font-size: 1.1rem;
    }
    
    .feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .pack-label {
        padding: 12px;
    }
    
    .pack-header {
        margin-bottom: 10px;
    }
    
    .pack-icon-new {
        width: 35px;
        height: 35px;
    }
    
    .pack-icon-new i {
        font-size: 1.1rem;
    }
    
    .pack-check {
        width: 20px;
        height: 20px;
    }
    
    .pack-check i {
        font-size: 0.7rem;
    }
    
    .pack-info h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .pack-info p {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .pack-price {
        font-size: 0.9rem;
    }
    
    .pack-price span {
        font-size: 0.75rem;
    }
}

/* Responsive Design para TV Showcase */
@media (max-width: 1200px) {
    .tv-showcase-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .tv-hero-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .tv-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tv-hero-panel {
        grid-column: 1;
        grid-row: 1;
        min-height: 400px;
    }
    
    .tv-features-panel {
        grid-column: 1;
        grid-row: 2;
    }
    
    .tv-packs-panel {
        grid-column: 1;
        grid-row: 3;
    }
    
    .tv-hero-content {
        padding: 30px;
    }
    
    .tv-hero-content h2 {
        font-size: 2rem;
    }
    
    .tv-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .packs-grid {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .tv-hero-content {
        padding: 20px;
    }
    
    .tv-hero-content h2 {
        font-size: 1.6rem;
    }
    
    .tv-hero-content p {
        font-size: 1rem;
    }
    
    .tv-features-panel,
    .tv-packs-panel {
        padding: 20px;
    }
    
    .feature-item.enhanced {
        padding: 12px;
    }
    
    .pack-card.modern {
        padding: 15px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
}

.tv-main-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tv-main-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.tv-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(139, 40, 145, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 40, 145, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 40, 145, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 40, 145, 0.3);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.tv-premium-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.universal-showcase {
    background: rgba(139, 40, 145, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(139, 40, 145, 0.3);
    text-align: center;
}

.universal-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.universal-logo p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.tv-info {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 40, 145, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: var(--white);
    position: relative;
}

.tv-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    position: relative;
}

/* Logo SideTV Container */
.sidetv-logo-container {
    display: flex;
    justify-content: center;
    margin:0px;
    padding: 0px;
}

/* Logo SideTV - Versión Mejorada */
.sidetv-logo {
    width: 200px;
    height: 200px;
    filter: 
        drop-shadow(0 0 15px rgba(139, 40, 145, 0.8))
        drop-shadow(0 0 30px rgba(139, 40, 145, 0.5))
        drop-shadow(0 0 45px rgba(255, 0, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logoGlow 2.5s ease-in-out infinite alternate;
    position: relative;
}

.sidetv-logo:hover {
    transform: scale(1.15) rotate(5deg);
    filter: 
        drop-shadow(0 0 20px rgba(139, 40, 145, 0.9))
        drop-shadow(0 0 40px rgba(139, 40, 145, 0.7))
        drop-shadow(0 0 60px rgba(255, 0, 255, 0.5))
        drop-shadow(0 0 80px rgba(255, 255, 255, 0.3));
    animation-duration: 1.5s;
}

.sidetv-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(139, 40, 145, 0.1);
    filter: blur(15px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: 
            drop-shadow(0 0 10px rgba(139, 40, 145, 0.6))
            drop-shadow(0 0 20px rgba(139, 40, 145, 0.4))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
        transform: scale(1);
    }
    50% {
        filter: 
            drop-shadow(0 0 20px rgba(139, 40, 145, 0.9))
            drop-shadow(0 0 40px rgba(139, 40, 145, 0.6))
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 80px rgba(255, 255, 255, 0.2));
        transform: scale(1.03);
    }
    100% {
        filter: 
            drop-shadow(0 0 15px rgba(139, 40, 145, 0.8))
            drop-shadow(0 0 30px rgba(139, 40, 145, 0.5))
            drop-shadow(0 0 45px rgba(255, 255, 255, 0.3));
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.55);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.55);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.55);
    }
}

/* Efecto adicional de partículas (opcional) */
.sidetv-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 40, 145, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sidetv-logo:hover::after {
    opacity: 1;
}

/* Universal Showcase */
.universal-showcase {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(139, 40, 145, 0.4);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.universal-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(139, 40, 145, 0.4),
        0 0 30px rgba(212, 70, 239, 0.3);
    border-color: var(--primary-color);
}

.showcase-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(45deg, rgba(139, 40, 145, 0.1) 0%, transparent 100%);
}

.universal-logo h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.universal-logo p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.premium-badge {
    background: var(--gradient-primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(139, 40, 145, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Video Destacado */
.featured-video {
    position: relative;
}

.video-container {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 20px;
    border: var(--border-neon);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 40, 145, 0.3);
}

.video-container video {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 16/9;
}

.video-info {
    margin-top: 15px;
    text-align: center;
}

.video-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Galería de Contenido */
.content-gallery {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 40, 145, 0.2);
}

.content-gallery h3 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--dark-card);
    padding: 30px;
    border: var(--border-neon);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.gallery-item {
    min-width: calc(33.333% - 20px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 40, 145, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Navegación del carrusel */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 40, 145, 0.8);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

/* Indicadores */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 40, 145, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(139, 40, 145, 0.6);
}

.tv-info::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    animation: lineGrow 2s ease-in-out infinite alternate;
    border-radius: 2px;
}

@keyframes lineGrow {
    0% { height: 0; }
    100% { height: 200px; }
}

.tv-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 40, 145, 0.5);
    position: relative;
}

.tv-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(139, 40, 145, 0.7);
}

.tv-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.tv-features {
    list-style: none;
}

.tv-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 0, 128, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.tv-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(255, 0, 128, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.tv-features li:hover {
    color: var(--white);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(139, 40, 145, 0.5);
}

.tv-features li:hover::before {
    width: 100%;
}

.tv-features li:last-child {
    border-bottom: none;
}

.tv-features i {
    color: var(--primary-color);
    font-size: 1.8rem;
    filter: var(--glow-pink);
    min-width: 30px;
    animation: iconFloat 3s ease-in-out infinite alternate;
}

@keyframes iconFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

.tv-devices {
    position: relative;
    text-align: center;
}

.tv-devices::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: conic-gradient(from 0deg, rgba(255, 0, 128, 0.2), rgba(139, 92, 246, 0.2), rgba(255, 0, 128, 0.2));
    border-radius: 50%;
    animation: rotateGlow 10s linear infinite;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(20px);
}

.tv-devices img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: 
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 20px rgba(139, 40, 145, 0.3));
    position: relative;
    z-index: 1;
}

@keyframes rotateGlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr; /* CAMBIADO A UNA SOLA COLUMNA */
    gap: 30px; /* Reducido de 80px */
    margin-top: 40px; /* Reducido de 80px */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reducido de 40px */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px; /* Reducido de 25px */
    padding: 20px; /* Reducido de 25px */
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 128, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: var(--shadow-neon);
}

.info-item:hover::before {
    left: 100%;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-neon);
    position: relative;
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% { box-shadow: var(--shadow-neon); }
    100% { box-shadow: var(--shadow-neon-lg); }
}

.info-item h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    background: var(--dark-card);
    padding: 25px; /* Reducido de 35px */
    border-radius: 20px;
    border: var(--border-neon);
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-neon);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-form:hover::before {
    opacity: 0.1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* Reducido de 20px */
    margin-bottom: 15px; /* Reducido de 20px */
}

.form-group {
    position: relative;
    margin-bottom: 15px; /* Reducido de 20px */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px; /* Reducido de 14px 16px */
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.4s ease;
    background: var(--dark-surface);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(255, 0, 128, 0.1),
        var(--shadow-neon);
    background: var(--dark-card);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
    background: var(--dark-surface);
    padding: 0 8px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group input.has-value + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group textarea.has-value + label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: var(--primary-color);
    background: var(--dark-card);
    text-shadow: 0 0 10px rgba(139, 40, 145, 0.5);
}

/* COMENTADO - Este estilo pisaba el botón pequeño
.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}
*/

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(139, 40, 145, 0.5);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section {
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.6s ease;
    border-radius: 2px;
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 40, 145, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(139, 40, 145, 0.6));
    transform: scale(1.05);
}

.footer-logo h3 {
    margin: 0 !important;
    font-size: 1.8rem !important;
}

.footer-section:hover::before {
    height: 100%;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section h3 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: var(--glow-pink);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    color: var(--text-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 0, 128, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    color: var(--white);
    box-shadow: 
        var(--shadow-neon),
        0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.social-links a:hover::before {
    left: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    padding-left: 15px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(139, 40, 145, 0.5);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li i {
    margin-right: 12px;
    color: var(--primary-color);
    width: 20px;
    filter: var(--glow-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 0, 128, 0.2);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(139, 40, 145, 0.5);
}

/* Animaciones AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
}

/* Responsive Design */

/* Media Query para pantallas grandes */
@media (min-width: 1200px) {
    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        max-width: 1200px;
        padding: 15px;
    }
    
    .wireless-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
    }
}

/* Media Query para Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
        padding: 10px;
    }

    /* Grid wireless en tablet - 2 columnas */
    .wireless-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .fibra-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tv-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .gallery-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: var(--shadow-dark-lg);
        padding: 30px 20px;
        border-top: 1px solid rgba(255, 0, 128, 0.3);
        border-radius: 0;
        gap: 10px;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 5px 0;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 15px 25px;
        display: block;
        width: 100%;
        border-radius: 15px;
        background: rgba(255, 0, 128, 0.05);
        border: 1px solid rgba(255, 0, 128, 0.2);
    }

    .nav-menu a:hover {
        background: var(--gradient-primary);
        border-color: var(--primary-color);
        transform: scale(1.02);
    }

    .nav-brand h2 {
        font-size: 1.5rem;
    }

    /* Logo responsivo */
    .nav-logo {
        height: 35px;
        max-width: 160px;
    }

    .footer-logo-img {
        height: 40px;
        max-width: 120px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }

    .plan-card.featured {
        transform: scale(1.02);
        margin: 20px 0;
        z-index: 2;
    }

    .plan-card:hover {
        transform: translateY(-10px) scale(1.02);
        z-index: 10;
    }

    .plan-card.featured:hover {
        transform: translateY(-15px) scale(1.04);
        z-index: 15;
    }

    .tv-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .universal-showcase {
        height: 300px;
    }
    
    .universal-logo h4 {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        min-width: 100%;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .content-gallery h3 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .device-selector {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .info-item {
        padding: 20px;
    }

    /* Planes con video fondo responsivo */
    .planes-bg-video {
        opacity: 0.15;
        filter: brightness(0.25) contrast(1.1) saturate(0.7);
    }

    .planes-section {
        min-height: auto;
        padding: 60px 0;
    }

    .plan-card {
        min-height: 360px;
        padding: 25px 20px;
    }

    /* Pestañas responsivas */
    .planes-tabs {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .tab-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 18px 25px;
    }

    .tab-btn span {
        font-size: 1rem;
    }

    .tab-btn small {
        font-size: 0.75rem;
    }

    /* Wireless info responsiva */
    .wireless-info {
        padding: 15px;
        margin-bottom: 25px;
    }

    /* Grid wireless responsivo */
    .wireless-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .wireless-badge {
        padding: 8px 16px;
        gap: 8px;
    }

    .wireless-badge i {
        font-size: 1rem;
    }

    .wireless-badge span {
        font-size: 0.9rem;
    }

    /* Planes wireless responsivos */
    .wireless-plan .wireless-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .wireless-plan .wireless-icon i {
        font-size: 1.2rem;
    }

    /* Separador TV responsivo */
    .tv-section {
        padding: 100px 0 60px 0;
    }

    .tv-section::before {
        width: 90%;
        top: 15px;
    }

    /* SIDEBOT responsivo */
    .sidebot-section {
        padding: 30px 25px 60px 25px;
        margin-bottom: 60px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .plan-card {
        padding: 35px 25px;
    }

    .speed {
        font-size: 2.8rem;
    }

    .price-current {
        font-size: 2.2rem;
    }

    .device-price {
        font-size: 2rem;
    }

    .nav-brand h2 {
        font-size: 1.5rem;
    }

    /* Logo responsivo en pantallas pequeñas */
    .nav-logo {
        height: 30px;
        max-width: 140px;
    }
    
    .nav-brand span {
        font-size: 0.6rem;
    }

    .footer-logo-img {
        height: 35px;
        max-width: 100px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Animaciones adicionales */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-neon); }
    50% { box-shadow: var(--shadow-neon-lg); }
}

/* Clases de animación */
.animate-in-view {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

.glowing {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(139, 40, 145, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 0, 128, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(255, 0, 128, 0.5);
    outline-offset: 2px;
}

/* Efectos Futuristas Adicionales */

/* Cursor Neón */
.neon-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}







/* Efecto Glitch */
.glitch-effect {
    position: relative;
    animation: glitch 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    animation: glitch-1 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #ff0080;
    z-index: -1;
}

.glitch-effect::after {
    animation: glitch-2 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #00ff80;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Efecto de Onda (Ripple) */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 128, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Elementos Flotantes */
.floating-element {
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Indicador de Scroll */
.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-neon);
    animation: bounceDown 1s ease-in-out;
    z-index: 1000;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(-50%); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-40px); }
}

/* Efectos de Glow Avanzados (sin rotación) */
.neon-glow {
    position: relative;
    box-shadow: 
        0 0 20px rgba(139, 40, 145, 0.5),
        0 0 40px rgba(139, 40, 145, 0.3);
    border-radius: inherit;
    transition: all 0.3s ease;
}

.neon-glow:hover {
    box-shadow: 
        0 0 30px rgba(139, 40, 145, 0.8),
        0 0 60px rgba(139, 40, 145, 0.5);
}

/* Efecto de respiración para elementos importantes */
.breathing-glow {
    animation: breathingGlow 3s ease-in-out infinite;
}

@keyframes breathingGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(139, 40, 145, 0.5),
            0 0 40px rgba(139, 40, 145, 0.3),
            0 0 60px rgba(139, 40, 145, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(139, 40, 145, 0.8),
            0 0 60px rgba(139, 40, 145, 0.5),
            0 0 90px rgba(139, 40, 145, 0.2);
    }
}

/* Efecto de ondas expansivas */
.wave-effect {
    position: relative;
    overflow: hidden;
}

.wave-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(139, 40, 145, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: waveExpansion 4s ease-out infinite;
}

@keyframes waveExpansion {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Gradientes Animados */
.gradient-animated {
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--purple-light)
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efecto Holográfico */
.holographic {
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(139, 40, 145, 0.1) 25%,
        rgba(139, 40, 145, 0.1) 50%,
        transparent 50%,
        transparent 75%,
        rgba(217, 70, 239, 0.1) 75%
    );
    background-size: 20px 20px;
    animation: holographicMove 3s linear infinite;
    position: relative;
}

.holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: holographicScan 2s linear infinite;
}

@keyframes holographicMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

@keyframes holographicScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Efecto de cristal/vidrio */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: inherit;
    pointer-events: none;
}

/* Efecto de aurora */
.aurora-effect {
    background: linear-gradient(
        45deg,
        rgba(139, 40, 145, 0.1),
        rgba(217, 70, 239, 0.1),
        rgba(88, 28, 135, 0.1),
        rgba(192, 38, 211, 0.1)
    );
    background-size: 400% 400%;
    animation: auroraMove 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.aurora-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(139, 40, 145, 0.1) 0%,
        transparent 30%
    );
    animation: auroraRotate 20s linear infinite;
}

@keyframes auroraMove {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes auroraRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Estilos adicionales del header */
.header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 32px rgba(139, 40, 145, 0.2);
}

.header.scrolled::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(139, 40, 145, 0.5);
}

/* Fix para el navbar en desktop */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        background: rgba(255, 0, 128, 0.1);
        width: auto;
        box-shadow: none;
        border-top: none;
    }

    .nav-menu li {
        width: auto;
    }

    .nav-menu a {
        white-space: nowrap;
    }
}

/* Efectos 3D Avanzados */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    perspective: 1000px;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
    box-shadow: 
        0 25px 50px rgba(139, 40, 145, 0.3),
        0 0 60px rgba(139, 40, 145, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(139, 40, 145, 0.1) 0%,
        transparent 50%,
        rgba(217, 70, 239, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    transform: translateZ(-1px);
}

.card-3d:hover::before {
    opacity: 1;
}

/* Efecto de levitación */
.floating-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.floating-hover:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(139, 40, 145, 0.4),
        0 0 60px rgba(139, 40, 145, 0.2);
}

.floating-hover::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 80%;
    height: 20px;
    background: radial-gradient(
        ellipse at center,
        rgba(139, 40, 145, 0.3) 0%,
        transparent 70%
    );
    transform: translateX(-50%) scaleY(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.floating-hover:hover::after {
    transform: translateX(-50%) scaleY(1);
}

/* Efecto de inclinación magnética */
.magnetic-tilt {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.magnetic-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) rotateZ(1deg) scale(1.02);
}

/* Efecto de ondas al hacer hover */
.ripple-hover {
    position: relative;
    overflow: hidden;
}

.ripple-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(139, 40, 145, 0.4) 0%,
        rgba(139, 40, 145, 0.1) 50%,
        transparent 100%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.ripple-hover:hover::before {
    width: 300px;
    height: 300px;
}

/* Efectos de Loading */
.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Efectos de Aparición Secuencial */
.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }

.tv-features li:nth-child(1) { animation-delay: 0.1s; }
.tv-features li:nth-child(2) { animation-delay: 0.2s; }
.tv-features li:nth-child(3) { animation-delay: 0.3s; }
.tv-features li:nth-child(4) { animation-delay: 0.4s; }
.tv-features li:nth-child(5) { animation-delay: 0.5s; }
.tv-features li:nth-child(6) { animation-delay: 0.6s; }

/* Efectos de Notificación Mejorados */
.notification {
    animation: slideInFromRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.removing {
    animation: slideOutToRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Efectos de Parallax Mejorados */
.parallax-element {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Efectos de Video */
.video-background video {
    transition: filter 0.5s ease;
}

.hero:hover .video-background video {
    filter: brightness(0.4) contrast(1.3) saturate(1.2);
}

/* Responsive para efectos */
@media (max-width: 768px) {
    .universal-showcase {
        padding: 30px 20px;
    }
    
    .universal-showcase h2 {
        font-size: 2rem;
    }
    
    .universal-showcase p {
        font-size: 1rem;
    }
    
    .premium-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .neon-cursor {
        display: none;
    }
    
    .floating-element {
        animation: none;
    }
    
    .scroll-indicator {
        right: 15px;
        padding: 10px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .glitch-effect,
    .floating,
    .pulsing,
    .glowing {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .video-background,
    .btn,
    .footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ==========================================
   NUEVOS ESTILOS PARA FUNCIONALIDADES 2024
   ========================================== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 40, 145, 0.2);
    padding: 15px 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.breadcrumb-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-nav span {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-nav .breadcrumb-separator {
    color: var(--secondary-color);
    font-weight: bold;
    margin: 0 12px;
    font-size: 18px;
}

.breadcrumb-nav .breadcrumb-item {
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.breadcrumb-nav .breadcrumb-item:hover {
    background: rgba(139, 40, 145, 0.15);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 700;
    background: rgba(139, 40, 145, 0.25);
    box-shadow: 0 0 10px rgba(139, 40, 145, 0.3);
}

/* Sección Fibra Óptica con espaciado corregido */
.fibra-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    margin-top: 0;
}

.fibra-section .container {
    position: relative;
    z-index: 2;
}

.fibra-section .section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.fibra-section .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.fibra-section .section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}
.nav-logo-large {
    height: 50px !important;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(139, 40, 145, 0.3));
    transition: all 0.3s ease;
}

.nav-logo-large:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(139, 40, 145, 0.5));
}

/* Botones de tecnología principales */
.main-tech-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
}

.main-tech-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-tech-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple-lg);
}

.main-tech-btn.active {
    background: var(--gradient-accent);
    box-shadow: 0 0 30px rgba(139, 40, 145, 0.8);
}

.main-tech-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;
}

.main-tech-btn:hover::before {
    left: 100%;
}

/* Slogan dinámico */
.dynamic-slogan {
    text-align: center;
    margin: 30px 0 40px;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 20px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Selector de dispositivos en planes */
.device-selector-plan {
    background: rgba(139, 40, 145, 0.1);
    border: 1px solid rgba(139, 40, 145, 0.3);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
}

.device-selector-plan h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 13px;
    text-align: center;
}

.device-toggles {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toggle-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(139, 40, 145, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.toggle-option:hover {
    border-color: var(--secondary-color);
    background: rgba(139, 40, 145, 0.15);
    transform: translateY(-1px);
}

.toggle-label {
    font-weight: 500;
    color: var(--text-light);
    font-size: 12px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
    background-color: #444;
    border-radius: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(23px);
}

.toggle-switch:hover .toggle-slider {
    box-shadow: 0 0 6px rgba(139, 40, 145, 0.4);
}

/* Responsive para toggles en móviles */
@media (max-width: 768px) {
    .device-toggles {
        gap: 6px;
    }
    
    .toggle-option {
        padding: 6px 10px;
        flex-direction: row;
        gap: 8px;
        text-align: left;
    }
    
    .toggle-label {
        font-size: 11px;
    }
    
    .toggle-slider {
        width: 40px;
        height: 20px;
    }
    
    .toggle-slider:before {
        height: 14px;
        width: 14px;
        left: 3px;
        top: 3px;
    }
    
    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(20px);
    }
    
    .device-selector-plan {
        padding: 12px;
        margin: 10px 0;
    }
    
    .device-selector-plan h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

/* TV Pack Selector Styles */
.tv-pack-selector {
    background: rgba(139, 40, 145, 0.1);
    border: 1px solid rgba(139, 40, 145, 0.3);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
}

.tv-pack-selector h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 13px;
    text-align: center;
}

.tv-pack-toggles {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Packs de TV */
.tv-packs {
    margin-top: 15px;
    padding: 15px;
    background: rgba(139, 40, 145, 0.1);
    border: 1px solid rgba(139, 40, 145, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.tv-packs h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
}

.pack-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.pack-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(139, 40, 145, 0.3);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.pack-option input[type="checkbox"] {
    display: none;
}

.pack-checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(139, 40, 145, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pack-checkmark i {
    color: transparent;
    font-size: 14px;
    transition: color 0.3s ease;
}

.pack-option:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 40, 145, 0.3);
}

.pack-option:has(input:checked) {
    background: var(--gradient-primary);
    border-color: var(--purple-light);
    box-shadow: 0 0 20px rgba(139, 40, 145, 0.5);
}

.pack-option:has(input:checked) .pack-checkmark {
    background: var(--secondary-color);
    border-color: var(--purple-light);
}

.pack-option:has(input:checked) .pack-checkmark i {
    color: white;
}

.pack-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pack-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.pack-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.pack-description {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsivo para elementos nuevos */
@media (max-width: 768px) {
    .breadcrumb-nav {
        top: 70px;
        padding: 8px 0;
    }
    
    .breadcrumb-nav ul {
        font-size: 12px;
    }
    
    .main-tech-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .main-tech-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .dynamic-slogan {
        font-size: 24px;
        padding: 15px;
        margin: 20px 0 30px;
        min-height: 60px;
    }
    
    .device-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .pack-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .pack-option {
        min-width: auto;
    }
    
    .nav-logo-large {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .device-selector-plan,
    .tv-packs {
        padding: 15px;
        margin: 15px 0;
    }
    
    .pack-option {
        padding: 15px;
    }
    
    .main-tech-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .dynamic-slogan {
        font-size: 20px;
        padding: 10px;
        margin: 15px 0 25px;
        min-height: 50px;
    }
}

/* ==========================================
   NUEVOS ESTILOS PARA TECNOLOGÍAS DINÁMICAS
   ========================================== */

/* Contenedor de tecnologías */
.tech-content-container {
    position: relative;
    min-height: 500px;
}

.tech-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tech-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tech-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

/* Estadísticas de tecnología */
.tech-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.stat-box {
    background: rgba(139, 40, 145, 0.1);
    border: 1px solid rgba(139, 40, 145, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 100px;
}

.stat-box:hover {
    background: rgba(139, 40, 145, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 40, 145, 0.3);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual de Wireless */
.wireless-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 40, 145, 0.1) 0%, transparent 70%);
    border-radius: 15px;
    margin-top: 20px;
}

.signal-tower {
    position: relative;
    font-size: 60px;
    color: var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
}

.signal-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.signal-waves span {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.signal-waves span:nth-child(1) {
    animation-delay: 0s;
}

.signal-waves span:nth-child(2) {
    animation-delay: 0.5s;
}

.signal-waves span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsivo para contenido de tecnología */
@media (max-width: 768px) {
    .tech-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-box {
        min-width: 150px;
    }
    
    .wireless-visual {
        height: 200px;
    }
    
    .signal-tower {
        font-size: 40px;
    }
}

/* Responsivo para TV Unified Container */
@media (max-width: 768px) {
    .tv-unified-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tv-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tv-unified-container {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .tv-main-info h3 {
        font-size: 1.5rem;
    }
    
    .tv-main-info p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .universal-showcase {
        padding: 20px;
    }
    
    .universal-logo h4 {
        font-size: 1.3rem;
    }
}

/* Responsivo para Gaming Section Background */
@media (max-width: 1200px) {
    .gaming-section {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 768px) {
    .gaming-section {
        padding: 80px 0;
        min-height: 500px;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .gaming-section {
        padding: 60px 0;
        min-height: 400px;
        background-size: cover;
        background-position: center center;
    }
}

/* Separadores entre secciones */
.section-separator {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 1) 0%, 
        rgba(26, 26, 26, 1) 50%, 
        rgba(10, 10, 10, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 40, 145, 0.8) 50%, 
        transparent 100%);
    animation: flow-line 3s linear infinite;
}

.section-separator::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(30, 144, 255, 0.8) 50%, 
        transparent 100%);
    animation: flow-line-reverse 3s linear infinite;
}

@keyframes flow-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes flow-line-reverse {
    0% { right: -100%; }
    100% { right: 100%; }
}

.separator-icon {
    font-size: 2rem;
    color: rgba(139, 40, 145, 0.6);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(139, 40, 145, 0.5));
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(139, 40, 145, 0.5));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(139, 40, 145, 0.8));
        transform: scale(1.1);
    }
}

/* EFECTO VIDRIO ADICIONAL PARA SUBTÍTULO */
#hero-subtitle-new {
    position: relative;
}

#hero-subtitle-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;
}

#hero-subtitle-new::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

/* ===== ANIMACIÓN ELEGANTE PARA TEXTO INFINITA ===== */
.text-with-infinity {
    position: relative;
    display: inline-block;
    overflow: visible;
}

/* Destello secundario más sutil para efecto de profundidad */
.text-with-infinity {
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(139, 40, 145, 0.1) 48%,
        rgba(217, 70, 239, 0.15) 50%,
        rgba(139, 40, 145, 0.1) 52%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: secondaryGlow 6s ease-in-out infinite 1s;
}

.text-with-infinity::after {
    content: '∞';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    opacity: 0.9;
    color: rgba(139, 40, 145, 1);
    animation: infinityGlow 2.5s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(139, 40, 145, 0.8),
        0 0 40px rgba(139, 40, 145, 0.6),
        0 0 60px rgba(139, 40, 145, 0.4);
    font-weight: bold;
    z-index: 1000000;
}

/* Destello que surge desde el centro del texto */
.text-with-infinity::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(139, 40, 145, 0.4) 35%,
        rgba(217, 70, 239, 0.7) 45%,
        rgba(255, 255, 255, 1) 50%,
        rgba(217, 70, 239, 0.7) 55%,
        rgba(139, 40, 145, 0.4) 65%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 85%,
        transparent 100%
    );
    animation: cinematicBeam 6s ease-in-out infinite;
    z-index: 1;
    border-radius: 50px;
    filter: blur(0.5px);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(217, 70, 239, 0.6),
        0 0 30px rgba(217, 70, 239, 0.4),
        0 0 40px rgba(139, 40, 145, 0.3);
}

@keyframes infinityGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1) rotate(0deg);
        text-shadow: 
            0 0 15px rgba(139, 40, 145, 0.8),
            0 0 30px rgba(139, 40, 145, 0.6),
            0 0 45px rgba(139, 40, 145, 0.4);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.4) rotate(180deg);
        text-shadow: 
            0 0 25px rgba(139, 40, 145, 1), 
            0 0 40px rgba(217, 70, 239, 0.8),
            0 0 60px rgba(217, 70, 239, 0.6),
            0 0 80px rgba(217, 70, 239, 0.4);
    }
}

@keyframes cinematicBeam {
    0% {
        width: 0%;
        opacity: 0;
    }
    8% {
        width: 100%;
        opacity: 0.3;
    }
    12% {
        width: 200%;
        opacity: 0.6;
    }
    16% {
        width: 400%;
        opacity: 0.9;
    }
    20% {
        width: 600%;
        opacity: 1;
    }
    24% {
        width: 800%;
        opacity: 0.8;
    }
    28% {
        width: 1000%;
        opacity: 0.6;
    }
    32% {
        width: 1200%;
        opacity: 0.4;
    }
    36% {
        width: 1400%;
        opacity: 0.2;
    }
    40% {
        width: 1600%;
        opacity: 0;
    }
    100% {
        width: 1600%;
        opacity: 0;
    }
}

@keyframes secondaryGlow {
    0%, 60%, 100% {
        background-position: -200% 0;
        opacity: 0.3;
    }
    20% {
        background-position: 200% 0;
        opacity: 0.8;
    }
}

@keyframes shimmerSweep {
    0% {
        width: 0%;
        opacity: 0;
    }
    10% {
        width: 20%;
        opacity: 0.3;
    }
    30% {
        width: 60%;
        opacity: 0.8;
    }
    50% {
        width: 100%;
        opacity: 1;
    }
    70% {
        width: 120%;
        opacity: 0.8;
    }
    90% {
        width: 140%;
        opacity: 0.3;
    }
    100% {
        width: 160%;
        opacity: 0;
    }
}

/* Animación sutil del texto */
.text-with-infinity {
    animation: textGlow 4s ease-in-out infinite, subtleFloat 4s ease-in-out infinite;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(139, 40, 145, 0.2);
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.3),
            0 0 10px rgba(139, 40, 145, 0.2);
    }
    25% {
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(139, 40, 145, 0.4),
            0 0 25px rgba(217, 70, 239, 0.3);
    }
    50% {
        text-shadow: 
            0 0 12px rgba(255, 255, 255, 0.7),
            0 0 20px rgba(139, 40, 145, 0.6),
            0 0 35px rgba(217, 70, 239, 0.5);
    }
    75% {
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(139, 40, 145, 0.4),
            0 0 25px rgba(217, 70, 239, 0.3);
    }
}

/* Efecto hover */
.text-with-infinity:hover::after {
    animation-duration: 1.5s;
    color: rgba(217, 70, 239, 1);
}

/* Responsivo */
@media (max-width: 768px) {
    .text-with-infinity::after {
        right: -40px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .text-with-infinity::after {
        right: -35px;
        font-size: 28px;
    }
}

/* ===== TECH BANNER CAROUSEL STYLES ===== */

.tech-banner-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    min-height: calc(100vh - 80px);
    margin-top: 0;
}

.tech-carousel-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.tech-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

/* Video Slide */
.slide-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Estilos específicos para iframes de YouTube */
.banner-video.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Evitar interacción con el iframe */
}

/* Ocultar controles de YouTube - Método adicional */
.slide-video {
    position: relative;
    overflow: hidden;
}

/* Capa adicional para asegurar que no se vean los controles */
.slide-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Capa para ocultar la barra superior de YouTube con título y controles */
.slide-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Aumentado para cubrir mejor los controles */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Máscara adicional en la parte inferior para ocultar controles al hover */
.slide-video .banner-video::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.video-overlay {
    z-index: 2; /* Asegurar que el overlay esté por encima */
    pointer-events: auto; /* Permitir clicks en los botones del overlay */
}

/* Asegurar que los botones del overlay funcionen */
.video-overlay .btn {
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

/* Video Desktop - Por defecto visible */
.banner-video-desktop {
    display: block;
}

/* Video Móvil - Por defecto oculto */
.banner-video-mobile {
    display: none;
}

/* Animación de fade-in para ocultar el flash inicial de controles */
.banner-video.youtube-video {
    opacity: 0;
    animation: fadeInVideo 0.8s ease-in 0.3s forwards;
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(139, 40, 145, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px 20px 120px 20px;
}

.overlay-content {
    max-width: 800px;
    padding: 0 20px;
    margin-top: 20px;
}

.banner-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-title i {
    color: var(--primary-color);
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.banner-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-cta .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(139, 40, 145, 0.4);
    transition: all 0.3s ease;
}

.banner-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 40, 145, 0.6);
}

/* Content Slides */
.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 40px 200px 40px;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-pattern {
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.fiber-pattern {
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 123, 255, 0.1) 50%, transparent 60%);
}

.wireless-pattern {
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 40, 145, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(217, 70, 239, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
}

.comparison-pattern {
    background: 
        linear-gradient(90deg, rgba(255, 215, 0, 0.05) 50%, rgba(139, 40, 145, 0.05) 50%);
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.slide-info {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    margin-top: 0;
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.slide-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.slide-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.3;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comparison Slide */
.comparison-slide .slide-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.comparison-header i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.comparison-item.fibra .comparison-header i {
    color: #FFD700;
}

.comparison-item.wireless .comparison-header i {
    color: var(--primary-color);
}

.comparison-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-item p {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    padding: 3px 0;
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-indicators {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 40, 145, 0.6);
}

.indicator:hover {
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-arrow.prev {
    left: -80px;
}

.carousel-arrow.next {
    right: -80px;
}

.carousel-arrow:hover {
    background: rgba(139, 40, 145, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slide-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-arrow.prev {
        left: -60px !important;
    }
    
    .carousel-arrow.next {
        right: -60px !important;
    }
    
    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    /* Asegurar video de escritorio en tablets */
    .banner-video-desktop {
        display: block;
    }
    
    .banner-video-mobile {
        display: none;
    }
    
    .carousel-arrow.prev {
        left: 15px;
        top: 45%;
    }
    
    .carousel-arrow.next {
        right: 15px;
        top: 45%;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .carousel-indicators {
        margin-bottom: 15px;
    }
    
    .slide-counter {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .tech-banner-section {
        min-height: calc(70vh - 60px);
        margin-top: 0;
        padding: 0;
    }
    
    .tech-carousel-container {
        height: calc(70vh - 60px);
    }
    
    /* Cambio de videos para móvil */
    .banner-video-desktop {
        display: none;
    }
    
    .banner-video-mobile {
        display: block;
    }
    
    .video-overlay {
        padding: 15px 15px 100px 15px;
    }
    
    .slide-content {
        padding: 20px 20px 170px 20px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-info h3 {
        font-size: 2rem;
    }
    
    .slide-info p {
        font-size: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.4);
        font-size: 0.8rem;
    }
    
    .carousel-arrow.prev {
        left: 10px;
        top: 40%;
    }
    
    .carousel-arrow.next {
        right: 10px;
        top: 40%;
    }
    
    .carousel-indicators {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-navigation {
        bottom: 25px;
    }
    
    .slide-counter {
        top: 20px;
        right: 20px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tech-banner-section {
        margin-top: 0;
        padding: 0;
    }
    
    /* Mantener video móvil */
    .banner-video-desktop {
        display: none;
    }
    
    .banner-video-mobile {
        display: block;
    }
    
    .video-overlay {
        padding: 10px 15px 80px 15px;
    }
    
    .slide-content {
        padding: 15px 15px 140px 15px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.5);
        font-size: 0.7rem;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .carousel-arrow:hover,
    .carousel-arrow:active {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-arrow.prev {
        left: 8px;
        top: 35%;
    }
    
    .carousel-arrow.next {
        right: 8px;
        top: 35%;
    }
    
    .carousel-indicators {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .carousel-navigation {
        bottom: 20px;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 0.75rem;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .banner-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .overlay-content {
        padding: 0 15px;
        margin-top: 10px;
    }
    
    .banner-cta .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .tech-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .slide-info h3 {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    
    .slide-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .tech-features {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .tech-stats {
        gap: 15px;
        margin-top: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .comparison-grid {
        gap: 12px;
    }
    
    .comparison-item {
        padding: 12px;
    }
    
    .comparison-item h4 {
        font-size: 1rem;
    }
    
    .comparison-item p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .comparison-item li {
        font-size: 0.75rem;
        padding: 2px 0;
    }
}

/* ==========================================
   SIDELINK CHATBOT BUTTON (ESFERITA)
   ========================================== */
.sidelink-chatbot-btn {
    position: fixed !important;
    bottom: 20px !important;
    right: 30px !important;
    z-index: 1000 !important;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.sidelink-chatbot-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.6);
}

.sidelink-chatbot-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%) translateY(-50%) scale(1) !important;
    transition-delay: 0.2s;
}

/* Mantener el tooltip visible un poco más después del hover */
.sidelink-chatbot-btn .tooltip {
    transition: all 0.4s ease 0.8s;
}

.sidelink-chatbot-btn:hover .tooltip {
    transition: all 0.4s ease 0.2s;
}

.sidelink-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    z-index: 2;
    position: relative;
}

/* Tooltip para la esferita */
.tooltip {
    position: absolute;
    right: -75px;
    top: 50%;
    transform: translateX(-100%) translateY(-50%) scale(0.9);
    background: var(--gradient-primary);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    pointer-events: none;
}

.sidelink-chatbot-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%) translateY(-50%) scale(1);
    transition-delay: 0.5s;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -6px;
    border-left: 6px solid #581c87;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Aura de neón animada */
.neon-aura {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #8a2be2, #9d4edd, #a855f7, #8a2be2);
    border-radius: 50%;
    z-index: -1;
    animation: neonPulse 2s ease-in-out infinite alternate;
    opacity: 0.7;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top-btn {
    position: fixed !important;
    bottom: 110px !important;
    right: 30px !important;
    z-index: 999 !important;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.5);
}

.scroll-to-top-btn i {
    color: white;
    font-size: 18px;
}

/* ==========================================
   BACK TO PLANS BUTTON
   ========================================== */
.back-to-plans-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.back-to-plans-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5722 0%, #f57c00 100%);
}

.back-to-plans-btn i {
    font-size: 12px;
}

/* Animación de flotación */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animación de pulso de neón */
@keyframes neonPulse {
    0% {
        opacity: 0.5;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .sidelink-chatbot-btn {
        bottom: 15px !important;
        right: 20px !important;
        width: 50px;
        height: 50px;
    }
    
    .sidelink-icon {
        width: 22px;
        height: 22px;
    }
    
    .scroll-to-top-btn {
        bottom: 90px !important;
        right: 20px !important;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top-btn i {
        font-size: 16px;
    }
    
    .tooltip {
        right: 55px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .back-to-plans-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Estilos para el popup de SideLink */
.sidelink-popup {
    border-radius: 15px !important;
}

.sidelink-btn-confirm {
    background: linear-gradient(135deg, #00d4ff 0%, #1e90ff 100%) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.sidelink-btn-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4) !important;
}

.sidelink-btn-cancel {
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
}

/* ===== PREMIUM SWEETALERT STYLES ===== */

/* Estilos para SweetAlert Premium */
.premium-alert {
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px) !important;
}

.premium-alert .swal2-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    color: #333 !important;
}

.premium-alert .swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
}

.premium-alert-small {
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.premium-alert-small .swal2-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    color: #333 !important;
}

.premium-button {
    border-radius: 10px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3) !important;
    transition: all 0.3s ease !important;
}

.premium-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4) !important;
}

/* ===== BEAUTIFUL TOAST STYLES ===== */

.beautiful-toast {
    border-radius: 20px 0 0 20px !important;
    border: none !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    overflow: visible !important;
    max-width: 380px !important;
    min-width: 320px !important;
    margin-top: 20px !important;
    margin-right: 0 !important;
}

.beautiful-toast .swal2-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 12px 15px 0 15px !important;
    color: #333 !important;
}

.beautiful-toast .swal2-html-container {
    margin: 0 !important;
    padding: 5px 15px 12px 15px !important;
    text-align: left !important;
    overflow: hidden !important;
}

.beautiful-progress {
    height: 4px !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

.wireless-toast .beautiful-progress {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
}

.infinito-toast .beautiful-progress {
    background: linear-gradient(90deg, #8a2be2 0%, #a855f7 100%) !important;
}

.devices-toast .beautiful-progress {
    background: linear-gradient(90deg, #ff9a56 0%, #ff6b35 100%) !important;
}

.tvpack-toast .beautiful-progress {
    background: linear-gradient(90deg, #8a2be2 0%, #9d4edd 100%) !important;
}

.removed-toast .beautiful-progress {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%) !important;
}

/* Animación de entrada suave */
.beautiful-toast.swal2-show {
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0) !important;
        opacity: 0 !important;
    }
    to {
        transform: translate3d(0, 0, 0) !important;
        opacity: 1 !important;
    }
}

/* Hover effect en los toasts */
.beautiful-toast:hover {
    transform: translateX(-5px) scale(1.02) !important;
    transition: all 0.3s ease !important;
}
