/* ==========================================================================
   KARAOKE LA LEY - Stylesheet v3.0
   Efectos 3D, Bot Animado, Galería, Carrusel
   ========================================================================== */

:root {
    /* Nueva Paleta Premium: Midnight Glass */
    --premium-dark: #060914;
    --navy-base: #0A0F1E;
    --navy-accent: #111827; /* Azul menos oscuro para alternar sesiones */
    --electric-cyan: #00F2FF;
    --electric-blue: #0A84FF;
    --vibrant-purple: #8B5CF6;
    --soft-magenta: #FF2D55;
    --golden-glow: #FFD700;
    
    /* Variantes de Fondo & Glassmorphism */
    --bg-dark: var(--navy-base);
    --bg-card: rgba(15, 20, 35, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-heavy: rgba(10, 15, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Gradientes Modernos */
    --gradient-premium: linear-gradient(135deg, var(--vibrant-purple), var(--electric-blue));
    --gradient-glow: linear-gradient(135deg, var(--electric-cyan), var(--vibrant-purple));
    --gradient-cyan: linear-gradient(135deg, var(--electric-cyan), var(--electric-blue));
    --gradient-purple: linear-gradient(135deg, var(--vibrant-purple), var(--soft-magenta));
    --gradient-gold: linear-gradient(135deg, #FFD700, #B8860B);
    --gradient-dark: linear-gradient(180deg, var(--premium-dark), var(--premium-black));
    
    /* Sombras y Glows Refinados */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glow-cyan: 0 0 20px rgba(0, 242, 255, 0.3);
    --glow-purple: 0 0 25px rgba(139, 92, 246, 0.4);
    
    /* Transiciones */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    cursor: none;
    animation: fadeInPage 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Overlay for smoother transitions */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-base);
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Section Accent (Azul menos oscuro) */
.section--accent {
    background-color: var(--navy-accent) !important;
    position: relative;
    overflow: hidden;
}

.section--accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 132, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Cursor Personalizado Moderno */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--electric-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, border-color 0.4s ease, background 0.4s ease;
    mix-blend-mode: normal; /* Cambiado de difference para mejor visibilidad en paleta oscura */
}

.cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--electric-cyan);
    border-radius: 50%;
}

.cursor-trail {
    position: fixed;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: blur(5px);
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-trail { display: none; }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-purple);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-link:focus { top: 1rem; }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.section-header {
    margin-bottom: 4rem;
}

.section-header--center {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 100px;
    color: var(--electric-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.glow-text {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

section {
    padding: 6rem 0;
}

/* ==========================================================================
   BOT DE BIENVENIDA ANIMADO
   ========================================================================== */
.chatbot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Quitamos transform del transition */
}

.chatbot__avatar {
    position: relative;
    width: 70px;
    height: 70px;
    cursor: pointer;
}

.chatbot__face {
    width: 100%;
    height: 100%;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: bot-float 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

@keyframes bot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chatbot__eyes {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.eye {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 96%, 100% { transform: scaleY(1); }
    98% { transform: scaleY(0.1); }
}

.chatbot__mouth {
    width: 20px;
    height: 10px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    animation: smile 2s ease-in-out infinite;
}

@keyframes smile {
    0%, 100% { width: 20px; }
    50% { width: 25px; }
}

.chatbot__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--electric-cyan);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    animation: glow-pulse 2s ease-in-out infinite;
    z-index: -1;
}

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

.chatbot__bubble {
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 280px;
    box-shadow: var(--shadow-premium);
    animation: bubble-appear 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bubble-appear {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot__bubble p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.chatbot__bubble p strong {
    color: var(--neon-purple);
}

.chatbot__btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gradient-purple);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.chatbot__btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header--scrolled {
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
}

.logo-3d {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header__logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

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

/* Nav */
.nav__menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--electric-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav__link:hover::after {
    width: 80%;
}

.nav__link:hover {
    color: var(--electric-cyan);
}

.nav__link--cta {
    background: var(--gradient-premium);
    color: #fff !important;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite ease-in-out;
}

.nav__link--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmer-swipe 4s infinite linear;
}

.nav__link--cta:hover {
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

.nav__link--cta::after {
    display: none;
}

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

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
    }
    .nav__menu.active { right: 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Humo */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.smoke {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: smoke-move 20s ease-in-out infinite;
}

.smoke-1 {
    top: 10%;
    left: 10%;
    background: var(--neon-purple);
    animation-delay: 0s;
}

.smoke-2 {
    top: 60%;
    right: 10%;
    background: var(--neon-pink);
    animation-delay: -5s;
}

.smoke-3 {
    bottom: 20%;
    left: 30%;
    background: var(--neon-cyan);
    animation-delay: -10s;
}

.smoke-4 {
    top: 30%;
    right: 30%;
    background: var(--neon-yellow);
    animation-delay: -15s;
}

.smoke-5 {
    bottom: 10%;
    right: 20%;
    background: var(--neon-orange);
    animation-delay: -7s;
}

@keyframes smoke-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.2); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -20px) scale(1.1); }
}

