/* -------------------------------------------------------------
   LA JUGLA PRODUCCIONES - DESIGN SYSTEM & STYLES
   Underground Jungle & Neon Aesthetic (Afro House & House Vibe)
   ------------------------------------------------------------- */

/* Variables de CSS */
:root {
    --bg-dark: #050505;
    --bg-card: rgba(18, 18, 18, 0.6);
    --bg-card-hover: rgba(25, 25, 25, 0.85);
    --primary: #00ff66;
    --primary-glow: rgba(0, 255, 102, 0.4);
    --primary-bright: #39ff14;
    --text-white: #ffffff;
    --text-gray: #a0a0a8;
    --text-muted: #6e6e73;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 255, 102, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset de Estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* Personalización del Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020202;
}

::-webkit-scrollbar-thumb {
    background: #151515;
    border-radius: 4px;
    border: 2px solid #020202;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Utilidades Comunes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.hidden {
    display: none !important;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.glass-panel:hover {
    border-color: var(--border-glow);
    box-shadow: 0 12px 40px 0 rgba(0, 255, 102, 0.1);
}

/* Tipografías y Encabezados */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

.neon-text-green {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow), 0 0 20px rgba(0, 255, 102, 0.2);
}

.section-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header {
    margin-bottom: 60px;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
}

.btn-primary:hover {
    background-color: var(--primary-bright);
    transform: translateY(-3px);
}

.btn-glow {
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 25px var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.icon {
    width: 18px;
    height: 18px;
}

/* Header & Barra de Navegación */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.main-header.scrolled {
    height: 70px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.main-header.scrolled .main-logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-contact-nav {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
}

.btn-contact-nav::after {
    display: none;
}

.btn-contact-nav:hover {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Menú Hamburguesa */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary);
}

.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 24px;
    margin-top: 50px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title span {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

/* Quiénes Somos Section */
.nosotros-section {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(0, 255, 102, 0.03) 0%, transparent 50%);
}

.section-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.align-items-center {
    align-items: center;
}

.nosotros-info {
    display: flex;
    flex-direction: column;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: justify;
}

.nosotros-features {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nosotros-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-border-glow {
    position: relative;
    border-radius: 50%;
    padding: 10px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.15) 0%, transparent 70%);
}

.image-border-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px dashed rgba(0, 255, 102, 0.3);
    animation: rotate 20s linear infinite;
}

.about-icon-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(0, 255, 102, 0.3));
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Artistas Section */
.artistas-section {
    background: radial-gradient(circle at 10% 30%, rgba(0, 255, 102, 0.02) 0%, transparent 60%);
}

.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.artista-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.artista-img-container {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.artista-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.artista-card:hover .artista-img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.artista-overlay-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    transition: var(--transition-normal);
    opacity: 0;
}

.artista-card:hover .artista-overlay-socials {
    bottom: 0;
    opacity: 1;
}

.artista-social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition-normal);
}

.artista-social-icon:hover {
    background-color: var(--primary-bright);
    box-shadow: 0 0 18px var(--primary);
    transform: scale(1.1);
}

.artista-social-icon svg {
    width: 18px;
    height: 18px;
}

.artista-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artista-info h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.artista-genre {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.artista-bio {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.placeholder-img,
.artist-placeholder {
    object-fit: contain;
    padding: 50px;
    opacity: 0.3;
}

/* Radio En Vivo Section */
.radio-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080808 50%, var(--bg-dark) 100%);
}

.radio-player-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.radio-player-card {
    width: 100%;
    max-width: 550px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.radio-player-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Ondas del Ecualizador */
.radio-waves-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 80px;
    margin-bottom: 30px;
    z-index: 1;
}

.radio-wave {
    width: 6px;
    height: 15px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    border-radius: 3px;
    transition: height 0.1s ease;
}

/* Animación de Ondas Activas */
.radio-waves-container.playing .radio-wave {
    animation: waveAnimation 1.2s ease-in-out infinite alternate;
}

.radio-waves-container.playing .radio-wave:nth-child(1) {
    animation-delay: 0.1s;
}

.radio-waves-container.playing .radio-wave:nth-child(2) {
    animation-delay: 0.3s;
}

.radio-waves-container.playing .radio-wave:nth-child(3) {
    animation-delay: 0.6s;
}

.radio-waves-container.playing .radio-wave:nth-child(4) {
    animation-delay: 0.2s;
}

.radio-waves-container.playing .radio-wave:nth-child(5) {
    animation-delay: 0.5s;
}

.radio-waves-container.playing .radio-wave:nth-child(6) {
    animation-delay: 0.7s;
}

.radio-waves-container.playing .radio-wave:nth-child(7) {
    animation-delay: 0.4s;
}

.radio-waves-container.playing .radio-wave:nth-child(8) {
    animation-delay: 0.1s;
}

.radio-waves-container.playing .radio-wave:nth-child(9) {
    animation-delay: 0.3s;
}

.radio-info {
    text-align: center;
    margin-bottom: 35px;
    z-index: 1;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3333;
}

/* Punto Rojo Parpadeando cuando NO reproduce, pero en neón verde parpadeando rápido cuando reproduce */
.live-dot.playing {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: blinkFast 0.8s infinite alternate;
}

.live-badge.playing-badge {
    background: rgba(0, 255, 102, 0.1);
    border-color: rgba(0, 255, 102, 0.3);
}

.live-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.live-badge.playing-badge .live-text {
    color: var(--primary);
}

.radio-station-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.radio-current-show {
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    z-index: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: var(--transition-normal);
}

