:root {
    --yellow: #e2f75d;
    --pink: #f03e7a;
    --pink-light: #ff6fa3;
    --dark: #060a10;
    --dark2: #0d1520;
    --dark3: #111c2a;
    --sky: #1a3a5c;
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
    background-color: var(--dark);
    color: #d0dde8;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* 🎬 PANTALLA DE CARGA (PRELOADER) */
#preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--dark); z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-content { text-align: center; }

.loader-logo {
    width: 220px;
    height: auto;
    margin-bottom: 15px;
    animation: pulseRed 1.2s infinite alternate var(--ease-out);
    filter: drop-shadow(0 0 20px rgba(240,62,122,0.5));
}

.loader-subtitle {
    font-size: 10px; font-weight: 900; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 10px;
}

/* 🖱️ CURSOR PERSONALIZADO (Solo PC) */
@media (pointer: fine) {
    body, a, button, input, textarea, select, .tilt-card, span[onclick] { cursor: none !important; }
    iframe { cursor: auto !important; } 
    
    .custom-cursor {
        position: fixed; top: 0; left: 0; width: 24px; height: 24px;
        border: 1.5px solid var(--pink); border-radius: 50%;
        pointer-events: none; z-index: 100000;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
        background-color: rgba(240, 62, 122, 0.1); backdrop-filter: blur(2px);
    }
    .custom-cursor-dot {
        position: fixed; top: 0; left: 0; width: 4px; height: 4px;
        background-color: white; border-radius: 50%;
        pointer-events: none; z-index: 100001;
        transform: translate(-50%, -50%);
    }
    .custom-cursor.hovering {
        width: 45px; height: 45px;
        background-color: rgba(226, 247, 93, 0.15); border-color: var(--yellow);
    }
}
.custom-cursor, .custom-cursor-dot {
    z-index: 9999999 !important; 
}

/* 🎵 WIDGET SPOTIFY FLOTANTE */
.spotify-widget {
    position: fixed; bottom: 24px; left: 24px; z-index: 90;
    display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.spotify-iframe-container {
    width: 300px; height: 0; overflow: hidden; opacity: 0;
    transition: all 0.4s var(--ease-out); transform-origin: bottom left; transform: scale(0.8);
    border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.spotify-iframe-container.active { height: 152px; opacity: 1; transform: scale(1); }
.spotify-toggle {
    background: rgba(13,21,32,0.8); border: 1px solid rgba(29, 185, 84, 0.4);
    color: white; font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.15em; padding: 10px 20px; border-radius: 50px; cursor: none;
    backdrop-filter: blur(10px); display: flex; align-items: center; gap: 8px;
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.spotify-toggle:hover { background: #1DB954; color: var(--dark); border-color: #1DB954; transform: translateY(-3px); }

@media (max-width: 768px) {
    .spotify-widget { bottom: 20px; left: 20px; }
    .spotify-iframe-container { width: calc(100vw - 40px); } 
}

/* CONTENEDOR DE PARTÍCULAS */
#tsparticles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* 🎬 ANIMACIONES GLOBALES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeScale { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes pulseRed { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes slowParallax { from { transform: scale(1); } to { transform: scale(1.05) translateY(-2%); } }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(180deg, rgba(6,10,16,0.9) 0%, transparent 100%); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.04);
    animation: fadeDown 0.6s 1.2s var(--ease-out) backwards;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.15em; color: var(--yellow); text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
    background: var(--pink); color: white; font-size: 11px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 10px 20px; border-radius: 8px; text-decoration: none; transition: all 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--pink-light); transform: translateY(-1px); scale: 1.03; }

/* 🍔 MENÚ HAMBURGUESA (oculto en desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 110;
    position: relative;
}
.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-cta-mobile { display: none; }
body.no-scroll { overflow: hidden; }

/* HERO BÁSICO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 120px; position: relative; overflow: hidden; }
.hero-bg-sky { position: absolute; inset: 0; background-image: url('../recursos/img/fondo.jpg'); background-size: cover; background-position: center top; filter: brightness(0.72) saturate(0.85); animation: slowParallax 15s linear infinite alternate; z-index: 0; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,10,16,0.35) 0%, rgba(6,10,16,0.1) 40%, rgba(6,10,16,0.55) 72%, rgba(6,10,16,1) 100%); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; width: 100%; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 8px 20px;
    font-size: 10px; font-weight: 900; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 24px; backdrop-filter: blur(8px);
    animation: fadeUp 0.6s 1.4s var(--ease-out) backwards;
}
.hero-eyebrow span { color: var(--yellow); }
.hero-logo { width: min(680px, 88vw); height: auto; mix-blend-mode: screen; filter: drop-shadow(0 0 60px rgba(240,62,122,0.5)); animation: logo-float 6s ease-in-out infinite, fadeScale 0.8s 1.2s var(--ease-out) backwards; }
@keyframes logo-float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }

/* TEXTO Y BOTONES INFO */
.intro-text-module { text-align: center; padding: 40px 24px 40px; position: relative; z-index: 10; animation: fadeUp 0.6s 1.6s var(--ease-out) backwards; }
.hero-tagline { font-size: clamp(14px, 1.8vw, 18px); color: rgba(255,255,255,0.85); font-weight: 600; letter-spacing: 0.05em; line-height: 1.65; margin: 0 auto 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: var(--pink); color: white; font-weight: 900; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 16px 36px; border-radius: 12px; text-decoration: none; box-shadow: 0 0 30px rgba(240,62,122,0.4); transition: all 0.3s var(--ease-out);
}
.btn-primary:hover { background: var(--pink-light); transform: translateY(-2px); box-shadow: 0 4px 40px rgba(240,62,122,0.6); scale: 1.03; }
.btn-outline {
    background: transparent; color: rgba(255,255,255,0.8); font-weight: 900; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 16px 36px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.2); text-decoration: none; transition: all 0.3s var(--ease-out);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); scale: 1.03; }

/* SECTIONS GLOBALES */
.section-wrapper { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 24px; z-index: 5;}
.section { padding: 80px 0; position: relative; z-index: 5; transition: all 0.6s var(--ease-out); opacity: 0; transform: translateY(30px); }
.section.in-view { opacity: 1; transform: translateY(0); }

.section-label { font-size: 10px; font-weight: 900; letter-spacing: 0.4em; text-transform: uppercase; color: var(--pink); display: block; margin-bottom: 16px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 7vw, 80px); line-height: 0.92; color: white; letter-spacing: 0.02em; }
.accent { color: var(--yellow); }
.accent-pink { color: var(--pink); }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--yellow), transparent); margin: 16px 0 0; }
.divider-center { margin: 16px auto 0; background: linear-gradient(90deg, transparent, var(--pink), transparent); width: 80px; }