/* Luces Disco */
.disco-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.disco-light {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: disco-pulse 4s ease-in-out infinite;
}

.light-1 { top: 20%; left: 20%; background: var(--neon-purple); animation-delay: 0s; }
.light-2 { top: 40%; right: 20%; background: var(--neon-pink); animation-delay: 1s; }
.light-3 { bottom: 30%; left: 40%; background: var(--neon-cyan); animation-delay: 2s; }
.light-4 { bottom: 20%; right: 30%; background: var(--neon-yellow); animation-delay: 3s; }

@keyframes disco-pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.4; }
}



/* Hero Content */
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__title-accent {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.hero__title-main {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    position: relative;
}

.hero__title-main::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.8;
    z-index: -1;
}

.hero__tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Badges */
.hero__badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge i {
    width: 18px;
    height: 18px;
    color: var(--electric-cyan);
}

.badge--pulse {
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 242, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--electric-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--gradient-premium);
    color: #fff;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.btn--neon {
    position: relative;
    overflow: hidden;
}

.btn--neon::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.5s ease;
}

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

.btn--neon:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--glitch:hover {
    animation: glitch 0.3s ease infinite;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--full {
    width: 100%;
}

/* Animaciones de Atención */
@keyframes shimmer-swipe {
    0% { left: -150%; }
    40%, 100% { left: 150%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.7), 0 0 10px rgba(0, 242, 255, 0.3); }
}

.btn--attention {
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite ease-in-out;
}

.btn--attention::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmer-swipe 4s infinite linear;
    pointer-events: none;
}

/* ==========================================================================
   ABOUT - FLIP CARDS 3D
   ========================================================================== */
.about {
    padding: 8rem 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Flip Card */
.flip-card {
    background: transparent;
    width: 100%;
    height: 270px;
    perspective: 1500px;
}

.flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-radius: 24px;
}

.flip-card:hover .flip-card__inner {
    transform: rotateY(180deg) scale(1.02);
}

.flip-card__front,
.flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

.flip-card__front {
    background: rgba(255, 255, 255, 0.03);
}

.flip-card__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--glow-purple);
}

.flip-card__icon i {
    width: 30px;
    height: 30px;
    color: #fff;
}

.flip-card__front h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.flip-card__front p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.flip-card__back {
    background: rgba(139, 92, 246, 0.1);
    transform: rotateY(180deg);
    border-color: var(--neon-purple);
}

.flip-card__back p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
}

/* Parallax Card */
.about__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.parallax-card {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.parallax-card__layer {
    position: absolute;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.1s ease;
}

.layer-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
}

.layer-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 3px solid var(--electric-cyan);
    box-shadow: var(--glow-cyan);
}

.layer-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-card__layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    background: var(--gradient-premium);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: var(--glow-purple);
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-badge i {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.floating-badge span {
    font-size: 0.875rem;
    font-weight: 700;
}

.about__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.about__text p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about__showcase {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   EQUIPO - HOLOGRAPHIC CARDS
   ========================================================================== */
.equipment {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.05), transparent);
}

.equipment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .equipment__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .equipment__grid {
        grid-template-columns: 1fr;
    }
}

/* Holographic Card */
.holo-card {
    position: relative;
    background: rgba(10, 15, 30, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
}

.holo-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.holo-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.holo-card:hover .holo-card__bg {
    transform: scale(1.1);
    opacity: 0.5;
}

.holo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 15, 30, 0.4), rgba(10, 15, 30, 0.9));
    z-index: 0;
}

