/* --- css/style.css --- */

:root {
    /* TEMA: CYBER STREAM (WOOW TV) */
    --bg-body: #0b0c10;
    /* Negro Profundo */
    --bg-body2: #310143;
    /* Tu Morado Oscuro personalizado */
    --bg-nav: rgba(11, 12, 16, 0.95);

    --text-main: #ffffff;
    --text-muted: #d0d0d0;
    /* Gris claro legible */

    --primary: #66fcf1;
    /* Cian Neón */
    --primary-hover: #45a29e;

    --accent: #bc13fe;
    /* Morado Neón */
}

body {
    background-color: var(--bg-body);
    /* Usamos el oscuro como base general */
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    padding-top: 80px;
    /* Espacio para el navbar fijo */
    overflow-x: hidden;
    /* Evita scroll horizontal indeseado */
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--bg-nav) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
    margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(102, 252, 241, 0.4);
}

@media (max-width: 991px) {
    .logo-img {
        max-height: 45px;
    }

    body {
        padding-top: 70px;
    }

    .navbar-collapse {
        background-color: var(--bg-nav);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 120px 0 100px 0;
    overflow: hidden;
    /* Degradado sutil sobre el fondo sólido */
    background: linear-gradient(180deg, var(--bg-body2) 0%, var(--bg-body) 100%);
}

/* 1. Luz de Fondo Neón */
.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* 2. Imagen de Circuito (Fondo) */
.hero-circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/circuito.png');
    /* Asegúrate del nombre */
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.3;
    /* Ajusta esto si lo quieres más fuerte */
    mix-blend-mode: screen;
    filter: grayscale(100%) drop-shadow(0 0 5px var(--primary));
}

.container {
    position: relative;
    z-index: 2;
}

/* Contenido al frente */

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Importante para que se vea el degradado */
}

.hero-section .lead {
    color: #82f3fb;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    opacity: 1 !important;
    
}

/* Botones */
.btn-glow {
    background-color: var(--primary);
    /* background-color: #f3e8ff; */
    color: #0b0c10;
    border: none;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 25px rgba(102, 252, 241, 0.7);
    transform: translateY(-3px);
    color: #000;
}

/* Imagen Flotante */
.floating-img {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- SECCIÓN DE PLANES (PRICING) --- */
.pricing-section {
    padding: 100px 0;
    background-color: #0b0c10;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}
.plan-logo {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
    
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.15);
}

.pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Tarjeta Destacada (Familiar) */
.pricing-card.featured {
    border: 1px solid var(--accent);
    background: linear-gradient(180deg, rgba(188, 19, 254, 0.08) 0%, rgba(22, 25, 32, 0.6) 100%);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 10px 40px rgba(188, 19, 254, 0.3);
}

.pricing-card.featured .feature-list li i {
    color: var(--accent);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(188, 19, 254, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CARROUSEL DE CANALES (PARTNERS) --- */
.partners-section {
    padding: 50px 0;
    background-color: #000;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-track {
    display: flex;
    width: calc(200px * 14);
    /* Ajustar según cantidad de logos */
    animation: scroll 30s linear infinite;
}

.partner-logo {
    width: 200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 120px;
    filter: grayscale(100%) opacity(0.6);
    transition: 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* --- FOOTER --- */
footer {
    background-color: #050507;
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    color: #aaa;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

/* --- SECCIÓN DE BENEFICIOS --- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-body);
    position: relative;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    /* Reserva espacio para borde */
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.4);
}

/* Iconos */
.icon-box i {
    font-size: 3.5rem;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(102, 252, 241, 0.4);
}

/* Enlace "Obtener servicio" */
.benefit-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.benefit-link:hover {
    color: var(--primary);
    transform: translateX(5px);
    /* Pequeño movimiento a la derecha */
}

/* --- EFECTO DE ESQUINAS (TARJETA CENTRAL) --- */
.benefit-card.featured-corners {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Esquina Superior Izquierda */
.benefit-card.featured-corners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--accent);
    border-left: 4px solid var(--accent);
    border-top-left-radius: 15px;
}

/* Esquina Inferior Derecha */
.benefit-card.featured-corners::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid var(--accent);
    border-right: 4px solid var(--accent);
    border-bottom-right-radius: 15px;
}

.benefit-card.inverse-corners {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Esquina Superior Derecha */
.benefit-card.inverse-corners::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--accent);
    border-right: 4px solid var(--accent);
    border-top-right-radius: 15px;
}