/* QUE ES */
.que-es-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.que-es-body { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-top: 28px; }
.que-es-highlight { margin-top: 28px; background: rgba(226,247,93,0.05); border: 1px solid rgba(226,247,93,0.15); border-left: 3px solid var(--yellow); padding: 20px 24px; border-radius: 0 12px 12px 0; text-align: left; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.6; transition: transform 0.4s var(--ease-out); }
.section.in-view .que-es-highlight:hover { transform: translateX(5px) scale(1.02); }

/* PROXIMO EVENTO Y COUNTDOWN */
.evento-card {
    position: relative; background: linear-gradient(135deg, rgba(13,21,32,0.95), rgba(17,28,42,0.95)); border: 1px solid rgba(255,255,255,0.06); border-radius: 28px;
    padding: 52px; overflow: hidden; transform-style: preserve-3d;
}
.evento-card::before { content: ''; position: absolute; inset: -1px; border-radius: 28px; background: linear-gradient(135deg, rgba(240,62,122,0.3), rgba(226,247,93,0.15), transparent 60%); z-index: -1; }
.evento-card::after { content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(240,62,122,0.08) 0%, transparent 70%); pointer-events: none; }
.evento-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; transform: translateZ(30px); }
.evento-badge { display: inline-block; background: rgba(240,62,122,0.12); border: 1px solid rgba(240,62,122,0.25); color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; padding: 6px 14px; border-radius: 6px; margin-bottom: 16px; }
.evento-nombre { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 8vw, 88px); color: white; line-height: 0.9; margin-bottom: 36px; }
.evento-nombre em { color: var(--yellow); font-style: normal; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.info-item { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; transition: all 0.3s ease; }
.info-item:hover { background: rgba(0,0,0,0.5); transform: translateY(-3px); }
.info-icon { font-size: 22px; flex-shrink: 0; }
.info-label { font-size: 9px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 800; color: white; }
.info-value.yellow { color: var(--yellow); }
.info-giveaway { background: rgba(240,62,122,0.06); border-color: rgba(240,62,122,0.15); }
.info-giveaway .info-value { color: var(--pink-light); }

.btn-waze {
    display: inline-flex; align-items: center; gap: 6px; background: rgba(43, 174, 222, 0.15); border: 1px solid rgba(43, 174, 222, 0.4); color: #2baede; font-size: 11px;
    font-weight: 800; padding: 6px 12px; border-radius: 8px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; transition: all 0.3s var(--ease-out);
}
.btn-waze:hover { background: #2baede; color: var(--dark); box-shadow: 0 0 15px rgba(43, 174, 222, 0.4); scale: 1.05; }
.live-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; margin-top: 16px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulseRed 1.5s ease-in-out infinite; }

.evento-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: 220px; padding-top: 20px; }
.btn-ticket { width: 100%; background: white; color: var(--dark); font-weight: 900; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; padding: 18px 32px; border-radius: 14px; text-decoration: none; text-align: center; transition: all 0.3s var(--ease-out); border: none; cursor: none; }
.btn-ticket:hover { background: var(--yellow); transform: translateY(-2px); scale: 1.03; box-shadow: 0 10px 20px rgba(226,247,93,0.3); }

