/* =========================================
   1. RESET & GLOBAL
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #050505; 
    color: white; 
    overflow-x: hidden; 
}

/* =========================================
   2. NAVEGACIÓN
   ========================================= */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 5%; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent); 
}

.logo { font-weight: 900; font-size: 22px; color: white; letter-spacing: 2px; text-transform: uppercase; }

.menu a { 
    color: #ddd; text-decoration: none; margin-left: 30px; 
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; 
}

.btn-login { 
    border: 1px solid white; padding: 8px 20px; border-radius: 30px; transition: 0.3s; 
}
.btn-login:hover { background: white; color: black; }

/* =========================================
   3. HERO SECTION (Blindada para Safari/Mac)
   ========================================= */
.hero { 
    position: relative; 
    /* CAMBIO CLAVE: Altura automática para que no sobre espacio */
    height: auto; 
    min-height: auto; 
    
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    
    /* CAMBIO CLAVE: Padding específico 
       - 160px arriba: Para que no choque con el menú
       - 60px abajo: Solo un respiro antes de la siguiente sección */
    padding: 160px 8% 60px; 
    
    overflow: hidden; 
    background: #000; 
}

/* Video: Añadimos 'transform' para activar aceleración de hardware en Safari */
.video-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: 0; filter: brightness(0.5); 
    transform: translateZ(0); /* Truco para estabilidad en Safari */
}

/* TEXTO: Le permitimos encogerse si hace falta (flex-shrink: 1) */
.hero-content { 
    flex: 1; /* Ocupa el espacio disponible... */
    max-width: 600px; 
    min-width: 300px; /* ...pero no menos de esto */
    z-index: 2; 
    position: relative; 
    margin-right: 60px; /* Más aire entre texto y foto */
}

.hero-tag { 
    background: rgba(255,255,255,0.1); padding: 5px 12px; border: 1px solid rgba(255,255,255,0.2); 
    font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: #00D1FF; display: inline-block; margin-bottom: 20px; 
}

h1 { font-size: 55px; line-height: 1.1; margin: 0 0 20px 0; text-transform: uppercase; font-weight: 800; }
p.subtitle { color: #ccc; font-size: 18px; margin-bottom: 30px; line-height: 1.5; }

/* Contenedor de Botones Hero */
.hero-buttons { display: flex; gap: 15px; margin-top: 20px; }

/* Botón 1: Relleno (Talento) */
.btn-primary { 
    background: #8A2BE2; color: white; padding: 15px 35px; border-radius: 5px; 
    text-decoration: none; font-weight: bold; font-size: 14px; display: inline-block; transition: 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #6e1bb8; transform: translateY(-2px); }

/* Botón 2: Borde (Inversionista) - NUEVO */
.btn-outline {
    border: 1px solid white; color: white; padding: 15px 35px; border-radius: 5px;
    text-decoration: none; font-weight: bold; font-size: 14px; display: inline-block; transition: 0.3s;
}
.btn-outline:hover { background: white; color: black; transform: translateY(-2px); }


/* TARJETA "ARTISTA DEL MES" (420px) */
.hero-featured {
    flex: 0 0 420px; /* Ancho fijo */
    width: 420px;    
    z-index: 10;
    position: relative;
    transform: translateZ(0); /* Estabilidad para Safari */
}

/* DISEÑO ACTUALIZADO: TARJETA HOME LIQUID GLASS */
.glass-card {
    background: rgba(20, 20, 20, 0.6); /* Fondo más oscuro */
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); /* Blur intenso */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Borde sutil */
    border-radius: 30px; /* Bordes más curvos */
    padding: 30px; 
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); /* Sombra profunda */
    transition: transform 0.3s ease;
}

/* Efecto Hover: Al pasar el mouse, flota un poco */
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5); /* Brillo violeta sutil */
}