/* Esquina Inferior Izquierda */
.benefit-card.inverse-corners::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid var(--accent);
    border-left: 4px solid var(--accent);
    border-bottom-left-radius: 15px;
}

/* --- SECCIÓN QUIÉNES SOMOS --- */
.about-section {
    padding: 100px 0;
    background-color: #0e0f14;
}

/* Control de texto manual usando TU variable */
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
    padding: 10px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 20px;
}

.about-image-wrapper img {
    border-radius: 15px;
    display: block;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--bg-body);
    border: 2px solid var(--primary);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.experience-badge h3 {
    color: var(--primary);
}



.experience-badge span {
    color: var(--text-muted);
}

/* Aplicar variable aquí también */

/* Listas */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    /* Variable forzada */
    font-size: 1.05rem;
}

.about-list li i {
    color: var(--accent);
    margin-right: 10px;
}


/* --- CTA TEST VELOCIDAD --- */
.speedtest-cta {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: var(--gradient-hero);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-desc {
    color: #e0e0e0;
    /* Un blanco roto brillante para resaltar sobre el degradado */
    font-size: 1.1rem;
}

.btn-white-glow {
    background-color: #fff;
    color: var(--bg-body);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-white-glow:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    color: var(--accent);
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(102, 252, 241, 0.2) 0%, transparent 50%);
    z-index: 1;
}


/* --- SECCIÓN REGULATORIA  --- */
.regulatory-section {
    background-color: #050507;
    padding: 60px 0;
    border-top: 5px solid var(--accent);
    
}


.denuncia-banner {
    display: block;
    background-color: var(--bg-body2);
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(239, 77, 46, 0.3);
    transition: transform 0.3s ease;
}

.denuncia-banner:hover {
    transform: translateY(-2px);
    background-color: var(--accent);
   
}

/* Logos de Gobierno */
.gov-logo {
 
    max-height: 70px;
    width: auto;
    transition: 0.3s;
    
}


.gov-logo:hover {
    transform: translateY(-3px);
    transform: scale(1.05);
}

.legal-small-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    
}


/* --- CRÉDITOS DEL DESARROLLADOR --- */
.developer-link {
    color: var(--text-muted); /* Discreto por defecto */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--primary) !important; /* Brilla en Cian */
    text-shadow: 0 0 8px rgba(102, 252, 241, 0.4); /* Efecto Neón sutil */
    text-decoration: underline;
}

/* =========================================
   ESTILOS PARA EL TEST DE VELOCIDAD (2 RELOJES)
   ========================================= */

/* Fondo específico para la página del test */
.speedtest-hero {
    padding: 120px 0 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1a1d26 0%, #0b0c10 100%);
}

/* Ajustes para que los Canvas (Relojes) sean responsivos */
canvas {
    max-width: 100%;
    height: auto;
}

/* Espaciado para la palabra 'Mbps' */
.ls-1 {
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Efecto Hover suave en las tarjetas de los relojes */
.rounded-4 {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rounded-4:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3) !important;
}

/* =========================================
   SECCIÓN LEGAL - WOOW TV (CORRECCIONES)
   ========================================= */

/* --- 1. CORRECCIÓN DE ACORDEONES (El "Parche" del Fondo Blanco) --- */