/* CONTADOR REGRESIVO */
.countdown { display: flex; gap: 10px; margin-top: 10px; }
.cd-box { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 10px; text-align: center; min-width: 55px; }
.cd-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.cd-text { font-size: 8px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* LINEUP BOARD */
.lineup-board { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); border-radius: 28px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden; margin-top: 40px; }
.lineup-board span { display: inline-block; transition: transform 0.2s var(--ease-out), color 0.2s; cursor: none; }
.lineup-tier { margin-bottom: 32px; }
.lineup-tier:last-child { margin-bottom: 0; }
.tier-1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 10vw, 110px); line-height: 1; color: var(--yellow); letter-spacing: 0.01em; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.tier-1 span:hover { transform: scale(1.04); color: white; }
.tier-2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 70px); line-height: 1; color: white; letter-spacing: 0.02em; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; }
.tier-2 span:hover { color: var(--yellow); transform: scale(1.03); }
.tier-3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4.5vw, 54px); line-height: 1; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.tier-3 span:hover { color: var(--pink); transform: scale(1.03); }
.tier-4 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(20px, 3vw, 38px); color: rgba(255,255,255,0.4); letter-spacing: 0.04em; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.tier-4 span:hover { color: white; transform: scale(1.03); }
.lineup-divider { width: 1px; height: 1px; border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 32px 0; }
.host-label { font-size: 9px; font-weight: 900; letter-spacing: 0.4em; color: rgba(255,255,255,0.2); text-transform: uppercase; margin-bottom: 6px; }
.host-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--pink); letter-spacing: 0.1em; transition: all 0.3s ease; display: inline-block;}
.host-name:hover { transform: scale(1.05) rotate(-1deg); color: var(--pink-light); }

/* ARTISTS GRID */
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 48px; }
.artist-card {
    background: rgba(13,21,32,0.8); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden;
    transition: all 0.4s var(--ease-out); cursor: none; position: relative; transform-style: preserve-3d; 
}
.artist-card:hover { border-color: rgba(240,62,122,0.35); box-shadow: 0 10px 40px rgba(0,0,0,0.4); transform: translateY(-6px); }
.artist-photo {
    aspect-ratio: 4/3; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; color: rgba(255,255,255,0.12); text-transform: uppercase; position: relative; overflow: hidden; transform: translateZ(20px);
}
.artist-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,21,32,1) 100%); }
.artist-info { padding: 20px 22px 22px; transform: translateZ(30px); pointer-events: none;}
.artist-tag { font-size: 9px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; background: rgba(226,247,93,0.1); color: var(--yellow); border: 1px solid rgba(226,247,93,0.2); padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.artist-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: white; letter-spacing: 0.04em; line-height: 1; margin-bottom: 6px; }
.artist-genre { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 12px; }
.artist-bio { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.45); margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.artist-links { display: flex; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 10px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; pointer-events: auto;}
.artist-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; cursor: none; }
.artist-links a:hover { color: var(--pink); }