.holo-card__border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--vibrant-purple), var(--electric-cyan), var(--electric-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.holo-card:hover .holo-card__border {
    opacity: 1;
}

.holo-card__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.holo-card__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.holo-card__icon i {
    width: 44px;
    height: 44px;
    color: var(--electric-cyan);
    filter: drop-shadow(0 0 8px var(--electric-cyan));
}

.holo-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.holo-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.holo-card__glare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.holo-card:hover .holo-card__glare {
    left: 200%;
}

.holo-card:hover {
    box-shadow: 0 25px 50px rgba(0, 242, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.services {
    padding: 2.5rem 0;
    position: relative;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(15, 20, 35, 0.7);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.1);
    transform: translateY(-5px);
}

.service-card__image {
    width: 100% !important;
    height: 160px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card__content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.1);
    transform: translateY(-5px);
}

/* Estilos secundarios de servicio integrados arriba */

.service-card__badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--gradient-premium);
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.service-card__badge--secondary {
    background: var(--gradient-cyan);
}

.service-card__badge--tertiary {
    background: var(--gradient-purple);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
    text-align: center;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card__features {
    display: none;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-card__features li i {
    width: 20px;
    height: 20px;
    color: var(--electric-cyan);
}

@media (max-width: 768px) {
    .service-card--featured {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   GALERÍA 3D
   ========================================================================== */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.03), transparent);
}

/* Carrusel 3D */
.carousel-3d {
    position: relative;
    height: 400px;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.carousel-3d__container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-3d__item {
    position: absolute;
    width: 320px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.carousel-3d__item img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.carousel-3d__caption {
    height: 30%;
    background: var(--bg-card);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-3d__caption h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.carousel-3d__caption p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.carousel-3d__item.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(100px) scale(1.1);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-3d__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 20;
}

.carousel-3d__nav:hover {
    background: var(--electric-cyan);
    border-color: var(--electric-cyan);
    color: var(--premium-dark);
    box-shadow: var(--glow-cyan);
}

.carousel-3d__nav--prev { left: 1rem; }
.carousel-3d__nav--next { right: 1rem; }

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.masonry-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.masonry-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-item__overlay {
    opacity: 1;
}

.masonry-item__overlay i {
    width: 32px;
    height: 32px;
    color: var(--electric-cyan);
    margin-bottom: 0.5rem;
}

.masonry-item__overlay span {
    font-size: 0.875rem;
    font-weight: 600;
}

.masonry-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.masonry-item--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .masonry-item--large,
    .masonry-item--wide {
        grid-column: span 2;
    }
}

/* ==========================================================================
   AGENDA - CARDS 3D TILT
   ========================================================================== */
.schedule {
    padding: 8rem 0;
}

.schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.schedule-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.2rem;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.schedule-card:hover::before {
    left: 100%;
}

.schedule-card:hover {
    border-color: var(--electric-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-10px) rotateX(5deg);
}

.schedule-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.schedule-card__day {
    width: 55px;
    height: 55px;
    background: var(--gradient-premium);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--glow-purple);
}

.schedule-card__date-info h4 {
    font-weight: 600;
}

.schedule-card__date-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.schedule-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.schedule-card__location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.schedule-card__location i {
    width: 16px;
    height: 16px;
    color: var(--electric-cyan);
}

.schedule-card > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.schedule-card__promos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.promo-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--electric-cyan);
    font-weight: 600;
}

.promo-tag i {
    width: 12px;
    height: 12px;
}

.schedule-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-card__price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--golden-glow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.schedule-card__status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.schedule-card__status--available {
    background: rgba(0, 242, 255, 0.1);
    color: var(--electric-cyan);
    border: 1px solid var(--electric-cyan);
}

.schedule-card__status--limited {
    background: rgba(255, 215, 0, 0.1);
    color: var(--golden-glow);
    border: 1px solid var(--golden-glow);
    animation: pulse-warning 2s ease-in-out infinite;
}

.schedule-card__status--soldout {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid #EF4444;
}

@keyframes pulse-warning {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); }
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05), transparent);
}

.testimonials-carousel {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 30s linear infinite;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 242, 255, 0.1);
    box-shadow: var(--shadow-premium);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-card__stars i {
    width: 20px;
    height: 20px;
    color: var(--golden-glow);
    fill: var(--golden-glow);
}

.testimonial-card > p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
}

.testimonial-card__author strong {
    display: block;
    font-weight: 600;
}

