/* ========================================
   SOMOS TRIBU - Estilos Principales
   Tema: Místico/Psicodélico con hongos y micelio
   ======================================== */

/* ========================================
   Variables CSS
   ======================================== */
:root {
    /* Colores principales - Paleta oscura y llamativa */
    --color-primary: #9d4edd;        /* Púrpura vibrante oscuro */
    --color-secondary: #10b981;      /* Verde esmeralda */
    --color-tertiary: #3b82f6;       /* Azul eléctrico */
    --color-accent: #f59e0b;         /* Ámbar/Dorado */
    --color-pink: #ec4899;           /* Rosa neón */
    
    /* Fondos oscuros */
    --color-dark: #0a0a0f;           /* Negro azulado profundo */
    --color-darker: #050509;         /* Casi negro */
    --color-surface: #1a1a24;        /* Superficie elevada */
    
    /* Textos */
    --color-text: #f5f5f7;           /* Blanco casi puro */
    --color-text-muted: #a1a1aa;     /* Gris claro */
    
    /* Gradientes principales */
    --gradient-hero: linear-gradient(135deg, #6d28d9 0%, #5b21b6 25%, #4338ca 50%, #312e81 75%, #1e1b4b 100%);
    --gradient-primary: linear-gradient(135deg, #9d4edd 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-mystical: linear-gradient(135deg, #9d4edd 0%, #ec4899 50%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #050509 100%);
    --gradient-card: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    
    /* Tipografía */
    --font-display: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4.5rem;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras con colores */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-glow-purple: 0 0 30px rgba(157, 78, 221, 0.6);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.6);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.6);
}

/* ========================================
   Reset y estilos base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ========================================
   Tipografía
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

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

/* ========================================
   Utilidades
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.75rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: 1px;
    animation: gradient-shift 6s ease infinite;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: var(--spacing-md) auto;
    border-radius: 2px;
    box-shadow: var(--shadow-glow-purple);
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Botones
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1.125rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.95rem;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.4);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::after {
    opacity: 0.3;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(157, 78, 221, 0.6), 0 0 60px rgba(16, 185, 129, 0.3);
}

.btn-primary span {
    position: relative;
    z-index: 1;
    color: white;
}

.btn-primary i {
    position: relative;
    z-index: 1;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(157, 78, 221, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary:hover {
    background: var(--gradient-card);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(157, 78, 221, 0.4);
}

/* Audio system removed */

/* ========================================
   Header y Navegación
   ======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-size: 1.8rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0;
    margin-top: 0.15rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    background: var(--gradient-card);
    color: white;
    box-shadow: var(--shadow-glow-purple);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-secondary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ========================================
   Language Switcher
   ======================================== */
.language-switcher {
    margin-left: var(--spacing-sm);
}