/* GALERIA & PATROCINADORES (SWIPER) */
.swiper-container { margin-top: 40px; padding: 20px 0; overflow: hidden; }
.gal-item {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.08); aspect-ratio: 1/1; transition: all 0.3s var(--ease-out); cursor: none; text-decoration: none; position: relative;
}
.gal-item:hover { border-color: rgba(240,62,122,0.4); scale: 1.03; box-shadow: 0 10px 30px rgba(240,62,122,0.2); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.3s; }
.gal-item:hover img { opacity: 1; }
.play-icon { position: absolute; font-size: 32px; color: white; opacity: 0.8; z-index: 2; }

.sponsor-card {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 32px 24px; text-align: center; filter: grayscale(1); opacity: 0.5; transition: all 0.4s var(--ease-out); cursor: none; transform-style: preserve-3d;
}
.sponsor-card:hover { filter: grayscale(0); opacity: 1; border-color: rgba(255,255,255,0.1); }
.sponsor-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: white; letter-spacing: 0.08em; transform: translateZ(20px);}
.sponsor-role { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 4px; transform: translateZ(10px);}

/* VISION */
.vision-section { text-align: center; max-width: 820px; margin: 0 auto; padding: 80px 24px; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.vision-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 4vw, 46px); line-height: 1.15; color: white; letter-spacing: 0.02em; margin-top: 24px; }
.vision-quote em { color: var(--yellow); font-style: normal; }

/* COMUNIDAD */
.comunidad-card { background: rgba(13,21,32,0.7); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; transition: all 0.5s var(--ease-out); }
.comunidad-card:hover { border-color: var(--yellow); box-shadow: 0 15px 50px rgba(0,0,0,0.4); scale: 1.01; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.social-link { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; padding: 10px 18px; border-radius: 10px; text-decoration: none; transition: all 0.3s var(--ease-out); cursor: none;}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(226,247,93,0.05); scale: 1.05; transform: translateY(-2px); }
.newsletter-box { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 28px 28px 30px; transition: background 0.3s; }
.comunidad-card:hover .newsletter-box { background: rgba(0,0,0,0.5); }
.newsletter-title { font-size: 13px; font-weight: 800; color: white; margin-bottom: 6px; letter-spacing: 0.05em; }
.newsletter-desc { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; margin-bottom: 18px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input { flex: 1; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px 16px; font-size: 13px; color: white; outline: none; transition: all 0.3s ease; font-family: 'Inter', sans-serif; cursor: none;}
.newsletter-input:focus { border-color: var(--pink); background: rgba(0,0,0,0.6); }
.newsletter-btn { background: white; color: var(--dark); font-size: 10px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; padding: 12px 18px; border-radius: 10px; border: none; cursor: none; transition: all 0.3s var(--ease-out); font-family: 'Inter', sans-serif; white-space: nowrap; }
.newsletter-btn:hover { background: var(--yellow); scale: 1.05; }

/* CONTACTO */
.contacto-wrapper { max-width: 680px; margin: 0 auto; }
.role-toggle { display: inline-flex; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 4px; margin: 20px 0 36px; }
.role-btn { padding: 10px 22px; border-radius: 9px; font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; cursor: none; transition: all 0.3s var(--ease-out); border: none; background: transparent; color: rgba(255,255,255,0.3); font-family: 'Inter', sans-serif; }
.role-btn.active { background: var(--pink); color: white; box-shadow: 0 4px 15px rgba(240,62,122,0.3); }
.contacto-form { background: rgba(13,21,32,0.8); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 40px; transition: all 0.5s var(--ease-out); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 9px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.form-input, .form-textarea, .form-select { background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 14px 18px; font-size: 14px; color: white; outline: none; transition: all 0.3s ease; font-family: 'Inter', sans-serif; cursor: none;}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--pink); background: rgba(0,0,0,0.6); }
.form-input:focus + .form-label, .form-textarea:focus + .form-label { color: var(--pink); }
.form-textarea { resize: none; min-height: 110px; }
.form-select { color-scheme: dark; cursor: none; }
.form-submit { width: 100%; background: linear-gradient(135deg, var(--pink), #c0154e); color: white; font-size: 12px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; padding: 18px; border-radius: 14px; border: none; cursor: none; transition: all 0.3s var(--ease-out); font-family: 'Inter', sans-serif; box-shadow: 0 4px 24px rgba(240,62,122,0.3); }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(240,62,122,0.5); scale: 1.02; }

footer { text-align: center; padding: 48px 24px 40px; border-top: 1px solid rgba(255,255,255,0.04); max-width: 1100px; margin: 0 auto; }
.footer-age { display: inline-flex; align-items: center; gap: 10px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.15); padding: 8px 20px; border-radius: 100px; margin-bottom: 16px; }
.age-badge { width: 26px; height: 26px; background: #ef4444; color: white; font-size: 9px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-age-text { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(239,68,68,0.7); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.12); letter-spacing: 0.08em; }

/* SWEETALERT2 CUSTOMIZATION */
.swal2-popup.sivar-swal { background: var(--dark2) !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 24px !important; color: white !important; font-family: 'Inter', sans-serif !important; cursor: none;}
.swal2-title { font-family: 'Bebas Neue', sans-serif !important; font-size: 40px !important; color: var(--pink) !important; letter-spacing: 0.05em !important; }
.swal2-html-container { color: rgba(255,255,255,0.6) !important; font-size: 15px !important; }

/* ==============================================
   AJUSTES GENERALES PARA MÓVIL
   =============================================== */
@media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
        display: flex; flex-direction: column; position: fixed; top: 0; right: -100%;
        width: 78%; max-width: 320px; height: 100vh; margin: 0; list-style: none;
        background: var(--dark2); border-left: 1px solid rgba(255,255,255,0.08);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5); padding: 110px 32px 40px;
        gap: 26px; z-index: 105; transition: right 0.4s var(--ease-out);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 13px; }
    .nav-cta-mobile {
        display: inline-block; background: var(--pink); color: white; text-align: center;
        padding: 14px 20px; border-radius: 10px; font-weight: 900; font-size: 12px;
        letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; margin-top: 12px;
    }
    .evento-grid { grid-template-columns: 1fr; } .evento-cta { padding-top: 0; } .info-grid { grid-template-columns: 1fr; }
    .comunidad-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; } .form-row { grid-template-columns: 1fr; } .contacto-form { padding: 24px 20px; } .evento-card { padding: 28px 24px; }
    .hero { padding: 80px 20px 20px; }
}