.testimonial-card__author span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact {
    padding: 4rem 0 2rem;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact__info > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact__details {
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact__item i {
    width: 24px;
    height: 24px;
    color: var(--neon-purple);
}

.contact__item span {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.contact__item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact__item a:hover {
    color: var(--neon-purple);
}

.contact__social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 60px;
    height: 60px;
    background: rgba(15, 20, 35, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-cyan);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(10deg);
}

.social-btn--mini {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.social-btn--mini svg {
    width: 20px;
    height: 20px;
}

.social-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    display: block !important;
    filter: drop-shadow(0 0 10px var(--electric-cyan));
}

.social-btn:hover {
    background: var(--gradient-premium);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 242, 255, 0.2),
        0 0 20px rgba(0, 242, 255, 0.1);
}

.social-btn--wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-btn--fb:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-btn--ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border-color: transparent;
}

.social-btn i, .social-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 8px var(--electric-cyan));
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Formulario */
.contact__form-wrapper {
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(176, 38, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(176, 38, 255, 0.2);
    border-radius: 0.75rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
}

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

.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.form-success i {
    width: 24px;
    height: 24px;
    color: var(--neon-green);
}

.form-success p {
    color: var(--neon-green);
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   14. GALLERY - VENUE GRID (COMPACTO)
   ========================================================================== */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.venue-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
    position: relative;
}

.venue-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-cyan);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.venue-card__image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.venue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-card:hover .venue-card__image img {
    transform: scale(1.1);
}

.venue-card__content {
    padding: 1.5rem;
}

.venue-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-cyan);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.venue-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.venue-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.venue-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-card__meta i {
    width: 16px;
    height: 16px;
    color: var(--electric-cyan);
}

/* ==========================================================================
   15. FOOTER V2 (Optimizado)
   ========================================================================== */
.footer {
    padding: 4rem 0 2rem;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand .logo-3d {
    margin-bottom: 1.5rem;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 350px;
    line-height: 1.8;
}

.footer__nav h4, .footer__contact h4 {
    color: var(--golden-glow);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.footer__nav ul {
    list-style: none;
    padding: 0;
}

.footer__nav li {
    margin-bottom: 1.25rem;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__nav a:hover {
    color: white;
    transform: translateX(10px);
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.soluit-link {
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 800;
    position: relative;
    padding-bottom: 2px;
}

.soluit-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--electric-cyan);
}

.soluit-link:hover::after {
    width: 100%;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    
    .footer__brand p {
        margin: 0 auto;
    }
    
    .footer__contact p {
        justify-content: center;
    }
    
    .venue-showcase {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
}

/* Animaciones de Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.section-subtitle {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
}

/* Event Modal */
.event-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 10, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-modal.active {
    display: flex;
    opacity: 1;
}

.event-modal__content {
    background: var(--bg-glass-heavy);
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--electric-cyan) transparent;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 2.5rem 2rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-premium);
}

.event-modal__content::-webkit-scrollbar {
    width: 6px;
}

.event-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.event-modal__content::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 255, 0.3);
    border-radius: 10px;
}

.event-modal__content::-webkit-scrollbar-thumb:hover {
    background: var(--electric-cyan);
}

@media (max-width: 480px) {
    .event-modal {
        padding: 1rem;
    }
    .event-modal__content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }
}

.event-modal.active .event-modal__content {
    transform: scale(1);
}

.event-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.event-modal__close:hover {
    background: var(--soft-magenta);
    transform: rotate(90deg);
}

.modal-event-details h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--electric-cyan);
    line-height: 1.2;
}

.modal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-section:last-of-type {
    border-bottom: none;
}

.modal-section h4 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: var(--vibrant-purple);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--golden-glow);
    border-radius: 0.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.dynamics-list {
    list-style: none;
}

.dynamics-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
}

.dynamics-list li i {
    color: var(--electric-cyan);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .cursor, .cursor-trail { display: none; }
    body { cursor: auto; }
}
.nav__link.active {
    color: var(--electric-cyan);
}

.nav__link.active::after {
    width: 100%;
}

/* Sub-Hero for Inner Pages */
.sub-hero {
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.sub-hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.sub-hero__title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1rem 0;
}

.sub-hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sub-hero {
        padding: 10rem 0 4rem;
        text-align: center;
    }
}