/* El Contenedor Principal (Caja oscura) */
.custom-accordion .accordion-item {
    background-color: rgba(22, 25, 32, 0.95) !important; /* Fondo casi negro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

/* El Botón (Título del acordeón) */
.custom-accordion .accordion-button {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(102, 252, 241, 0.1) !important; /* Cian suave al abrir */
    color: var(--primary) !important; 
}

/* El Cuerpo (Aquí es donde quitamos el blanco horrible) */
.custom-accordion .accordion-collapse {
    background-color: transparent !important;
}

.custom-accordion .accordion-body {
    background-color: transparent !important;
    color: #d0d0d0 !important; /* Texto gris claro para lectura */
}

/* Flecha invertida (para que sea blanca) */
.custom-accordion .accordion-button::after {
    filter: invert(1);
}
.custom-accordion .accordion-button:not(.collapsed):after {
    filter: invert(1) drop-shadow(0 0 2px var(--primary));
}


/* --- 2. ESTILOS DE ENLACES (Documentos PDF) --- */

/* Enlaces Generales (Documentación y Protección) */
.legal-link-item {
    display: block;
    padding: 10px 15px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    color: #d0d0d0; /* Color texto base */
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.legal-link-item:hover {
    background: rgba(102, 252, 241, 0.05);
    color: #fff;
    border-left-color: var(--primary); /* Borde Cian */
    padding-left: 20px;
}

.legal-link-item i {
    margin-right: 10px;
    color: var(--primary); /* Icono Cian */
}

/* Items de Normatividad (Leyes y Decretos) */
.norma-item {
    display: block; 
    padding: 12px 10px;
    color: #bbb; /* Gris suave */
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.norma-item:hover {
    color: #fff; 
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 20px; 
    border-left-color: #d63384; /* Borde Rosa/Morado (Accent) */
    cursor: pointer;
}

.norma-item:hover i {
    color: #fff !important;
}
.text-accent { color: #f722e5; } /* Color para iconos de leyes */


/* --- 3. TARJETAS DE ENTES DE CONTROL --- */

.control-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.control-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.control-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 15px;
}

.control-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.control-list li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 3px;
}

/* Tarjeta de Resultados Finales */
.result-card {
    background: linear-gradient(145deg, #1a1d26, #000);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    display: none; /* Oculto por defecto */
    animation: slideUp 0.5s ease-out;
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.1);
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.result-item h3 { font-size: 2.5rem; font-weight: 800; margin: 0; }
.result-label { color: #aaa; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* =========================================
   ESTILOS ESPECÍFICOS: PÁGINA DE PLANES
   ========================================= */

/* --- 1. PLANES HORIZONTALES (STRIPS) --- */
.plan-strip {
    background: rgba(22, 25, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-strip:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Plan Destacado (Gamer/Mega) */
.plan-strip.featured {
    background: linear-gradient(90deg, rgba(188, 19, 254, 0.05) 0%, rgba(22, 25, 32, 0.95) 100%);
    border: 1px solid var(--accent);
}

.plan-strip.featured:hover {
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.2);
}

/* Tipografía y Elementos del Plan */
.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 5px;
}

.plan-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Números de Velocidad */
.speed-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.speed-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.speed-unit {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.2;
    text-align: left;
}

.speed-unit strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
}

/* Iconos Centrales */
.feature-icon-group {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}

.feature-icon-group i {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 5px;
}

.feature-divider {
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
}

/* Precio y Botón */
.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 5px;
}

/* Separador Vertical (Solo Desktop) */
.divider-vertical {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    display: none;
}

@media (min-width: 992px) {
    .divider-vertical { display: block; }
    .plan-content-wrapper { display: flex; align-items: center; justify-content: space-between; width: 100%; }
}

@media (max-width: 991px) {
    .plan-content-wrapper { text-align: center; display: flex; flex-direction: column; gap: 20px; }
    .feature-icon-group { justify-content: center; flex-wrap: wrap; margin: 10px 0; }
    .speed-group { justify-content: center; }
}

/* --- 2. MAPA DE COBERTURA (ENCAPSULADO) --- */
.coverage-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #15171e;
}

.coverage-list-container {
    background: #15171e;
    height: 600px; 
    display: flex; 
    flex-direction: column;
}

/* Scrollbar personalizado para la lista */
.coverage-list-scroll {
    overflow-y: auto; 
    flex-grow: 1;
}
.coverage-list-scroll::-webkit-scrollbar { width: 6px; }
.coverage-list-scroll::-webkit-scrollbar-track { background: #0b0c10; }
.coverage-list-scroll::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* Animación del punto verde */
.dot-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* --- 3. SECCIÓN HARDWARE --- */
.hardware-section {
    background-color: #0e0f14;
    padding: 80px 0;
}