.glass-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.glass-tag { color: #00D1FF; font-size: 12px; font-weight: 900; letter-spacing: 1.5px; }
.glass-img { width: 100%; height: 320px; object-fit: cover; border-radius: 16px; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.glass-info h3 { margin: 0; font-size: 24px; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.glass-info p { color: #ccc; font-size: 14px; margin: 8px 0 0; font-weight: 500; }

/* =========================================
   4. ROSTER & CARRUSEL
   ========================================= */
.roster-section { padding: 0px 0 80px 8%; background: #050505; }
.section-header { display: flex; align-items: baseline; gap: 15px; margin-bottom: 30px; }
.section-title { font-size: 24px; font-weight: 700; margin: 0; text-transform: uppercase; }
.section-count { color: #8A2BE2; font-size: 24px; font-weight: 300; }

.carousel { 
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; 
    scrollbar-width: none; 
}
.carousel::-webkit-scrollbar { display: none; }

.card { 
    min-width: 220px; max-width: 220px; height: 320px; position: relative; 
    border-radius: 12px; overflow: hidden; border: 1px solid #1a1a1a; cursor: pointer; transition: 0.3s;
}
.card:hover { transform: scale(1.02); border-color: #8A2BE2; }
.card-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.card:hover .card-img { filter: grayscale(0%); }

.card-overlay { 
    position: absolute; bottom: 0; left: 0; right: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); padding: 20px 15px; 
}
.name-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.card-name { margin: 0; font-size: 14px; font-weight: 800; text-transform: uppercase; }
.verified-icon { width: 14px; height: 14px; min-width: 14px; fill: #00D1FF; }
.card-genre { color: #aaa; font-size: 10px; margin: 0; text-transform: uppercase; font-weight: 600; }

/* =========================================
   5. ECOSISTEMA 360 (NUEVO)
   ========================================= */
.ecosystem-section {
    padding: 80px 8%;
    background-color: #080808;
    border-top: 1px solid #1a1a1a;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.eco-card {
    background: #000;
    border: 1px solid #222;
    padding: 40px 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.eco-card:hover {
    border-color: #8A2BE2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

.eco-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.eco-card h3 { font-size: 18px; color: white; margin-bottom: 10px; font-weight: 800; letter-spacing: 1px; }
.eco-card p { font-size: 13px; color: #888; line-height: 1.5; }


/* =========================================
   6. FOOTER
   ========================================= */
footer { background-color: #000; border-top: 1px solid #1a1a1a; padding: 60px 20px; margin-top: 0; text-align: center; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 30px; }

/* Partner Logos (Power/KV) */
.partner-logos { display: flex; align-items: center; gap: 20px; justify-content: center; }
.partner-name { font-weight: 900; color: #fff; font-size: 16px; letter-spacing: 1px; }
.partner-separator { color: #444; }

.footer-links { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #888; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.footer-links a:hover { color: #8A2BE2; }
.copyright { color: #444; font-size: 11px; margin-top: 20px; }

/* =========================================
   7. RESPONSIVE (MÓVIL Y TABLET)
   ========================================= */
/* OPTIMIZACIÓN: Ocultar video pesado en móvil */
@media (max-width: 768px) {
    .video-bg {
        display: none; /* No carga el video */
    }
    
    .hero {
        /* Pone una foto liviana en su lugar */
        background-image: url('assets/img/hero-mobile-poster.webp'); 
        background-size: cover;
        background-position: center;
    }


    /* Hero apilado (Columna) */
    .hero { flex-direction: column; justify-content: center; padding: 100px 20px 50px; height: auto; }
    .hero-content { margin-right: 0; margin-bottom: 50px; text-align: center; width: 100%; }
    h1 { font-size: 36px; }
    
    /* Botones apilados en móvil */
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }

    /* Tarjeta en móvil: Centrada y visible debajo */
    .hero-featured { flex: 1; width: 100%; display: flex; justify-content: center; }
    .glass-card { max-width: 300px; }

    /* Roster y Footer */
    .roster-section { padding-left: 20px; }
    .card { min-width: 160px; max-width: 160px; height: 240px; }
    .footer-links { flex-direction: column; gap: 15px; }
    
    /* Ecosistema Móvil */
    .ecosystem-section { padding: 60px 20px; }
}

/* =========================================
   8. MENÚ MÓVIL (HAMBURGUESA)
   ========================================= */

/* Estilos base del botón (Oculto en PC) */
.hamburger {
    display: none; /* <--- AQUÍ ESTÁ EL TRUCO: En PC no se ve */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* ESTILOS ESPECÍFICOS PARA CELULAR */
@media (max-width: 900px) {
    .hamburger { display: flex; /* <--- En Móvil SÍ se ve */ }

    /* El menú oculto por defecto */
    .menu {
        position: fixed;
        top: 70px;
        left: -100%; /* Escondido a la izquierda */
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s ease;
    }

    /* Cuando activamos la clase .active con JS */
    .menu.active {
        left: 0; /* Entra en pantalla */
    }

    .menu a { 
        display: block;
        font-size: 20px;
        margin: 0;
    }
}

/* =========================================
   9. ESTILOS DE PERFIL (CORRECCIÓN FINAL MÓVIL Y GALERÍA)
   ========================================= */

.profile-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    overflow: hidden;
}

/* Fondo y Overlay */
.hero-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: blur(10px) brightness(0.4); z-index: 0;
}
.hero-overlay { z-index: 1; } /* Si necesitas oscurecer más */

/* Tarjeta Principal */
.liquid-glass-card {
    position: relative; z-index: 10;
    max-width: 1100px; width: 100%;
    display: flex; /* Flexbox para poner foto al lado del texto */
    align-items: center; gap: 40px;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px; padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.glass-content { flex: 1; }

/* FOTO INTERNA (La que se borró) */
.glass-visual { 
    flex: 0 0 350px; /* Ancho fijo en PC */
    display: block; /* Asegurar que se muestre */
}

.internal-photo {
    width: 100%; height: 450px; object-fit: cover;
    border-radius: 20px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Tipografía Perfil */
.badge-container { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.status-badge { padding: 6px 12px; font-size: 10px; font-weight: 800; border-radius: 6px; letter-spacing: 1px; color: white; }
.radio-ready { background: #8A2BE2; box-shadow: 0 0 15px rgba(138, 43, 226, 0.4); }
.independent { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); }

.artist-name { font-size: 60px; margin: 0 0 10px 0; line-height: 0.9; text-transform: uppercase; color: white; }
.artist-genre { color: #00D1FF; font-weight: 700; letter-spacing: 3px; margin-bottom: 25px; font-size: 14px; text-transform: uppercase; }
.artist-bio { color: #e0e0e0; font-size: 15px; line-height: 1.6; margin-bottom: 30px; }

/* Botones */
.profile-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-glass {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.4);
    color: white; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: bold; font-size: 13px; transition: 0.3s;
}
.btn-glass:hover { background: white; color: black; }

/* MÉTRICAS (Colores recuperados) */
.metrics-bar {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: #080808; border-bottom: 1px solid #222;
    padding: 30px 8%; position: relative; z-index: 2;
}
.metric-item { display: flex; flex-direction: column; gap: 5px; border-right: 1px solid #222; padding-left: 20px; }
.metric-label { font-size: 10px; color: #666; letter-spacing: 1px; font-weight: 700; }
.metric-value { font-size: 14px; font-weight: 700; color: white; }

.text-green { color: #00FF88 !important; }
.text-red { color: #FF4444 !important; }
.text-yellow { color: #FFBB00 !important; }

/* GALERÍA Y BIO */
.bio-gallery-section {
    padding: 60px 8%; background-color: #050505;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.section-title-small { color: #8A2BE2; font-size: 14px; letter-spacing: 2px; font-weight: 900; margin-bottom: 20px; }
.bio-text p { color: #bbb; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }

/* Grid de Galería */
.gallery-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); /* 2 columnas siempre */
    gap: 15px;
}
.gallery-img {
    width: 100%; height: 200px; object-fit: cover;
    border-radius: 12px; transition: 0.3s; opacity: 0.8;
}
.gallery-img:hover { opacity: 1; transform: scale(1.03); }

/* SECCIÓN MÚSICA (Título Decorado) */
.media-section { padding: 80px 5%; background: #050505; text-align: center; }

.track-header {
    display: inline-block;
    border: 1px solid #333;
    padding: 20px 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 30px;
}
.track-label { display: block; color: #8A2BE2; font-size: 10px; letter-spacing: 3px; font-weight: 900; margin-bottom: 10px; }
.track-title { margin: 0; font-size: 30px; font-weight: 800; color: white; letter-spacing: 1px; }

.video-wrapper { max-width: 800px; margin: 0 auto; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.streaming-links { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.btn-stream { padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 14px; color: white; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-stream i { font-size: 18px; } /* Tamaño icono */
.btn-stream.spotify { background: #1DB954; }
.btn-stream.apple { background: #FA243C; }

/* =========================================
   CORRECCIONES MÓVILES (IMPORTANTES)
   ========================================= */
@media (max-width: 900px) {
    .profile-hero { padding: 120px 5% 50px; height: auto; display: block; }
    
    .liquid-glass-card { 
        flex-direction: column-reverse; /* Foto arriba, texto abajo */
        padding: 25px; 
    }

    /* Arreglo Foto Interna en Móvil */
    .glass-visual { 
        width: 100%; 
        flex: auto; 
        margin-bottom: 20px;
    }
    .internal-photo { 
        height: 350px; /* Altura fija para que no desaparezca */
        width: 100%;
        transform: rotate(0deg); 
    }

    .artist-name { font-size: 38px; }
    .bio-gallery-section { grid-template-columns: 1fr; gap: 40px; }
    
    /* Galería Móvil: Mantener 2 columnas pero más pequeñas */
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .gallery-img { height: 120px; } /* Fotos más bajitas para no ocupar tanto */

    .metrics-bar { grid-template-columns: 1fr 1fr; gap: 20px; }
    .metric-item { border: none; padding: 0; align-items: center; text-align: center; }
}

/* =========================================
   10. LIGHTBOX (VISOR DE GALERÍA)
   ========================================= */
.lightbox {
    display: none; /* Oculto por defecto */
    position: fixed; 
    z-index: 2000; /* Por encima de todo, incluso del menú */
    padding-top: 50px;
    left: 0; top: 0; 
    width: 100%; height: 100%;
    background-color: rgba(5, 5, 5, 0.95); /* Fondo negro casi total */
    justify-content: center; 
    align-items: center;
    backdrop-filter: blur(10px); /* Desenfoque del fondo */
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%; 
    max-height: 85vh; /* Que no se salga de la pantalla */
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.2); /* Resplandor violeta sutil */
    animation: zoom 0.3s; /* Efecto de zoom al abrir */
    object-fit: contain;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;} 
    to {transform: scale(1); opacity: 1;}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover {
    color: #8A2BE2; /* Violeta al pasar el mouse */
    transform: rotate(90deg); /* Pequeña animación */
}

/* Cursor de lupa en las fotos de la galería */
.gallery-img { cursor: zoom-in; }

/* FLECHAS DE NAVEGACIÓN LIGHTBOX */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    z-index: 2002;
    border-radius: 0 3px 3px 0;
}

/* Posiciones */
.prev { left: 20px; }
.next { right: 20px; border-radius: 3px 0 0 3px; }

/* Efecto Hover */
.prev:hover, .next:hover {
    background-color: rgba(138, 43, 226, 0.4); /* Fondo violeta suave */
    transform: scale(1.1);
}

/* Ajuste Móvil: Flechas más separadas para no fallar con el dedo */
@media (max-width: 900px) {
    .prev, .next { font-size: 30px; padding: 20px; }
}

/* =========================================
   11. ESTÉTICA PREMIUM (GOLD & GLASS)
   ========================================= */

/* 1. CORRECCIÓN DE COLOR (Adiós al azul) */
a { text-decoration: none; color: inherit; } /* Regla global de seguridad */

.card-link {
    text-decoration: none;
    color: white !important; /* Fuerza el blanco en el carrusel */
    display: block;
}

/* 2. CARRUSEL ESTILO "LIQUID GLASS" */
.card {
    /* Quitamos fondo sólido, ponemos vidrio */
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card:hover {
    border-color: #8A2BE2 !important; /* Borde violeta al pasar el mouse */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

/* 3. EFECTO "GOLD TIER" (Estilo EA Sports FC) */
.gold-tier {
    /* Borde Dorado Brillante */
    border: 2px solid #FFD700 !important; 
    /* Resplandor interior y exterior dorado */
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5), inset 0 0 15px rgba(255, 215, 0, 0.2) !important;
    /* Fondo con tinte sutil dorado */
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(20, 20, 20, 0.8)) !important;
    position: relative;
    overflow: hidden;
}

/* Destello animado sobre la tarjeta de oro */
.gold-tier::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: goldShine 4s infinite;
    pointer-events: none;
}

@keyframes goldShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    50%, 100% { transform: translateX(100%) rotate(45deg); }
}

/* Ajuste para que la etiqueta "Artista del Mes" combine con el oro */
.gold-tier .glass-tag {
    color: #FFD700 !important; /* Letras doradas */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* =========================================
   12. ESTILO "EPIC CARD" (ARTISTA DEL MES CENTRADO)
   ========================================= */

/* Contenedor principal de la tarjeta épica */
.epic-centered-card {
    position: relative;
    overflow: hidden; /* Vital para contener el fondo borroso */
    padding: 50px 30px; /* Más espacio interno */
    text-align: center;
    /* Aseguramos que herede las propiedades de gold-tier pero las ajuste */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Altura mínima para que se vea imponente */
}

/* EL TRUCO DEL FONDO BORROSO INTERNO (Pseudo-elemento) */
.epic-centered-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Usamos la variable que definimos en el HTML */
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    /* Desenfoque fuerte y oscurecimiento */
    filter: blur(30px) brightness(0.4) saturate(1.2);
    transform: scale(1.2); /* Escalamos para evitar bordes blancos por el blur */
    z-index: 0; /* Se va al fondo */
    opacity: 0.8;
}

/* Aseguramos que el contenido esté por encima del fondo borroso */
.epic-content-layer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Título "ARTISTA DEL MES" Imponente */
.epic-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.epic-title {
    font-size: 22px; /* Mucho más grande */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFD700; /* Oro puro */
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.6); /* Resplandor dorado */
}

/* Foto Principal Centrada */
.epic-main-photo-container {
    width: 280px;
    height: 280px;
    margin-bottom: 30px;
    position: relative;
}

.epic-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Un borde dorado fino y una sombra potente */
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(255, 215, 0, 0.2);
    transform: perspective(1000px) rotateX(5deg); /* Un ligero ángulo 3D */
    transition: 0.5s ease;
}

/* Efecto hover sutil en la foto */
.epic-centered-card:hover .epic-main-photo {
    transform: perspective(1000px) rotateX(0deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 30px rgba(255, 215, 0, 0.4);
}


/* AJUSTE PARA MÓVIL (Para que siga viéndose bonita y no gigante) */
@media (max-width: 900px) {
    .epic-centered-card {
        min-height: auto; /* Quitamos la altura forzada */
        padding: 30px 20px;
    }
    .epic-title { font-size: 16px; letter-spacing: 2px; }
    .epic-main-photo-container { width: 200px; height: 200px; margin-bottom: 20px; }
    .artist-name { font-size: 28px !important; }
}

/* =========================================
   13. SECCIÓN DE MÉTRICAS Y REDES
   ========================================= */

.digital-stats-section {
    padding: 40px 5%;
    background-color: #080808;
    border-bottom: 1px solid #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsivo automático */
    gap: 20px;
    margin-top: 20px;
}

/* Tarjeta de Estadística Individual */
.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* Efecto Hover: Sube y brilla */
.stat-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    border-color: #444;
}

/* Iconos */
.stat-icon {
    font-size: 30px;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: 0.3s;
}

/* Textos */
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-size: 24px; font-weight: 800; color: white; letter-spacing: 1px; }
.stat-label { font-size: 11px; color: #888; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

/* --- COLORES DE MARCA (Al pasar el mouse) --- */

/* Instagram */
.stat-card.instagram:hover .stat-icon { background: #E1306C; color: white; box-shadow: 0 0 15px #E1306C; }
.stat-card.instagram:hover .stat-number { color: #E1306C; }

/* TikTok */
.stat-card.tiktok:hover .stat-icon { background: #00f2ea; color: black; box-shadow: 0 0 15px #00f2ea; }
.stat-card.tiktok:hover .stat-number { color: #00f2ea; text-shadow: 2px 2px #ff0050; }

/* YouTube */
.stat-card.youtube:hover .stat-icon { background: #FF0000; color: white; box-shadow: 0 0 15px #FF0000; }
.stat-card.youtube:hover .stat-number { color: #FF0000; }

/* Spotify */
.stat-card.spotify-stat:hover .stat-icon { background: #1DB954; color: black; box-shadow: 0 0 15px #1DB954; }
.stat-card.spotify-stat:hover .stat-number { color: #1DB954; }

/* Ajuste Móvil */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: 1fr 1fr; } /* 2 columnas en celular */
    .stat-card { padding: 15px; flex-direction: column; text-align: center; gap: 10px; }
    .stat-number { font-size: 20px; }
}

/* =========================================
   14. ESTILOS SECCIÓN LEGAL (CORRECCIÓN FINAL: INVERSIÓN)
   ========================================= */

/* --- 1. HERO (AHORA TIENE LA FOTO DEL EDIFICIO) --- */
.legal-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* CAMBIO: Aquí ponemos la textura visual (Edificio/Mármol) */
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), #050505), url('assets/img/legal-texture.png') center/cover;
    
    padding: 0 5%;
    position: relative;
    /* El borde inferior desaparece para fundirse con el negro de abajo */
    border-bottom: none; 
}

.legal-content h1 { font-size: 50px; margin-bottom: 20px; text-transform: uppercase; text-shadow: 0 5px 15px rgba(0,0,0,0.8); }
.hero-subtitle { font-size: 18px; max-width: 700px; margin: 0 auto 30px; line-height: 1.6; color: #ddd; }


/* --- 2. SECCIÓN RECURSOS (FONDO OSCURO CON PROFUNDIDAD VIOLETA) --- */
.resources-section { 
    padding: 80px 5%; 
    
    /* CAMBIO: Quitamos la foto, dejamos negro puro como base */
    background-color: #050505; 
    
    position: relative;
    border-bottom: 1px solid #111;
    overflow: hidden; 
}

/* LA CAPA DE PROFUNDIDAD (VIGNETTE VIOLETA) */
.resources-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    
    /* DEGRADADO HORIZONTAL (Solo en los bordes) */
    background: linear-gradient(90deg, 
                rgba(138, 43, 226, 0.15) 0%,   /* Violeta suave izquierda */
                #050505 10%,                   /* Negro Sólido empieza */
                #050505 90%,                   /* Negro Sólido termina */
                rgba(138, 43, 226, 0.15) 100%  /* Violeta suave derecha */
    );
    z-index: 0; /* Al fondo */
}

/* Título (Visible y Limpio) */
.resources-section .section-title-small {
    position: relative; z-index: 2;
    text-align: center;
    color: #8A2BE2; /* Violeta */
    margin-bottom: 60px;
    font-size: 14px; letter-spacing: 4px; font-weight: 900;
}

/* GRID DE TARJETAS */
.resources-grid { 
    position: relative; z-index: 2; /* Encima del fondo */
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1100px; 
    margin: 0 auto; 
}

/* Tarjeta Individual (Estilo Tech) */
.resource-card {
    background: rgba(20, 20, 20, 0.6); /* Un poco más oscuro */
    border: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 40px 30px; 
    border-radius: 8px;
    text-align: center; 
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* Efecto Hover */
.resource-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: #8A2BE2; transform: scaleX(0); transition: 0.4s;
}

.resource-card:hover { 
    background: rgba(30, 30, 30, 0.9);
    transform: translateY(-5px); 
    border-color: #8A2BE2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.resource-card:hover::after { transform: scaleX(1); }

/* Elementos internos de la tarjeta */
.resource-icon { font-size: 40px; color: #8A2BE2; margin-bottom: 20px; }
.resource-card h3 { color: white; margin-bottom: 10px; font-size: 18px; }
.resource-card p { color: #888; font-size: 13px; margin-bottom: 25px; line-height: 1.5; }

.btn-download {
    display: inline-block; padding: 10px 25px; 
    background: transparent; border: 1px solid #444;
    color: #ccc; text-decoration: none; border-radius: 30px; 
    font-size: 12px; transition: 0.3s;
}
.btn-download:hover { background: white; color: black; border-color: white; }


/* --- SECCIÓN EXPERTOS (ABOGADOS) --- */
.lawyers-section {
    position: relative;
    background-color: #050505; 
    padding-top: 60px; /* Menos espacio necesario porque el fondo de arriba es negro */
    padding-bottom: 80px;
    z-index: 5;
}

.lawyers-section .section-title-small {
    text-align: center; margin-bottom: 60px; color: #8A2BE2;
}
.lawyer-card { min-width: 250px; max-width: 250px; }
.btn-glass-small {
    margin-top: 15px; padding: 8px 15px; background: rgba(255,255,255,0.2); 
    border: 1px solid white; color: white; cursor: pointer; border-radius: 20px; 
    font-size: 11px; font-weight: bold; transition: 0.3s;
}
.btn-glass-small:hover { background: white; color: black; }
/* =========================================
   15. SECCIÓN PARTNERS (ACTUALIZADA)
   ========================================= */
.partners-section {
    padding: 60px 5%;
    background: #050505;
    text-align: center;
    border-top: 1px solid #111;
}

.partners-title {
    color: #444; font-size: 11px; letter-spacing: 3px; font-weight: 800; margin-bottom: 40px; text-transform: uppercase;
}

.partners-logos {
    display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}

/* Estilo Base para todos los logos */
.partner-logo {
    transition: 0.3s;
    filter: grayscale(100%) opacity(0.5); /* Apagados por defecto */
    cursor: pointer;
}

/* Logos Locales (Radios/Estudios) - Suelen ser más altos */
.partner-logo.local {
    height: 45px; /* Un poco más grandes para que destaquen */
    object-fit: contain;
}

/* Logos Globales (Spotify, etc) - Suelen ser texto horizontal */
.partner-logo.global {
    height: 25px; /* Más bajitos para equilibrar el peso visual */
    object-fit: contain;
}

/* Efecto Hover: A todo color y brillo */
.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* =========================================
   16. ESTILOS PÁGINA TALENTO (REDISEÑO FINAL)
   ========================================= */

/* --- 1. HERO (FOTO DEL CONCIERTO/VIBRA) --- */
.talento-hero {
    height: 60vh; /* Altura impactante */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* FOTO DE FONDO (Asegúrate de tener 'talento-bg.jpg') */
    /* El degradado vertical ayuda a fundir la foto con el negro de abajo */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), #050505), url('assets/img/talento-bg.jpg') center/cover no-repeat;
    
    padding: 0 5%;
    position: relative;
}

.talento-content { 
    max-width: 800px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 2; 
}
.talento-content h1 { text-shadow: 0 5px 15px rgba(0,0,0,0.8); }


/* --- 2. SECCIÓN FORMULARIO (FONDO NEGRO CON BORDES VIOLETAS) --- */
.audition-section {
    padding: 80px 5% 100px;
    display: flex;
    justify-content: center;
    
    /* FONDO BASE NEGRO (Sin foto) */
    background-color: #050505;
    
    position: relative;
    overflow: hidden; /* Contiene el brillo */
}

/* TU DEGRADADO LATERAL (Vignette Violeta) */
.audition-section::before {
    content: ''; 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    
    /* El código exacto que pediste */
    background: linear-gradient(90deg, 
                rgba(138, 43, 226, 0.15) 0%,   /* Violeta suave izquierda */
                #050505 10%,                   /* Negro Sólido empieza */
                #050505 90%,                   /* Negro Sólido termina */
                rgba(138, 43, 226, 0.15) 100%  /* Violeta suave derecha */
    );
    z-index: 0;
    pointer-events: none;
}

/* --- 3. EL FORMULARIO (FLOTANDO EN EL CENTRO) --- */
.form-container {
    width: 100%;
    max-width: 700px;
    position: relative; 
    z-index: 2; /* Importante: Encima del fondo */
    
    /* Estilo Tech/Glass sutil */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(0,0,0,0.5); /* Sombra para despegarlo del fondo */
    
    padding: 50px;
    border-radius: 20px;
}

.form-title {
    color: white; font-size: 24px; margin-bottom: 30px; 
    text-align: center; letter-spacing: 2px;
    text-transform: uppercase;
}

/* Inputs y Estilos del Formulario */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.input-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.input-group label { color: #bbb; font-size: 12px; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }

input, select, textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    outline: none;
    width: 100%; /* Asegura que llenen el espacio */
}

/* Efecto Focus (Cian Eléctrico) */
input:focus, select:focus, textarea:focus {
    border-color: #00D1FF;
    background: rgba(0, 209, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.1);
}

.input-with-icon { position: relative; }
.input-with-icon i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #666; }
.input-with-icon input { padding-left: 45px; }

.full-width { width: 100%; margin-top: 10px; font-size: 16px; padding: 18px; }

/* Ajuste Móvil */
@media (max-width: 768px) {
    .talento-hero { height: auto; padding: 120px 5% 60px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-container { padding: 30px 20px; }
}

/* =========================================
   17. ENLACES ECOSISTEMA 360
   ========================================= */

.eco-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Para que ocupe todo el espacio de la tarjeta */
}

/* Movemos el efecto Hover al enlace para que se sienta más reactivo */
.eco-link:hover .eco-card {
    transform: translateY(-10px);
    border-color: #00D1FF;
    background: rgba(255, 255, 255, 0.05); /* Un brillo sutil al pasar el mouse */
}

/* =========================================
   18. ESTILOS PRODUCTORES Y SERVICIOS
   ========================================= */

.producers-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/img/studio-bg.jpg'); /* Asegúrate de tener esta foto o una oscura */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 5%;
}

.producers-content { position: relative; z-index: 2; max-width: 800px; }

/* Tarjetas de Productor (Ajustes sobre la card normal) */
.producer-badge {
    position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.7); 
    padding: 2px 8px; font-size: 10px; border-radius: 4px; border: 1px solid #555;
}

.producer-stats {
    display: flex; justify-content: space-between; margin-top: 10px; font-size: 11px; color: #ccc;
}
.producer-stats i { color: #00D1FF; margin-right: 5px; }


/* Sección de Servicios (Studio 17 & MusicCon) */
.services-section { padding: 80px 5%; background: #080808; }
.services-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; max-width: 1000px; margin: 0 auto; 
}

.service-card {
    background: #111; border: 1px solid #222; padding: 40px; border-radius: 20px;
    text-align: center; transition: 0.3s;
}
.featured-service { border-color: #00D1FF; box-shadow: 0 0 20px rgba(0, 209, 255, 0.1); }

.service-logo { height: 50px; margin-bottom: 20px; filter: grayscale(100%) brightness(2); }
.service-card:hover .service-logo { filter: grayscale(0%); }

.service-card h3 { font-size: 20px; margin-bottom: 15px; letter-spacing: 2px; }
.service-desc { color: #888; font-size: 13px; line-height: 1.6; margin-bottom: 25px; }

.service-list { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.service-list li { 
    padding: 10px 0; border-bottom: 1px solid #222; color: #ddd; font-size: 14px; 
}
.service-list li i { color: #00D1FF; width: 25px; text-align: center; margin-right: 10px; }

/* Sección CTA Final */
.join-producers {
    padding: 80px 5%; text-align: center; background: #000; border-top: 1px solid #222;
}
.join-producers h2 { font-size: 30px; margin-bottom: 15px; }
.join-producers p { color: #888; margin-bottom: 30px; }

/* =========================================
   19. AJUSTES FINALES PRODUCTORES (SPACING & DARK MODE)
   ========================================= */

/* 1. SEPARAR EL BADGE "MARKETPLACE" DEL TÍTULO */
.producers-content .status-badge {
    display: inline-block;
    margin-bottom: 25px;
}

/* 2. OSCURECER LA FOTO NIVEL EXPERTO */
.producers-hero .hero-overlay {
    /* Opción Nuclear:
       Empieza arriba al 90% negro (0.9) y termina abajo en negro puro (1).
    */
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), #000000) !important;

    /* IMPORTANTE: Forzamos que el div del overlay en sí mismo no tenga transparencia.
       Dejamos que el gradiente controle toda la luz. */
    opacity: 1 !important;
}

/* 3. SEPARAR "BEATMAKERS VERIFICADOS" DE LA FOTO */
.beatmakers-section {
    padding-top: 100px !important;
    padding-bottom: 50px;
    background-color: #000;
}

.beatmakers-section .section-title-small {
    margin-bottom: 40px !important;
}

/* =========================================
   20. SECCIÓN INVERSIONISTAS (COMPLETA Y CORREGIDA)
   ========================================= */

/* --- 1. HERO Y FONDO --- */
.investor-hero {
    width: 100%;
    min-height: 90vh; /* Altura completa */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 5%;
    
    /* IMAGEN DE FONDO */
    background: url('assets/img/investor-bg.jpg') no-repeat center center;
    background-size: cover;
    background-color: #050505; /* Color de respaldo */
}

/* Capa oscura para que el texto se lea */
.investor-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Oscuridad al 70% */
    z-index: 1;
}

/* --- 2. TARJETA DE CRISTAL CENTRAL --- */
.investor-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    width: 100%;
    
    /* EFECTO VIDRIO */
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3); /* Borde dorado */
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    
    padding: 60px 40px;
}

/* Badge Amarillo */
.investor-content .status-badge {
    display: inline-block;
    margin-bottom: 30px;
    background-color: #FFD700; color: #000;
    border: none; font-weight: 800; padding: 8px 15px; border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Títulos */
.investor-title {
    font-size: 48px; line-height: 1.1; margin-bottom: 25px;
    color: #ffffff; text-transform: uppercase;
    text-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

.investor-subtitle {
    font-size: 16px; color: #ddd; margin: 0 auto 40px; max-width: 700px; line-height: 1.6;
}

/* --- 3. BOTONES DORADOS (ESTOS FALTABAN) --- */
.investor-buttons {
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}

.btn-gold {
    display: inline-block; padding: 15px 30px; 
    background: #FFD700; color: #000; 
    font-weight: 800; text-decoration: none; border-radius: 5px; 
    transition: 0.3s; border: 2px solid #FFD700;
}
.btn-gold:hover { background: transparent; color: #FFD700; }

.btn-outline-gold {
    display: inline-block; padding: 15px 30px; 
    background: transparent; color: #FFD700; 
    font-weight: 800; text-decoration: none; border-radius: 5px; 
    transition: 0.3s; border: 2px solid #FFD700;
}
.btn-outline-gold:hover { background: #FFD700; color: #000; }

/* --- 4. SECCIÓN DE DATOS (NÚMEROS) --- */
.data-section { background: #080808; padding: 60px 5%; border-bottom: 1px solid #222; }
.data-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; max-width: 1000px; margin: 0 auto; }
.data-card { text-align: center; }
.data-card h2 { font-size: 40px; color: #FFD700; margin-bottom: 10px; font-weight: 900; }
.data-card p { font-size: 13px; color: #888; max-width: 200px; margin: 0 auto; }

/* --- 5. TESIS DE INVERSIÓN Y GRÁFICA --- */
.investment-thesis { padding: 80px 5%; background: #000; }
.thesis-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1100px; margin: 0 auto; align-items: center; }

.thesis-heading { font-size: 30px; margin-bottom: 20px; line-height: 1.3; color: white; }
.thesis-text p { color: #aaa; margin-bottom: 20px; line-height: 1.6; }

.check-list { list-style: none; padding: 0; margin-top: 20px; }
.check-list li { margin-bottom: 15px; font-size: 15px; display: flex; align-items: center; color: #ddd; }
.check-list li i { color: #FFD700; margin-right: 15px; font-size: 18px; }

/* Gráfica Visual CSS */
.thesis-visual { background: #111; padding: 40px; border-radius: 20px; border: 1px solid #222; }
.chart-container { display: flex; align-items: flex-end; justify-content: space-between; height: 200px; padding-bottom: 10px; border-bottom: 1px solid #444; }
.bar { width: 18%; background: linear-gradient(to top, #444, #FFD700); border-radius: 5px 5px 0 0; position: relative; }
.bar span { position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%); font-size: 10px; color: #666; width: 100%; text-align: center; }

.bar-1 { height: 30%; opacity: 0.5; }
.bar-2 { height: 50%; opacity: 0.7; }
.bar-3 { height: 75%; opacity: 0.9; }
.bar-4 { height: 95%; box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }

/* --- 6. FORMULARIO VIP --- */
.investor-form-section { padding: 80px 5%; background: #050505; display: flex; justify-content: center; }
.investor-form-container { width: 100%; max-width: 500px; background: #111; padding: 40px; border-radius: 15px; border: 1px solid #333; }

/* Ajustes Móvil */
@media (max-width: 900px) {
    .thesis-container { grid-template-columns: 1fr; }
    .investor-title { font-size: 32px; }
    .investor-content { padding: 30px 20px; }
    .investor-hero { padding: 120px 5% 60px; }
}

/* =========================================
   21. PÁGINA DE LOGIN (ACCESO)
   ========================================= */

.login-section {
    height: 100vh; /* Ocupa toda la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #111, #000);
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    text-align: center;
}

.login-header { margin-bottom: 30px; }
.login-header h1 { font-size: 24px; color: white; margin: 0; }

.form-actions {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: #888; margin-bottom: 20px;
}

.checkbox-container { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.forgot-pass { color: #888; text-decoration: none; transition: 0.3s; }
.forgot-pass:hover { color: white; }

.login-footer { margin-top: 30px; font-size: 13px; color: #666; border-top: 1px solid #222; padding-top: 20px; }

/* =========================================
   22. SECCIÓN ACADEMY (NEON VIBES)
   ========================================= */

.academy-section {
    position: relative;
    padding: 100px 5%;
    /* Fondo oscuro tipo "pared" */
    background: #080808; 
    /* Opcional: Si tienes una textura de ladrillo oscuro, úsala aquí */
    /* background: url('assets/img/brick-wall.jpg'); */
    overflow: hidden;
    text-align: center;
    border-top: 1px solid #111;
}

.academy-title {
    font-size: 40px; margin-bottom: 60px; color: white; letter-spacing: 5px; font-weight: 900;
}

.neon-grid {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}

/* BASE DE LA TARJETA NEÓN */
.neon-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid #333;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    position: relative;
    transition: 0.3s;
    /* Efecto de resplandor suave inicial */
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.neon-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #000; padding: 5px 15px; font-size: 12px; font-weight: bold; letter-spacing: 2px;
    border: 1px solid #333;
}

.neon-text {
    font-size: 28px; line-height: 1.1; margin: 20px 0; font-weight: 900; letter-spacing: 1px;
    text-transform: uppercase;
}

.neon-date {
    font-size: 18px; font-weight: bold; margin-bottom: 15px; display: flex; justify-content: center; align-items: center; gap: 10px;
}

.neon-desc { color: #888; font-size: 14px; margin-bottom: 30px; line-height: 1.5; }

/* --- TEMA CIAN (AZUL ELÉCTRICO) --- */
.cyan-theme { border-color: #00D1FF; box-shadow: 0 0 15px rgba(0, 209, 255, 0.2); }
.cyan-theme .neon-text { color: #fff; text-shadow: 0 0 10px #00D1FF, 0 0 20px #00D1FF; }
.cyan-theme .neon-date { color: #00D1FF; text-shadow: 0 0 5px #00D1FF; }
.cyan-theme .neon-badge { color: #00D1FF; border-color: #00D1FF; box-shadow: 0 0 10px rgba(0, 209, 255, 0.4); }

.btn-neon-cyan {
    display: inline-block; padding: 12px 30px; background: transparent; 
    border: 2px solid #00D1FF; color: #00D1FF; font-weight: 800; text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.4); transition: 0.3s;
}
.btn-neon-cyan:hover { background: #00D1FF; color: black; box-shadow: 0 0 30px #00D1FF; }


/* --- TEMA PINK (MAGENTA) --- */
.pink-theme { border-color: #ff00de; box-shadow: 0 0 15px rgba(255, 0, 222, 0.2); }
.pink-theme .neon-text { color: #fff; text-shadow: 0 0 10px #ff00de, 0 0 20px #ff00de; }
.pink-theme .neon-date { color: #ff00de; text-shadow: 0 0 5px #ff00de; }
.pink-theme .neon-badge { color: #ff00de; border-color: #ff00de; box-shadow: 0 0 10px rgba(255, 0, 222, 0.4); }

.btn-neon-pink {
    display: inline-block; padding: 12px 30px; background: transparent; 
    border: 2px solid #ff00de; color: #ff00de; font-weight: 800; text-decoration: none;
    box-shadow: 0 0 10px rgba(255, 0, 222, 0.4); transition: 0.3s;
}
.btn-neon-pink:hover { background: #ff00de; color: white; box-shadow: 0 0 30px #ff00de; }

/* ANIMACIÓN DE PARPADEO (Fallo de neón real) */
.blink { animation: flicker 3s infinite; }

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.4; }
}

/* Efecto Hover en las tarjetas */
.neon-card:hover { transform: translateY(-5px); }
.cyan-theme:hover { box-shadow: 0 0 40px rgba(0, 209, 255, 0.4); }
.pink-theme:hover { box-shadow: 0 0 40px rgba(255, 0, 222, 0.4); }

/* Ajuste Móvil */
@media (max-width: 768px) {
    .academy-title { font-size: 28px; }
    .neon-text { font-size: 24px; }
}


/* =========================================
   24. ESTILOS PANEL DE ARTISTA
   ========================================= */

/* Header personalizado con Avatar */
.artist-welcome { display: flex; align-items: center; gap: 15px; }
.welcome-avatar { 
    width: 50px; height: 50px; background: #8A2BE2; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-weight: 900; color: white; border: 2px solid #111; box-shadow: 0 0 0 2px #8A2BE2;
}

/* ZONA DE CARGA (UPLOAD ZONE) */
.upload-zone {
    border: 2px dashed #333;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: 0.3s;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: #8A2BE2;
    background: rgba(138, 43, 226, 0.05);
}

.upload-icon {
    font-size: 40px; color: #666; margin-bottom: 20px; transition: 0.3s;
}
.upload-zone:hover .upload-icon { color: #8A2BE2; transform: translateY(-5px); }

.upload-zone h3 { font-size: 18px; color: white; margin-bottom: 10px; }
.upload-zone p { color: #888; font-size: 14px; margin-bottom: 20px; }
.upload-specs { 
    display: inline-block; background: #111; padding: 5px 15px; 
    border-radius: 20px; font-size: 11px; color: #555; border: 1px solid #222;
}

/* Mini Portadas en la Tabla */
.mini-cover {
    width: 40px; height: 40px; border-radius: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* =========================================
   25. ESTILOS PANEL INVERSIONISTA
   ========================================= */

/* Tarjeta de Ronda de Inversión */
.investment-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* Borde dorado brillante arriba */
.investment-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: #FFD700;
}

.inv-header { margin-bottom: 25px; }
.inv-badge { 
    display: inline-block; background: rgba(255, 215, 0, 0.1); 
    color: #FFD700; font-size: 10px; padding: 5px 10px; border-radius: 4px; 
    font-weight: bold; margin-bottom: 10px; border: 1px solid rgba(255, 215, 0, 0.3);
}

.inv-body { display: flex; justify-content: space-between; margin-bottom: 20px; }
.inv-metric { display: flex; flex-direction: column; }
.inv-metric span { font-size: 12px; color: #666; }
.inv-metric strong { font-size: 20px; color: white; }

.progress-bar { width: 100%; height: 6px; background: #222; border-radius: 3px; margin-bottom: 25px; }
.progress-fill { height: 100%; background: #FFD700; border-radius: 3px; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

.btn-gold-full {
    width: 100%; padding: 15px; background: #FFD700; color: black; font-weight: 900;
    border: none; border-radius: 6px; cursor: pointer; transition: 0.3s; letter-spacing: 1px;
}
.btn-gold-full:hover { background: white; box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }

/* =========================================
   27. ESTILOS IDONICK CAMPS (DASHBOARD)
   ========================================= */
.camp-banner {
    background: linear-gradient(to right, #111 30%, rgba(138, 43, 226, 0.2)), url('assets/img/studio-bg.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.camp-content { position: relative; z-index: 2; max-width: 600px; }

.camp-badge {
    background: #FF0050; color: white; padding: 5px 12px; font-size: 10px; 
    font-weight: bold; border-radius: 4px; display: inline-block; margin-bottom: 15px;
}

.camp-banner h2 { font-size: 28px; color: white; margin-bottom: 10px; }
.camp-banner p { color: #ccc; margin-bottom: 25px; font-size: 14px; line-height: 1.6; }

.camp-meta { display: flex; gap: 20px; margin-bottom: 25px; color: #00D1FF; font-size: 13px; font-weight: bold; }
.camp-meta i { margin-right: 5px; }

.btn-camp {
    background: white; color: black; padding: 12px 30px; border: none; 
    border-radius: 30px; font-weight: 900; cursor: pointer; transition: 0.3s;
}
.btn-camp:hover { background: #00D1FF; color: white; transform: translateY(-3px); }

/* Estilos del Directorio de Correos */
.email-item { display: flex; align-items: center; gap: 8px; }
.email-item a { color: #888; font-size: 11px; letter-spacing: 1px; transition: 0.3s; }
.email-item a:hover { color: white; }

/* --- TEMA PURPLE (VIOLETA - PARA EL CAMP DE COMPOSICIÓN) --- */
.purple-theme { border-color: #8A2BE2; box-shadow: 0 0 15px rgba(138, 43, 226, 0.2); }
.purple-theme .neon-text { color: #fff; text-shadow: 0 0 10px #8A2BE2, 0 0 20px #8A2BE2; }
.purple-theme .neon-date { color: #8A2BE2; text-shadow: 0 0 5px #8A2BE2; }
.purple-theme .neon-badge { color: #8A2BE2; border-color: #8A2BE2; box-shadow: 0 0 10px rgba(138, 43, 226, 0.4); }

.btn-neon-purple {
    display: inline-block; padding: 12px 30px; background: transparent; 
    border: 2px solid #8A2BE2; color: #8A2BE2; font-weight: 800; text-decoration: none;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4); transition: 0.3s;
}
.btn-neon-purple:hover { background: #8A2BE2; color: white; box-shadow: 0 0 30px #8A2BE2; }

/* Efecto Hover específico */
.purple-theme:hover { box-shadow: 0 0 40px rgba(138, 43, 226, 0.4); transform: translateY(-5px); }

/* AJUSTE PARA QUE QUEPAN 3 TARJETAS */
.neon-grid {
    gap: 30px; /* Reducimos un poco el espacio para que entren bien */
}
.neon-card {
    flex: 1 1 300px; /* Flexibilidad para que se ajusten al ancho */
    max-width: 350px; /* Un poco más estrechas para que quepan 3 en fila */
}

/* =========================================
   28. ESTILOS DE SCOUTING & FLOW (INVERSIONISTA PRO)
   ========================================= */

/* Barra de Filtros */
.filter-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.filter-select, .filter-input {
    background: #000;
    border: 1px solid #333;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
}

.filter-select:focus, .filter-input:focus {
    border-color: #FFD700;
}

/* Tarjeta Pro de Scouting */
.investor-card-pro {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.investor-card-pro:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.video-preview-container {
    position: relative;
    height: 180px;
    background: #000;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}

.investor-card-pro:hover .preview-img {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    opacity: 0.5;
}

.trend-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00FF88;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 10px;
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.3);
}

.inv-card-body {
    padding: 20px;
}

.inv-icons {
    display: flex;
    gap: 10px;
    font-size: 16px;
}

.mini-metrics {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #222;
}

.mini-metrics span {
    font-size: 11px;
    color: #888;
}

.mini-metrics strong {
    color: white;
    display: block;
    font-size: 14px;
}

/* Botones Dorados Pro */
.btn-gold-small {
    background: #FFD700;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 11px;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-gold-small:hover {
    background: white;
    transform: scale(1.02);
}

.btn-outline-gold-small {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-gold-small:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Contenedor Idonick Flow (Modo Vertical) */
.flow-container {
    background: #000;
    width: 100%;
    max-width: 400px;
    height: 85vh;
    border-radius: 25px;
    border: 2px solid #333;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,1);
}

.flow-video-sim {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background-position: center;
    background-size: cover;
}

.flow-info h2 {
    font-size: 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* =========================================
   29. IDONICK FLOW - VISOR VERTICAL PRO
   ========================================= */
.flow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.flow-container-v {
    width: 360px; /* Formato celular en escritorio */
    height: 740px;
    background: #000;
    border-radius: 30px;
    border: 4px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,1), 0 0 20px rgba(255,215,0,0.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: url('assets/img/alam/alam.jpg') center/cover; /* Foto de Alam */
    position: relative;
}

.flow-ui-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 100px 20px 100px; /* Espacio para el mini panel */
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.artist-meta h2 { color: white; font-size: 24px; margin-bottom: 5px; }
.artist-meta p { color: #00D1FF; font-size: 12px; font-weight: bold; }

.flow-actions-sidebar {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.action-item { text-align: center; cursor: pointer; }
.action-item i { font-size: 28px; color: white; display: block; margin-bottom: 5px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.action-item span { font-size: 10px; font-weight: bold; color: white; }

.investor-mini-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #FFD700;
}

.mini-data small { color: #888; font-size: 9px; display: block; letter-spacing: 1px; }
.mini-data strong { color: #00FF88; font-size: 18px; }

/* Adaptación para pantallas pequeñas */
@media (max-width: 450px) {
    .flow-container-v { width: 100%; height: 100vh; border-radius: 0; border: none; }
}

/* =========================================
   30. SECCIÓN DE PRECIOS (MEMBRESÍAS)
   ========================================= */
.pricing-section { padding: 80px 8%; background: #050505; }

.pricing-grid {
    display: flex; gap: 30px; justify-content: center; flex-wrap: wrap;
}

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #222;
    padding: 40px;
    border-radius: 20px;
    width: 320px;
    transition: 0.3s;
    position: relative;
}

.featured-price {
    border-color: #8A2BE2;
    background: rgba(138, 43, 226, 0.05);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.label-plan { border-color: #FFD700; background: rgba(255, 215, 0, 0.02); }

.popular-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #8A2BE2; color: white; padding: 5px 15px; font-size: 10px;
    font-weight: 900; border-radius: 20px;
}

.price-header h3 { font-size: 14px; letter-spacing: 2px; color: #888; margin-bottom: 20px; }
.price-value { font-size: 40px; font-weight: 900; color: white; margin-bottom: 30px; }
.price-value span { font-size: 14px; color: #666; }

.price-features { list-style: none; padding: 0; margin-bottom: 40px; text-align: left; }
.price-features li { margin-bottom: 15px; font-size: 13px; color: #ccc; display: flex; align-items: center; gap: 10px; }
.price-features i { color: #8A2BE2; width: 15px; }

/* Ajuste Móvil */
@media (max-width: 900px) {
    .featured-price { transform: scale(1); margin: 20px 0; }
}

/* Estilo especial para resaltar beneficios clave */
.price-features li i.fa-briefcase, 
.price-features li i.fa-rocket {
    font-size: 16px;
    filter: drop-shadow(0 0 5px currentColor);
}

.label-plan .price-features li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    padding-bottom: 8px;
}

.featured-price .price-features li {
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    padding-bottom: 8px;
}

.nav-highlight {
    color: #00D1FF !important; /* Un color cian eléctrico para que destaque */
    font-weight: 800;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.nav-highlight:hover {
    border-bottom: 2px solid #00D1FF;
}

/* =========================================
   31. FAQ SECTION (IDONICK)
   ========================================= */
.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item h4:hover {
    color: #00D1FF !important;
}

.faq-item p {
    margin-top: 10px;
    padding-left: 5px;
    border-left: 2px solid #1a1a1a;
}

/* =========================================
   32. PRICING PREVIEW (HOME)
   ========================================= */
.price-card-mini {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.featured-mini {
    border-color: #8A2BE2;
    background: linear-gradient(145deg, #111, rgba(138, 43, 226, 0.1));
    transform: translateY(-10px);
    position: relative;
}

.mini-tag {
    position: absolute; top: -12px; background: #8A2BE2; color: white;
    font-size: 9px; font-weight: 900; padding: 4px 10px; border-radius: 20px;
}

.mini-price { font-size: 32px; font-weight: 900; color: white; }
.price-card-mini p { font-size: 12px; color: #777; line-height: 1.4; }

.btn-text { color: #8A2BE2; font-size: 11px; font-weight: 800; text-transform: uppercase; text-decoration: none; transition: 0.3s; }
.btn-text:hover { color: white; letter-spacing: 1px; }

.btn-primary-small {
    background: #8A2BE2; color: white; padding: 10px 20px; border-radius: 30px;
    font-size: 11px; font-weight: 900; text-decoration: none; transition: 0.3s;
}
.btn-primary-small:hover { box-shadow: 0 0 20px #8A2BE2; transform: scale(1.05); }

/* =========================================
   34. SECCIÓN DE PLANES (DISEÑO LIMPIO & SUTIL)
   ========================================= */

/* --- 1. EL SEPARADOR 360 (Estático y Elegante) --- */
.badge-360-static {
    display: inline-block;
    padding: 15px 40px; /* Tamaño controlado */
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #8A2BE2; /* Borde fijo violeta */
    border-radius: 12px;
    margin-bottom: 50px; /* Separación con las tarjetas */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra suave, sin luz */
}

.title-360-clean {
    font-size: 32px; /* Tamaño legible, no gigante */
    color: white;
    font-weight: 900;
    margin: 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.subtitle-360-clean {
    font-size: 12px;
    color: #888;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.glow-text-static {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: #00D1FF;
    font-weight: 900;
    margin-bottom: 5px;
}


/* --- 2. GRID DE TARJETAS --- */
.pricing-grid-clean {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta Base */
.card-clean {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card-clean h3 { font-size: 16px; color: #888; margin-bottom: 15px; letter-spacing: 1px; }
.clean-price { font-size: 40px; font-weight: 900; color: white; margin-bottom: 20px; }
.clean-price span { font-size: 14px; color: #555; }


/* --- 3. LA TARJETA PRO (NEÓN SUTIL) --- */
/* Esta es la única que tiene animación */
.card-pro-subtle {
    background: linear-gradient(145deg, #111, rgba(138, 43, 226, 0.08));
    border: 1px solid #8A2BE2;
    transform: scale(1.05); /* Un poquito más grande */
    position: relative;
    z-index: 10;
    /* Animación suave */
    animation: neon-breath-soft 4s infinite ease-in-out;
}

/* Animación: Solo cambia la sombra suavemente */
@keyframes neon-breath-soft {
    0% { box-shadow: 0 0 15px rgba(138, 43, 226, 0.2); border-color: #8A2BE2; }
    50% { box-shadow: 0 0 35px rgba(138, 43, 226, 0.5); border-color: #a855f7; } 
    100% { box-shadow: 0 0 15px rgba(138, 43, 226, 0.2); border-color: #8A2BE2; }
}

.pro-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #8A2BE2; color: white; padding: 4px 12px; border-radius: 20px;
    font-size: 10px; font-weight: 900; letter-spacing: 1px;
}

/* Estilos de botones */
.btn-clean-outline {
    margin-top: auto; border: 1px solid #444; color: #888; padding: 12px;
    border-radius: 50px; font-size: 11px; text-decoration: none; transition: 0.3s;
}
.btn-clean-outline:hover { border-color: white; color: white; }

.btn-pro-fill {
    margin-top: auto; background: #8A2BE2; color: white; padding: 12px;
    border-radius: 50px; font-size: 11px; font-weight: 900; text-decoration: none;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4); transition: 0.3s;
}
.btn-pro-fill:hover { background: white; color: black; }

/* Responsive */
@media (max-width: 900px) {
    .card-pro-subtle { transform: scale(1); margin: 20px 0; }
    .badge-360-static { padding: 15px 20px; width: 90%; }
}

/* Estilo para el enlace "Ver más" dentro de las tarjetas */
.view-more-link {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-more-link:hover {
    opacity: 1;
    transform: translateX(5px); /* Pequeño movimiento a la derecha al pasar el mouse */
    text-decoration: underline;
}

/* =========================================
   35. ADMIN DASHBOARD (ESTILO NASA/PRO)
   ========================================= */

/* ESTRUCTURA PRINCIPAL */
.admin-body {
    display: flex;
    background-color: #050505;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* --- SIDEBAR (BARRA LATERAL) --- */
.sidebar {
    width: 260px;
    background: #080808;
    border-right: 1px solid #222;
    padding: 30px 20px;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 50px;
    padding-left: 10px;
    border-left: 3px solid #00D1FF; /* Detalle Cian */
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1; /* Empuja el logout hacia abajo */
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    color: #888;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 500;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-menu a i { width: 25px; text-align: center; margin-right: 10px; }

.badge-count {
    background: #8A2BE2;
    color: white;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
    font-weight: bold;
}

/* Botón Cerrar Sesión (Rojo) */
.logout-link {
    margin-top: auto; 
    color: #FF4444 !important; 
    border: 1px solid rgba(255, 68, 68, 0.1);
    justify-content: center;
}
.logout-link:hover { background: rgba(255, 68, 68, 0.1) !important; }


/* --- CONTENIDO PRINCIPAL --- */
.dashboard-content {
    flex: 1;
    margin-left: 260px; /* Deja espacio al sidebar */
    padding: 40px 50px;
    width: calc(100% - 260px);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 20px;
}
.dash-header h2 { color: white; margin: 0; font-size: 28px; letter-spacing: 1px; }
.date-display { 
    color: #00D1FF; font-weight: 700; border: 1px solid #333; 
    padding: 10px 20px; border-radius: 30px; font-size: 12px; 
}

/* --- GRID DE ESTADÍSTICAS --- */
.stats-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box {
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}
.stat-box:hover { border-color: #444; transform: translateY(-3px); }

.stat-box h3 { color: #888; font-size: 11px; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; font-weight: 700; }
.stat-box .number { font-size: 36px; font-weight: 900; color: white; }
.text-yellow { color: #FFD700 !important; }
.text-green { color: #00FF88 !important; }


/* --- TABLAS Y LISTAS --- */
.admin-section { margin-bottom: 60px; }
.section-heading { 
    color: white; font-size: 14px; margin-bottom: 20px; 
    letter-spacing: 2px; border-left: 3px solid #8A2BE2; padding-left: 15px; 
    text-transform: uppercase;
}

.table-container {
    background: #111;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 0; /* Sin padding interno para que la tabla toque bordes si se quiere */
    overflow-x: auto;
}

table { width: 100%; border-collapse: collapse; }
th { 
    text-align: left; color: #666; font-size: 11px; 
    text-transform: uppercase; padding: 20px; 
    border-bottom: 1px solid #222; background: #151515;
}
td { 
    padding: 20px; color: white; font-size: 13px; 
    border-bottom: 1px solid #222; vertical-align: middle; 
}
tr:last-child td { border-bottom: none; }

.artist-cell { display: flex; align-items: center; gap: 15px; }
.avatar {
    width: 40px; height: 40px; background: #333; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; color: #ccc; font-size: 12px; border: 1px solid #444;
}

.status-pill {
    padding: 5px 10px; border-radius: 20px; font-size: 10px; 
    font-weight: 700; text-transform: uppercase; display: inline-block;
}
.status-pill.pending { background: rgba(255, 255, 255, 0.05); color: #ccc; border: 1px solid #444; }


/* --- BOTONES DE ACCIÓN --- */
.btn-icon {
    width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; 
    margin-right: 5px; transition: 0.2s;
}
.btn-icon.approve { background: rgba(0, 255, 136, 0.1); color: #00FF88; border: 1px solid rgba(0, 255, 136, 0.3); }
.btn-icon.approve:hover { background: #00FF88; color: black; }

.btn-icon.reject { background: rgba(255, 68, 68, 0.1); color: #FF4444; border: 1px solid rgba(255, 68, 68, 0.3); }
.btn-icon.reject:hover { background: #FF4444; color: white; }

.btn-glass-small {
    background: transparent; border: 1px solid #666; color: #888;
    padding: 6px 15px; border-radius: 20px; font-size: 10px; 
    font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-glass-small:hover { border-color: white; color: white; }


/* --- GRID DE ROSTER (TARJETAS DE ARTISTAS) --- */
.roster-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px; 
}

.roster-card {
    background: #111; border: 1px solid #222; border-radius: 12px; padding: 20px;
    display: flex; align-items: center; gap: 20px; transition: 0.3s;
}
.roster-card:hover { border-color: #555; transform: translateY(-3px); background: #161616; }

.roster-card img {
    width: 70px; height: 70px; border-radius: 10px; object-fit: cover;
}

.roster-info h4 { color: white; margin: 0 0 8px 0; font-size: 16px; }
.badges-control { display: flex; gap: 15px; flex-wrap: wrap; }


/* --- INTERRUPTORES (SWITCHES) CALIBRADOS --- */
.switch-label {
    display: flex;
    align-items: center;
    gap: 12px; /* Más espacio entre el botón y el texto "Radio Ready" */
    font-size: 11px;
    color: #888;
    cursor: pointer;
    user-select: none; /* Evita que se seleccione el texto al hacer clic */
}

.switch-label input { 
    display: none; /* Ocultar checkbox real */
}

.toggle-switch {
    width: 36px; /* Un poco más ancho para que la bolita quepa bien */
    height: 20px; /* Altura fija */
    background: #333;
    border-radius: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
    flex-shrink: 0; /* CRUCIAL: Esto impide que el botón se aplaste si hay poco espacio */
    border: 1px solid #444; /* Borde sutil para definir el límite */
}

/* La Bolita (Knob) */
.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #aaa;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* --- ESTADO ACTIVO (CHECKED) --- */

/* 1. Fondo cambia de color */
.switch-label input:checked + .toggle-switch {
    background: #8A2BE2; /* Violeta Idonick */
    border-color: #8A2BE2;
}

/* 2. La bolita se mueve EXACTAMENTE al final sin salirse */
/* Cálculo: 36px (ancho total) - 14px (ancho bola) - 2px (borde izq) - 2px (borde der) = 18px libres */
.switch-label input:checked + .toggle-switch::after {
    transform: translateX(16px); 
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
}

/* Variación Hover para que se sienta interactivo */
.switch-label:hover .toggle-switch::after {
    background: white;
}

/* --- RESPONSIVE MÓVIL PARA ADMIN --- */
@media (max-width: 900px) {
    .sidebar { display: none; } /* Ocultamos sidebar en móvil */
    .dashboard-content { margin-left: 0; padding: 20px; width: 100%; }
    .stats-grid-admin { grid-template-columns: 1fr; }
    .dash-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .table-container { overflow-x: scroll; }
}

/* =========================================
   36. MODAL IDONICK FLOW (LA VENTANA EMERGENTE)
   ========================================= */
.smart-modal-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Clase para activar el modal con JS */
.smart-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.close-smart {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 40px; color: white;
    cursor: pointer; z-index: 2001;
    transition: 0.3s;
}
.close-smart:hover { color: #FFD700; transform: rotate(90deg); }

/* Animación de entrada del celular */
.flow-container-v {
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smart-modal-overlay.active .flow-container-v {
    transform: scale(1);
}

/* =========================================
   37. TEMA GOLD (OVERRIDES PARA INVERSIONISTA)
   ========================================= */

/* Forzar Sidebar Dorada */
.gold-theme .sidebar-logo span { color: #FFD700 !important; }
.gold-theme .sidebar-logo { border-left-color: #FFD700 !important; }

.gold-theme .sidebar-menu a.active { 
    color: #FFD700 !important; 
    background: rgba(255, 215, 0, 0.05) !important;
}

.gold-theme .badge-count {
    background: #FFD700 !important;
    color: black !important;
}

/* Ajuste de Headers */
.gold-theme .dash-header h2 { color: #FFD700 !important; }
.gold-theme .date-display { border-color: #FFD700 !important; color: #FFD700 !important; }

/* Ajuste de Gráficas/Stats */
.gold-theme .stat-box { border-color: #333; }
.gold-theme .stat-box:hover { border-color: #FFD700; }

/* === SELLO LEGAL VERIFIED (CORREGIDO) === */

/* 1. El contenedor padre debe ser RELATIVO para que el hijo flote sobre él */
.legal-badge-container {
    position: relative !important; /* Importante para que no falle */
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    cursor: help;
    vertical-align: middle;
}

/* 2. El Escudo (Siempre visible) */
.legal-shield {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #FFD700 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    border: 1px solid #FFF;
    text-transform: uppercase;
}

/* 3. El Mensaje Emergente (OCULTO por defecto) */
.legal-tooltip {
    /* Ocultar visualmente */
    visibility: hidden;
    opacity: 0;
    
    /* Posicionamiento FLOTANTE */
    position: absolute;
    bottom: 130%; /* 130% hacia arriba para que no tape el escudo */
    left: 50%;
    transform: translateX(-50%); /* Centrar exactamente */
    
    /* Diseño de la cajita */
    width: 260px;
    background-color: #050505; /* Fondo casi negro */
    border: 1px solid #FFD700; /* Borde dorado fino */
    color: #ccc;
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    font-size: 11px;
    line-height: 1.5;
    z-index: 9999; /* Capa superior máxima */
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    pointer-events: none; /* Para que no moleste al click */
    transition: all 0.3s ease;
}

/* Flechita decorativa abajo del tooltip */
.legal-tooltip::after {
    content: "";
    position: absolute;
    top: 100%; /* Justo debajo de la cajita */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #FFD700 transparent transparent transparent; /* Triángulo dorado */
}

/* 4. LA MAGIA: Mostrar solo al pasar el mouse (Hover) */
.legal-badge-container:hover .legal-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 140%; /* Pequeña animación hacia arriba */
}