.lang-btn {
    background: var(--gradient-primary);
    border: 2px solid transparent;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.lang-btn:hover {
    background: var(--gradient-secondary);
    border-color: var(--color-secondary);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.lang-btn i {
    font-size: 1rem;
}

.lang-btn #currentLang {
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
    background: radial-gradient(circle at 30% 20%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(124, 77, 255, 0.2) 0%, rgba(26, 26, 46, 1) 70%);
    z-index: 1;
}

.mycelium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Partículas grandes brillantes - Capa 1 */
        radial-gradient(circle at 15% 25%, rgba(157, 78, 221, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 45% 70%, rgba(236, 72, 153, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 25% 80%, rgba(245, 158, 11, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 90% 75%, rgba(157, 78, 221, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 10% 60%, rgba(16, 185, 129, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(236, 72, 153, 0.8) 0%, transparent 2px),
        
        /* Partículas medianas - Capa 2 */
        radial-gradient(circle at 30% 40%, rgba(157, 78, 221, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 55% 85%, rgba(16, 185, 129, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 75% 30%, rgba(236, 72, 153, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 92% 45%, rgba(245, 158, 11, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 40% 95%, rgba(157, 78, 221, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 65% 55%, rgba(16, 185, 129, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 8% 35%, rgba(236, 72, 153, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 50% 5%, rgba(59, 130, 246, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 35% 65%, rgba(245, 158, 11, 0.6) 0%, transparent 1.5px),
        
        /* Partículas pequeñas - Capa 3 */
        radial-gradient(circle at 12% 45%, rgba(157, 78, 221, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 88% 60%, rgba(16, 185, 129, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 42% 30%, rgba(236, 72, 153, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 68% 90%, rgba(59, 130, 246, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 22% 72%, rgba(245, 158, 11, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 78% 12%, rgba(157, 78, 221, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 52% 48%, rgba(16, 185, 129, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 95% 25%, rgba(236, 72, 153, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 5% 88%, rgba(59, 130, 246, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 62% 68%, rgba(245, 158, 11, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 38% 8%, rgba(157, 78, 221, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 82% 82%, rgba(16, 185, 129, 0.5) 0%, transparent 1px),
        
        /* Partículas muy pequeñas - Capa 4 */
        radial-gradient(circle at 18% 92%, rgba(157, 78, 221, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 72% 38%, rgba(16, 185, 129, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 48% 62%, rgba(236, 72, 153, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 93% 8%, rgba(59, 130, 246, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 28% 28%, rgba(245, 158, 11, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 58% 78%, rgba(157, 78, 221, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 7% 52%, rgba(16, 185, 129, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 97% 95%, rgba(236, 72, 153, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 33% 18%, rgba(59, 130, 246, 0.4) 0%, transparent 0.8px),
        radial-gradient(circle at 77% 68%, rgba(245, 158, 11, 0.4) 0%, transparent 0.8px),
        
        /* Neblinas de fondo - Capa 5 */
        radial-gradient(ellipse at 20% 50%, rgba(157, 78, 221, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 35%),
        radial-gradient(ellipse at 70% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 30%);
    
    animation: floatingDrift 8s ease-in-out infinite;
}

@keyframes floatingDrift {
    0% { 
        opacity: 0.85;
        transform: translate(0, 0) scale(1);
    }
    15% {
        opacity: 0.95;
        transform: translate(20px, -15px) scale(1.05);
    }
    30% {
        opacity: 1;
        transform: translate(30px, -10px) scale(1.08);
    }
    45% {
        opacity: 0.9;
        transform: translate(20px, 10px) scale(1.04);
    }
    60% {
        opacity: 0.95;
        transform: translate(-10px, 20px) scale(1.06);
    }
    75% {
        opacity: 1;
        transform: translate(-25px, 15px) scale(1.08);
    }
    90% {
        opacity: 0.9;
        transform: translate(-15px, -5px) scale(1.03);
    }
    100% { 
        opacity: 0.85;
        transform: translate(0, 0) scale(1);
    }
}

/* Segunda capa de partículas con movimiento diferente */
.particles-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Partículas brillantes grandes - Capa adicional */
        radial-gradient(circle at 25% 15%, rgba(236, 72, 153, 0.9) 0%, transparent 2.5px),
        radial-gradient(circle at 75% 65%, rgba(59, 130, 246, 0.9) 0%, transparent 2.5px),
        radial-gradient(circle at 50% 85%, rgba(245, 158, 11, 0.9) 0%, transparent 2.5px),
        radial-gradient(circle at 10% 40%, rgba(157, 78, 221, 0.9) 0%, transparent 2.5px),
        radial-gradient(circle at 88% 25%, rgba(16, 185, 129, 0.9) 0%, transparent 2.5px),
        
        /* Partículas medianas flotantes */
        radial-gradient(circle at 35% 55%, rgba(236, 72, 153, 0.7) 0%, transparent 1.8px),
        radial-gradient(circle at 65% 10%, rgba(59, 130, 246, 0.7) 0%, transparent 1.8px),
        radial-gradient(circle at 15% 75%, rgba(245, 158, 11, 0.7) 0%, transparent 1.8px),
        radial-gradient(circle at 82% 88%, rgba(157, 78, 221, 0.7) 0%, transparent 1.8px),
        radial-gradient(circle at 45% 35%, rgba(16, 185, 129, 0.7) 0%, transparent 1.8px),
        radial-gradient(circle at 92% 52%, rgba(236, 72, 153, 0.7) 0%, transparent 1.8px),
        radial-gradient(circle at 28% 92%, rgba(59, 130, 246, 0.7) 0%, transparent 1.8px),
        
        /* Partículas pequeñas dispersas */
        radial-gradient(circle at 58% 42%, rgba(245, 158, 11, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 18% 58%, rgba(157, 78, 221, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 72% 78%, rgba(16, 185, 129, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 38% 22%, rgba(236, 72, 153, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 85% 38%, rgba(59, 130, 246, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 5% 12%, rgba(245, 158, 11, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 62% 95%, rgba(157, 78, 221, 0.5) 0%, transparent 1.2px),
        radial-gradient(circle at 48% 68%, rgba(16, 185, 129, 0.5) 0%, transparent 1.2px),
        
        /* Partículas micro - efecto polvo estelar */
        radial-gradient(circle at 22% 48%, rgba(236, 72, 153, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 78% 18%, rgba(59, 130, 246, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 42% 82%, rgba(245, 158, 11, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 88% 62%, rgba(157, 78, 221, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 12% 28%, rgba(16, 185, 129, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 68% 52%, rgba(236, 72, 153, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 32% 8%, rgba(59, 130, 246, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 95% 85%, rgba(245, 158, 11, 0.4) 0%, transparent 0.9px),
        radial-gradient(circle at 52% 32%, rgba(157, 78, 221, 0.4) 0%, transparent 0.9px);
    
    animation: floatingWave 10s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes floatingWave {
    0% {
        opacity: 0.8;
        transform: translate(0, 0) rotate(0deg);
    }
    12.5% {
        opacity: 0.9;
        transform: translate(-15px, 20px) rotate(-3deg);
    }
    25% {
        opacity: 0.95;
        transform: translate(-25px, 30px) rotate(-4deg);
    }
    37.5% {
        opacity: 1;
        transform: translate(-15px, 20px) rotate(-2deg);
    }
    50% {
        opacity: 0.95;
        transform: translate(10px, -10px) rotate(2deg);
    }
    62.5% {
        opacity: 0.9;
        transform: translate(25px, -25px) rotate(4deg);
    }
    75% {
        opacity: 1;
        transform: translate(30px, -30px) rotate(5deg);
    }
    87.5% {
        opacity: 0.9;
        transform: translate(15px, -15px) rotate(2deg);
    }
    100% {
        opacity: 0.8;
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Tercera capa - flotación ultra suave y lenta */
.particles-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Partículas grandes con glow intenso */
        radial-gradient(circle at 40% 30%, rgba(157, 78, 221, 1) 0%, rgba(157, 78, 221, 0.3) 1px, transparent 3px),
        radial-gradient(circle at 60% 70%, rgba(16, 185, 129, 1) 0%, rgba(16, 185, 129, 0.3) 1px, transparent 3px),
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 1) 0%, rgba(236, 72, 153, 0.3) 1px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 1) 0%, rgba(59, 130, 246, 0.3) 1px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 1) 0%, rgba(245, 158, 11, 0.3) 1px, transparent 3px),
        
        /* Partículas medianas dispersas */
        radial-gradient(circle at 30% 60%, rgba(157, 78, 221, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 70% 40%, rgba(16, 185, 129, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 15% 20%, rgba(236, 72, 153, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 45% 10%, rgba(245, 158, 11, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 55% 90%, rgba(157, 78, 221, 0.8) 0%, transparent 1.5px),
        
        /* Partículas pequeñas con brillo */
        radial-gradient(circle at 25% 45%, rgba(16, 185, 129, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 75% 55%, rgba(236, 72, 153, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 10% 65%, rgba(59, 130, 246, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 90% 35%, rgba(245, 158, 11, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 35% 75%, rgba(157, 78, 221, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 65% 25%, rgba(16, 185, 129, 0.6) 0%, transparent 1px);
    
    animation: gentleFloat 12s ease-in-out infinite alternate;
    opacity: 0.7;
    filter: blur(0.3px);
}

@keyframes gentleFloat {
    0% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1);
    }
    20% {
        opacity: 0.8;
        transform: translate(-18px, 25px) scale(1.04);
    }
    40% {
        opacity: 0.9;
        transform: translate(-28px, 40px) scale(1.07);
    }
    60% {
        opacity: 0.85;
        transform: translate(-20px, 32px) scale(1.05);
    }
    80% {
        opacity: 0.9;
        transform: translate(-10px, 15px) scale(1.02);
    }
    100% {
        opacity: 0.75;
        transform: translate(0, 0) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 7rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 8s ease infinite;
    font-weight: 900;
    letter-spacing: 8px;
    opacity: 1 !important;
    filter: drop-shadow(0 0 50px rgba(109, 40, 217, 0.9)) drop-shadow(0 0 80px rgba(67, 56, 202, 0.6));
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

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

.hero-text-block {
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    padding: 0;
    background: transparent;
    border: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: 5px;
    opacity: 1 !important;
    text-transform: uppercase;
    font-family: var(--font-display);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
    position: relative;
}

.hero-motto {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    opacity: 1 !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1 !important;
    margin-bottom: 5rem;
}

.hero-cta .btn {
    opacity: 1 !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 1 !important;
    cursor: pointer;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.scroll-indicator:hover {
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 1));
}

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

/* ========================================
   Manifiesto Section
   ======================================== */
.manifiesto-section {
    background: var(--gradient-dark);
    position: relative;
}

.manifiesto-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.manifesto-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
}

.manifesto-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(0, 230, 118, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.manifesto-item:hover::before {
    opacity: 1;
}

.manifesto-item:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-purple);
}

/* Header con icono y título horizontal */
.manifesto-item-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.manifesto-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-size: 1.8rem;
    color: white;
    border: 1px solid rgba(157, 78, 221, 0.5);
    transition: all 0.3s;
    box-shadow: var(--shadow-glow-purple);
}

.manifesto-item:hover .manifesto-icon {
    transform: scale(1.05) rotate(5deg);
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-glow-green);
}

.manifesto-item-header h3 {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.manifesto-item > p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

/* ========================================
   Música Section
   ======================================== */
.music-section {
    background: var(--color-dark);
}

.music-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.platform-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(10px);
}

.platform-card:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-purple);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5));
}

.platform-name {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.social-networks {
    margin-top: var(--spacing-lg);
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: 30px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.2), inset 0 0 60px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
    animation: glow-border 3s ease-in-out infinite;
}

.social-networks::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
    z-index: 0;
}

.social-networks > * {
    position: relative;
    z-index: 1;
}

@keyframes glow-border {
    0%, 100% {
        border-color: rgba(157, 78, 221, 0.3);
        box-shadow: 0 10px 40px rgba(157, 78, 221, 0.2), inset 0 0 60px rgba(16, 185, 129, 0.1);
    }
    50% {
        border-color: rgba(16, 185, 129, 0.5);
        box-shadow: 0 15px 50px rgba(16, 185, 129, 0.4), inset 0 0 80px rgba(157, 78, 221, 0.2);
    }
}

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

.subsection-title {
    font-size: 2.5rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: gradient-shift 6s ease infinite;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.social-link {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 20px;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(157, 78, 221, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mystical);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-link span {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.social-link:hover {
    transform: translateY(-12px) scale(1.15);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.6), 0 0 60px rgba(16, 185, 129, 0.4);
}

.social-link:hover i {
    transform: scale(1.2) rotate(360deg);
}

.social-link:hover span {
    opacity: 1;
    transform: translateY(0);
}

.social-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.social-follow-count {
    margin-top: var(--spacing-lg);
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

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

.media-kit-download {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 2px dashed rgba(255, 215, 64, 0.3);
}

.media-kit-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: space-between;
}

.media-kit-icon {
    font-size: 3rem;
    color: var(--color-accent);
}

.media-kit-text {
    flex: 1;
    min-width: 250px;
}

.media-kit-text h3 {
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.media-kit-text p {
    color: var(--color-text-muted);
    margin: 0;
}

/* ========================================
   EPK Section
   ======================================== */
.epk-section {
    background: linear-gradient(135deg, rgba(10, 10, 20, 1) 0%, rgba(20, 10, 30, 1) 50%, rgba(10, 10, 20, 1) 100%);
    position: relative;
    overflow: hidden;
}

.epk-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(157, 78, 221, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.epk-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(157, 78, 221, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(16, 185, 129, 0.1) 50%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, -60px 60px;
    }
}

.epk-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.epk-unified {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 3px solid transparent;
    border-radius: 30px;
    padding: var(--spacing-xl) var(--spacing-xl);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(157, 78, 221, 0.3),
        0 0 80px rgba(16, 185, 129, 0.2),
        inset 0 0 60px rgba(157, 78, 221, 0.05);
}

.epk-wrapper {
    overflow: auto;
    margin-bottom: var(--spacing-md);
}

.epk-left-section {
    float: left;
    margin: 0 var(--spacing-xl) var(--spacing-lg) 0;
    position: relative;
    z-index: 10;
}

.epk-unified::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.8) 0%, 
        rgba(16, 185, 129, 0.8) 50%, 
        rgba(157, 78, 221, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-rotate 4s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradient-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.epk-unified::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.epk-logo-container {
    display: none;
}

.epk-photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid rgba(157, 78, 221, 0.4);
    box-shadow: 
        0 10px 40px rgba(157, 78, 221, 0.4),
        0 0 60px rgba(16, 185, 129, 0.3);
    transition: all 0.4s ease;
    width: 400px;
    height: auto;
}

.epk-photo-container:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 15px 50px rgba(157, 78, 221, 0.5),
        0 0 80px rgba(16, 185, 129, 0.5);
}

.epk-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95) contrast(1.1) saturate(1.1);
    transition: all 0.4s ease;
}

.epk-photo:hover {
    filter: brightness(1) contrast(1.15) saturate(1.2);
}

.epk-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.8))
            drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
    animation: float-enhanced 4s ease-in-out infinite;
}

@keyframes float-enhanced {
    0%, 100% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.8))
                drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
    }
    25% {
        transform: translateY(-15px) scale(1.02);
        filter: drop-shadow(0 0 50px rgba(157, 78, 221, 1))
                drop-shadow(0 0 30px rgba(16, 185, 129, 0.8));
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        filter: drop-shadow(0 0 60px rgba(157, 78, 221, 1))
                drop-shadow(0 0 40px rgba(16, 185, 129, 1));
    }
    75% {
        transform: translateY(-15px) scale(1.02);
        filter: drop-shadow(0 0 50px rgba(157, 78, 221, 1))
                drop-shadow(0 0 30px rgba(16, 185, 129, 0.8));
    }
}

.bio-text {
    position: relative;
    z-index: 10;
    color: var(--color-text);
    line-height: 1.9;
    text-align: justify;
    overflow: auto;
}

.bio-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.bio-text p:hover {
    color: rgba(255, 255, 255, 1);
}

.bio-text p.bio-intro {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    opacity: 1 !important;
    visibility: visible !important;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-text strong {
    color: var(--color-secondary);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
}

.bio-text p:hover strong {
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
}

.bio-text::after {
    content: '';
    display: table;
    clear: both;
}

.bio-text-bottom {
    position: relative;
    z-index: 10;
    color: var(--color-text);
    line-height: 1.9;
    text-align: left;
    clear: both;
    padding-top: var(--spacing-sm);
}

.bio-text-bottom p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.bio-text-bottom p:last-child {
    margin-bottom: 0;
}

.bio-text-bottom p:hover {
    color: rgba(255, 255, 255, 1);
}

.bio-text-bottom strong {
    color: var(--color-secondary);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
}

.bio-text-bottom p:hover strong {
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
}

/* ========================================
   Audio Player Section
   ======================================== */
.audio-player-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.audio-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.audio-quote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.audio-player-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.audio-cover {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.4);
}

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

.audio-cover:hover .cover-image {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-cover:hover .play-overlay {
    opacity: 1;
}

.play-overlay.playing {
    opacity: 0 !important;
}

.play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.5);
}

.play-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.7);
}

.audio-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-lg);
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.track-info {
    text-align: left;
}

.track-title {
    font-size: 2rem;
    color: white;
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 700;
}

.track-artist {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin: 0;
}

.waveform-container {
    position: relative;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

#waveformCanvas {
    width: 100%;
    height: 100%;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.3), rgba(16, 185, 129, 0.3));
    transition: width 0.1s linear;
    pointer-events: none;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
}

.control-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.5);
}

.control-btn-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 0;
    font-size: 1rem;
}

.time-display {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: white;
    font-size: 1rem;
    font-family: monospace;
    flex-shrink: 0;
    white-space: nowrap;
}

.time-separator {
    color: var(--color-text-muted);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-left: auto;
    flex-shrink: 0;
}

.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Animated waves background */
.audio-waves {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.3;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    border-radius: 40%;
}

.wave-1 {
    animation: wave-animation 15s ease-in-out infinite;
    top: -50%;
    left: -50%;
}

.wave-2 {
    animation: wave-animation 20s ease-in-out infinite reverse;
    bottom: -50%;
    right: -50%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}

.wave-3 {
    animation: wave-animation 25s ease-in-out infinite;
    top: -30%;
    right: -30%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

@keyframes wave-animation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10%, 10%) rotate(90deg);
    }
    50% {
        transform: translate(0, 20%) rotate(180deg);
    }
    75% {
        transform: translate(-10%, 10%) rotate(270deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.05);
    }
    20% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.08);
    }
    40% {
        transform: scale(1);
    }
}

/* ========================================
   Video Section
   ======================================== */
.video-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #050509 50%, var(--color-dark) 100%);
    position: relative;
    overflow: hidden;
}

.video-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.video-title {
    font-size: 3rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 40px rgba(157, 78, 221, 0.3);
}

.video-quote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.video-description {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg) auto;
    text-align: center;
}

.video-description p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.video-description strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.4), 
                0 0 100px rgba(16, 185, 129, 0.2),
                inset 0 0 0 2px rgba(157, 78, 221, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(157, 78, 221, 0.6), 
                0 0 120px rgba(16, 185, 129, 0.4),
                inset 0 0 0 3px rgba(16, 185, 129, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-caption {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
}

.video-caption p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    margin: 0;
}

.video-caption strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Animated particles background */
.video-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.4;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, transparent 70%);
    animation: float-particle 20s ease-in-out infinite;
}

.particle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    animation-delay: 4s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 8s;
}

.particle-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    animation-delay: 12s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 40px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.5;
    }
}

/* ========================================
   Servicios Section
   ======================================== */
.services-section {
    background: var(--color-dark);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 77, 255, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-purple);
    background: rgba(124, 77, 255, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
    text-align: left;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

/* ========================================
   Galería Section
   ======================================== */
.gallery-section {
    background: var(--gradient-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    transition: var(--transition-normal);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::before {
    content: '🍄';
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.gallery-item:hover {
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: var(--shadow-glow-green);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-sm);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 4;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-autoplay-indicator {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 230, 118, 0.9);
    color: var(--color-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

.lightbox-autoplay-indicator i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: var(--spacing-sm);
    font-size: 1.125rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   Eventos Section
   ======================================== */
.events-section {
    background: var(--color-dark);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-normal);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
}

.event-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.event-month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.event-details h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.event-venue,
.event-time {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 0.25rem;
}

.event-venue i,
.event-time i {
    color: var(--color-secondary);
}

/* ========================================
   Contacto Section
   ======================================== */
.contact-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.booking-highlight {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: var(--spacing-md) !important;
    position: relative;
    z-index: 1;
}

.booking-badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.badge {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-secondary);
    color: var(--color-dark);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Tipos de Booking */
.booking-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.booking-type-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 25px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.booking-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mystical);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.booking-type-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--color-secondary);
    box-shadow: 0 25px 50px rgba(157, 78, 221, 0.4), 0 0 60px rgba(16, 185, 129, 0.3);
}

.booking-type-card:hover::before {
    opacity: 0.1;
}

.booking-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.booking-type-card:hover .booking-type-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
    background: var(--gradient-secondary);
}

.booking-type-card h3 {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.booking-type-card > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.booking-type-card * {
    opacity: 1 !important;
}

/* Contacto Rápido */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quick-contact-card {
    background: rgba(26, 26, 36, 0.95);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid rgba(157, 78, 221, 0.6);
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(157, 78, 221, 0.2), transparent);
    animation: rotate-border 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-contact-card:hover::before {
    opacity: 1;
}

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

.quick-contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.quick-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-dark);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.quick-contact-card:hover .quick-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

.quick-contact-card h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
}

.quick-contact-card * {
    opacity: 1 !important;
}

.whatsapp-card {
    opacity: 1 !important;
    background: rgba(26, 26, 36, 1) !important;
    border: 2px solid rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-card .quick-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    opacity: 1 !important;
}

.whatsapp-card .contact-link-large {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    opacity: 1 !important;
}

.whatsapp-card .contact-link-large:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.contact-link-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--spacing-sm) 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.3);
    position: relative;
    z-index: 1;
}

.contact-link-large:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(157, 78, 221, 0.5);
    color: white;
}

.response-time {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: var(--spacing-xl);
    border-radius: 30px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(16, 185, 129, 0.1);
    animation: glow-border 3s ease-in-out infinite;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h3 {
    font-size: 2rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}



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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 15, 0.6);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), 0 8px 20px rgba(16, 185, 129, 0.3);
    background: rgba(10, 10, 15, 0.8);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-large {
    width: 100%;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    margin-top: var(--spacing-sm);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

.form-message {
    padding: var(--spacing-sm);
    border-radius: 8px;
    margin-top: var(--spacing-sm);
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.form-message.error {
    display: block;
    background: rgba(255, 82, 82, 0.1);
    color: #ff5252;
    border: 1px solid #ff5252;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    position: relative;
    background: var(--color-darker);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
    overflow: hidden;
}

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

.footer-logo h3 {
    font-size: 2rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-quote {
    margin-top: var(--spacing-xs);
    font-style: italic;
    color: var(--color-secondary);
}

.footer-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(124, 77, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 230, 118, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .navbar {
        padding: 1rem var(--spacing-md);
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: var(--spacing-sm);
        text-align: center;
    }
    
    .lang-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-text-block {
        padding: 0;
        margin: 0 auto var(--spacing-lg);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-motto {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-bottom: 5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .manifiesto-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .manifesto-item {
        padding: 1.5rem;
    }
    
    .manifesto-item-header h3 {
        font-size: 1.3rem;
    }
    
    .manifesto-item > p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .booking-types {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .booking-type-card {
        min-height: auto;
        padding: var(--spacing-md);
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .quick-contact-card {
        padding: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: var(--spacing-md);
    }
    
    .form-header h3 {
        font-size: 1.6rem;
    }
    
    .booking-highlight {
        font-size: 1.1rem !important;
    }
    
    .booking-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .media-kit-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: var(--spacing-xs);
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .social-networks {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .subsection-title {
        font-size: 1.8rem;
    }
    
    .epk-unified {
        padding: var(--spacing-lg);
    }
    
    .epk-wrapper {
        margin-bottom: var(--spacing-sm);
    }
    
    .epk-left-section {
        float: left;
        margin: 0 var(--spacing-lg) var(--spacing-md) 0;
    }
    
    .epk-logo-container {
        display: none;
    }
    
    .epk-photo-container {
        width: 280px;
    }
    
    .bio-text {
        text-align: left;
    }
    
    .bio-text p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-sm);
    }
    
    .bio-text p.bio-intro {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .bio-text-bottom {
        padding-top: var(--spacing-xs);
    }
    
    .bio-text-bottom p {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .audio-quote {
        font-size: 1.2rem;
    }
    
    .audio-player-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .audio-cover {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .track-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .track-artist {
        font-size: 1rem;
        text-align: center;
    }
    
    .player-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .volume-control {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: var(--spacing-sm);
    }
    
    .social-cta-text {
        font-size: 1rem;
    }
    
    .social-links {
        gap: var(--spacing-sm);
    }
    
    .social-link {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .social-link span {
        font-size: 0.65rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-quote {
        font-size: 1.2rem;
        padding: 0 var(--spacing-sm);
    }
    
    .video-description {
        padding: 0 var(--spacing-sm);
    }
    
    .video-description p {
        font-size: 1rem;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .video-caption {
        padding: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .video-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .manifiesto-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .manifesto-item {
        padding: 1.75rem;
    }
    
    .booking-types {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-bottom: var(--spacing-md);
        line-height: 1.2;
    }
    
    .hero-text-block {
        padding: 0;
        margin: 0 auto var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-motto {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        gap: var(--spacing-sm);
        margin-bottom: 4rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .music-platforms {
        grid-template-columns: 1fr;
    }
    
    .epk-unified {
        padding: var(--spacing-md);
    }
    
    .epk-wrapper {
        margin-bottom: var(--spacing-xs);
    }
    
    .epk-left-section {
        float: none;
        margin: 0 auto var(--spacing-sm) auto;
        text-align: center;
    }
    
    .epk-logo {
        max-width: 200px;
    }
    
    .epk-logo-container {
        display: none;
    }
    
    .epk-photo-container {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .bio-text {
        text-align: left;
    }
    
    .bio-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-sm);
    }
    
    .bio-text p.bio-intro {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .bio-text-bottom {
        padding-top: 0;
    }
    
    .bio-text-bottom p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-sm);
    }
    
    .audio-quote {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .audio-player-container {
        padding: var(--spacing-md);
    }
    
    .audio-cover {
        max-width: 250px;
    }
    
    .track-title {
        font-size: 1.3rem;
    }
    
    .track-artist {
        font-size: 0.95rem;
    }
    
    .waveform-container {
        height: 60px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .control-btn-small {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .volume-slider {
        width: 80px;
    }
    
    .manifesto-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .manifesto-item-header {
        gap: var(--spacing-sm);
    }
    
    .manifesto-item-header h3 {
        font-size: 1.2rem;
    }
    
    .manifesto-item > p {
        font-size: 0.9rem;
    }
    
    .video-title {
        font-size: 1.5rem;
        padding: 0 var(--spacing-sm);
    }
    
    .video-quote {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .video-description p {
        font-size: 0.95rem;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .video-caption {
        padding: var(--spacing-sm);
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
    
    .particle {
        display: none;
    }
}

/* ========================================
   Botón Flotante de Audio Ambiente
   ======================================== */
.ambient-audio-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 2px solid rgba(157, 78, 221, 0.5);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4), 0 0 40px rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(10px);
}

.ambient-audio-toggle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.6), 0 0 60px rgba(157, 78, 221, 0.4);
    border-color: var(--color-secondary);
}

.ambient-audio-toggle:active {
    transform: translateY(-3px) scale(1.05);
}

/* Estado reproduciendo - animación de pulso */
.ambient-audio-toggle.playing {
    animation: ambient-pulse 2s ease-in-out infinite;
}

@keyframes ambient-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4), 0 0 40px rgba(157, 78, 221, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6), 0 0 60px rgba(16, 185, 129, 0.4);
    }
}

/* Estado muteado */
.ambient-audio-toggle.muted {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-color: rgba(161, 161, 170, 0.5);
    opacity: 0.7;
}

.ambient-audio-toggle.muted:hover {
    opacity: 1;
    background: var(--gradient-primary);
}

/* Icono */
.ambient-audio-toggle i {
    transition: transform 0.3s ease;
}

.ambient-audio-toggle:hover i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .ambient-audio-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .ambient-audio-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }
}
