/* --- VARIABLES GLOBALES (Alineadas con Quantum Vibra) --- */
:root {
    --primary: #6a1b9a; 
    --secondary: #00e5ff; 
    --bg: #0a0a0c;
    --card: #16161a;
    --text: #f4f4f4;
    --whatsapp: #25d366;
    --glass: rgba(255, 255, 255, 0.03);
    --neon-cyan: 0 0 15px rgba(0, 229, 255, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* --- NAVEGACIÓN GLOBAL --- */
header {
    background: rgba(0, 0, 0, 0.95);
    padding: 1.2rem 5%;
    position: fixed; 
    width: 100%; 
    top: 0;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    border-bottom: 1px solid var(--primary); 
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo a {
    font-size: 1.6rem; 
    font-weight: bold; 
    color: var(--secondary);
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    text-shadow: var(--neon-cyan);
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    align-items: center;
}

nav a {
    text-decoration: none; 
    color: var(--text); 
    font-size: 0.9rem;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s;
}

nav a:hover { color: var(--secondary); }

/* --- LÓGICA DEL DROPDOWN --- */
.dropdown { position: relative; }

.dropdown-menu {
    display: none; /* Oculto por defecto */
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card);
    min-width: 240px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    margin-top: 10px;
    padding: 10px 0;
    z-index: 2000;
}

/* Esta es la regla clave que lo hace funcionar */
.dropdown:hover .dropdown-menu { 
    display: block !important; 
}

.dropdown-menu li { 
    width: 100%; 
    display: block; 
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    text-transform: none;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu a:hover {
    background: rgba(106, 27, 154, 0.2);
    color: var(--secondary);
}

/* --- ICONO CARRITO --- */
.cart-wrapper {
    position: relative; 
    display: flex; 
    align-items: center;
    margin: 0 15px; 
    cursor: pointer;
}

.cart-icon { fill: var(--text); width: 22px; height: 22px; transition: 0.3s; }

.cart-wrapper:hover .cart-icon { 
    fill: var(--secondary); 
    filter: drop-shadow(var(--neon-cyan)); 
}

.cart-count {
    position: absolute; top: -8px; right: -8px; 
    background: var(--primary);
    color: white; font-size: 0.7rem; 
    width: 16px; height: 16px;
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    border: 1px solid var(--secondary);
}
/* Contenedor de la lista de beneficios */
.benefits-list {
    list-style: none; /* Quitamos los puntos por defecto */
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    position: relative;
    padding-left: 35px; /* Espacio para la imagen */
    margin-bottom: 15px;
    line-height: 1.6;
}

/* La viñeta con imagen */
.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px; /* Ajusta según el tamaño de tu letra */
    width: 20px; 
    height: 20px;
    /* Reemplaza 'icon-check.png' por la ruta de tu imagen local */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300e5ff"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 5px var(--secondary)); /* Efecto neón */
}