.play-btn:hover {
    transform: scale(1.08);
    background-color: var(--primary-bright);
    box-shadow: 0 0 30px var(--primary);
}

.play-btn svg {
    width: 36px;
    height: 36px;
}

.play-btn .pause-icon {
    width: 32px;
    height: 32px;
}

/* Volumen */
.volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 80%;
    max-width: 250px;
}

.volume-btn {
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.volume-btn:hover {
    color: var(--primary);
}

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

.volume-slider {
    flex-grow: 1;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.2);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    cursor: pointer;
    transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Cursos / Academia Section */
.cursos-section {
    background: radial-gradient(circle at 90% 80%, rgba(0, 255, 102, 0.03) 0%, transparent 50%);
}

.cursos-visual {
    display: flex;
    justify-content: center;
}

.course-card {
    position: relative;
    padding: 16px;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.course-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: var(--transition-slow);
}

.course-card:hover .course-img {
    transform: scale(1.03);
}

.course-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--primary);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 0 15px var(--primary-glow);
    letter-spacing: 1px;
}

.cursos-info {
    display: flex;
    flex-direction: column;
}

.course-list {
    margin: 20px 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-list li {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.course-list strong {
    color: var(--text-white);
}

.cursos-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Eventos / Fechas Section */
.eventos-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #070707 50%, var(--bg-dark) 100%);
}

.eventos-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 30px;
}

.evento-destacado-video {
    position: relative;
    padding: 12px;
    height: 480px;
    overflow: hidden;
    display: flex;
}

.event-promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-video-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
}

.event-video-badge {
    background-color: var(--primary);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 0 15px var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.eventos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evento-item {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    gap: 25px;
}

.evento-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid var(--primary-glow);
    min-width: 70px;
    height: 70px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.05);
}

.evento-date .day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.evento-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.evento-details {
    flex-grow: 1;
}

.evento-details h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.evento-details .lineup {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.evento-details .location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.evento-action {
    display: flex;
}

/* Merchandising Section */
.merch-section {
    background: radial-gradient(circle at 90% 40%, rgba(0, 255, 102, 0.02) 0%, transparent 60%);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.merch-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.merch-img-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.merch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.merch-card:hover .merch-img {
    transform: scale(1.04);
}

.merch-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.merch-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.merch-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.merch-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.merch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.merch-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.1);
}

/* Galería Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    min-height: 200px;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--text-gray);
    padding: 50px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    display: block;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: scaleIn 0.4s ease-out forwards;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 70%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: var(--transition-normal);
}

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

.gallery-media-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.gallery-item:hover .gallery-media-type {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 10px var(--primary-glow);
}

.gallery-item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
}

.gallery-item-info p {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 4px;
}

/* Contacto Section */
.contacto-section {
    background: radial-gradient(circle at 10% 80%, rgba(0, 255, 102, 0.03) 0%, transparent 50%);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 30px;
}

.contacto-form-container {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.form-group select option {
    background-color: #0e0e0e;
    color: var(--text-white);
}

.form-feedback {
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 10px;
    text-align: center;
}

.form-feedback.success {
    background-color: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: var(--primary);
}

.form-feedback.error {
    background-color: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff3333;
}

.contacto-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card,
.redes-card {
    padding: 30px;
}

.info-card h3,
.redes-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.info-card h3::after,
.redes-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}

.redes-card h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.info-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition-normal);
}

.social-link:hover {
    color: #000000;
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--primary-glow);
}

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

/* Footer */
.main-footer {
    background-color: #020202;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 40px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2002;
}

.lightbox-close:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 2002;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content-container {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

#lightboxMediaContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxMediaContainer img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#lightboxMediaContainer video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    outline: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    font-family: var(--font-heading);
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------------------------------------------------
   ANIMACIONES (KEYFRAMES)
   ------------------------------------------------------------- */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.3;
        top: 18px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.2));
    }

    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 35px rgba(0, 255, 102, 0.45));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.2));
    }
}

@keyframes waveAnimation {
    0% {
        height: 10px;
    }

    100% {
        height: 75px;
    }
}

@keyframes blinkFast {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--primary));
    }
}

/* -------------------------------------------------------------
   MEDIA QUERIES (RESPONSIVO)
   ------------------------------------------------------------- */

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

    .nosotros-visual {
        order: -1;
    }

    .eventos-container {
        grid-template-columns: 1fr;
    }

    .evento-destacado-video {
        height: 350px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .contacto-info-panel {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    /* Menú móvil */
    .hamburger-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        padding: 50px;
        transition: var(--transition-normal);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .btn-contact-nav {
        width: 100%;
        text-align: center;
    }

    .nosotros-features {
        grid-template-columns: 1fr;
    }

    .radio-player-card {
        padding: 25px;
    }

    .radio-waves-container {
        height: 60px;
    }

    @keyframes waveAnimation {
        0% {
            height: 10px;
        }

        100% {
            height: 55px;
        }
    }

    .evento-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }

    .evento-date {
        flex-direction: row;
        width: auto;
        min-width: unset;
        height: auto;
        padding: 6px 16px;
        gap: 8px;
    }

    .evento-date .day {
        font-size: 1.25rem;
    }

    .evento-action {
        width: 100%;
    }

    .evento-action .btn {
        width: 100%;
        text-align: center;
    }

    .contacto-form-container {
        padding: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cursos-cta {
        flex-direction: column;
        width: 100%;
    }

    .cursos-cta .btn {
        width: 100%;
    }
}