/* ==========================================================================
   MUSIC PLAYER - FLOATING
   ========================================================================== */
.music-player {
    position: fixed;
    top: 100px;
    left: 2rem;
    z-index: 1000;
    pointer-events: auto;
}

.music-player__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(15, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-player:hover .music-player__inner {
    border-color: rgba(0, 242, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15);
}

/* Visualizer */
.music-player__visualizer {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    width: 30px;
}

.music-player__visualizer .bar {
    width: 4px;
    height: 100%;
    background: var(--electric-cyan);
    border-radius: 10px;
    opacity: 0.4;
    transition: height 0.3s ease;
}

.music-player.is-playing .bar {
    animation: bar-dance 1s ease-in-out infinite;
    opacity: 1;
}

.music-player.is-playing .bar:nth-child(1) { animation-delay: 0s; }
.music-player.is-playing .bar:nth-child(2) { animation-delay: 0.2s; }
.music-player.is-playing .bar:nth-child(3) { animation-delay: 0.4s; }
.music-player.is-playing .bar:nth-child(4) { animation-delay: 0.1s; }

@keyframes bar-dance {
    0%, 100% { height: 30%; }
    50% { height: 100%; }
}

/* Info */
.music-player__info {
    display: flex;
    flex-direction: column;
    min-width: 100px;
}

.music-player__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.music-player__status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Button */
.music-player__btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-premium);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.music-player__btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-purple);
}

.music-player__btn i {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .music-player {
        top: auto;
        bottom: 2rem;
        left: 1rem;
    }
}

/* ==========================================================================
   KARAOKE SCREEN - LYRICS
   ========================================================================== */
/* ==========================================================================
   MUSIC PLAYER - INTEGRATED MONITOR
   ========================================================================== */
.music-player__display {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 250px;
    height: 0;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.music-player.is-playing .music-player__display {
    height: 45px;
}

.music-player__screen {
    width: 100%;
    height: 45px;
    background: rgba(10, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 242, 255, 0.3);
    border-radius: 12px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.1), 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.screen-content {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.screen-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    white-space: nowrap;
    animation: text-fade-in 0.5s ease-out;
}

@keyframes text-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* scanlines para el monitor */
.music-player__screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 242, 255, 0.05) 50%, rgba(0, 0, 0, 0.05) 50%);
    background-size: 100% 2px;
    pointer-events: none;
    border-radius: 12px;
}

/* ==========================================================================
   FOOTER ELITE 3D (MINIMALIST)
   ========================================================================== */
.footer {
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-mini {
    background: rgba(15, 20, 35, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 100px;
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.4s ease;
}

.footer-mini:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 255, 0.1);
}

.footer-mini__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-mini__logo {
    width: 32px;
    height: 32px;
}

.footer-mini__name {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-mini__nav {
    display: flex;
    gap: 2rem;
}

.footer-mini__nav a {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-mini__nav a:hover {
    color: var(--electric-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.footer-mini__social {
    display: flex;
    gap: 1rem;
}



.footer-mini__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 992px) {
    .footer-mini {
        flex-direction: column;
        gap: 1.5rem;
        border-radius: 30px;
        padding: 2rem;
    }
    
    .footer-mini__nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.music-player--hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px) !important;
    pointer-events: none !important;
}

/* ==========================================================================
   GALLERY MODAL & CAROUSEL
   ========================================================================== */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal__content {
    width: 90%;
    max-width: 1200px;
    height: 70vh;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), var(--glow-cyan);
}

.gallery-modal__track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal__slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nav Buttons */
.gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3100;
}

.gallery-modal__nav:hover {
    background: var(--electric-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal__nav--prev { left: 2rem; }
.gallery-modal__nav--next { right: 2rem; }

.gallery-modal__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3100;
}

.gallery-modal__close:hover {
    background: var(--soft-magenta);
    transform: rotate(90deg);
}

/* Indicators */
.gallery-modal__indicators {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--electric-cyan);
    box-shadow: var(--glow-cyan);
    width: 30px;
    border-radius: 10px;
}

.gallery-modal__counter {
    position: absolute;
    bottom: 4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .gallery-modal__nav {
        width: 45px;
        height: 45px;
    }
    .gallery-modal__nav--prev { left: 1rem; }
    .gallery-modal__nav--next { right: 1rem; }
    .gallery-modal__content { height: 50vh; }
}