/* ==============================================
   12. MODALES RESPONSIVOS (ARTISTAS Y GIVEAWAY)
   =============================================== */
.modal-artist {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    z-index: 999999 !important; 
    display: none; 
    justify-content: center; 
    align-items: center;
    padding: 15px;
}

.modal-artist-content { 
    background: #111;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
    max-height: 85vh; /* Límite estricto para forzar el scroll interno */
    overflow-y: auto; 
    position: relative;
    padding: 35px 30px 30px !important; 
}

/* Botón de cerrar fijo e independiente */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    line-height: 1;
    z-index: 20;
    transition: background 0.3s;
    cursor: pointer;
}
.close-modal:hover {
    background: var(--pink);
}

.artist-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px !important;
    align-items: start;
}

.tattoo-img, #modal-artist-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--pink); 
}

.yellow {
    color: #ffcc00 !important;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Quitar el límite de 3 líneas del texto adentro de los modales */
.modal-artist-content .artist-bio {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

/* 📱 AJUSTES SÚPER ESTRICTOS PARA CELULAR */
@media (max-width: 768px) {
    .modal-artist {
        align-items: flex-start; /* Evita que el modal se corte por arriba si es muy largo */
        padding: 20px 15px;
    }
    
    .modal-artist-content { 
        padding: 50px 20px 25px !important; /* Espacio extra arriba solo para la "X" */
        max-height: 90vh; 
        margin: auto 0; /* Auto-centrado seguro */
    }

    .artist-modal-grid { 
        grid-template-columns: 1fr !important; 
        gap: 15px !important; 
    }
    
    /* Imágenes mucho más compactas para no obligar a scrollear tanto */
    #modal-artist-img, 
    .tattoo-img { 
        height: 180px !important; 
        border-radius: 8px;
    }

    /* Textos optimizados para no saturar la pantalla */
    .artist-name { font-size: 26px !important; margin-top: 5px !important; }
    .artist-genre { margin-bottom: 10px !important; }
    .modal-artist-content .artist-bio { font-size: 13px !important; line-height: 1.5 !important; }

    /* Botones apilados y anchos */
    .artist-social {
        flex-direction: column;
        gap: 8px !important;
        margin-top: 15px !important;
    }
    .artist-social a {
        width: 100% !important;
        text-align: center;
        padding: 14px !important;
    }
}