/* Variables CSS - Manteniendo el estilo de CLM Central */
:root {
    /* Colores principales */
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #202124;
    
    /* Degradados */
    --primary-gradient: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
    --accent-gradient: linear-gradient(135deg, #fbbc05 0%, #ea4335 100%);
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --hero-gradient: linear-gradient(135deg, rgba(26, 115, 232, 0.85) 0%, rgba(52, 168, 83, 0.75) 100%);
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Espaciado */
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Sombras */
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.15);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Contenedor principal */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.preloader-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navegación */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Botón donar/en vivo */
.btn-donar {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-donar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Botón hamburguesa */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all var(--transition-normal);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Slider */
.hero {
    margin-top: 10px;
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Now Playing */
.now-playing-container {
    position: relative;
    z-index: 10;
    margin-top: -100px;
}

.now-playing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    max-width: 800px;
    margin: 0 auto;
}

.now-playing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.now-playing-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.current-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

.track-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.track-artist {
    color: var(--text-light);
    font-size: 1rem;
}

.track-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.player-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.play-btn {
    background: var(--primary-gradient);
    color: white;
    width: 55px;
    height: 55px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
}

#volume-slider {
    width: 80px;
    height: 4px;
    background: var(--bg-light);
    border-radius: 2px;
    -webkit-appearance: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

/* Swiper personalización */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

/* Secciones generales */
section {
    padding: var(--section-padding);
}

section:nth-child(even) {
    background: var(--bg-light);
}

section:nth-child(odd) {
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Accesos rápidos */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-access-item {
    background: var(--card-gradient);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
}

.quick-access-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quick-access-item.highlighted {
    background: var(--primary-gradient);
    color: white;
}

.quick-access-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quick-access-item.highlighted .quick-access-icon {
    color: white;
}

.quick-access-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Programación */
.day-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.day-filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.day-filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.day-filter-btn.active {
    background: var(--primary-gradient);
    color: white;
}

.search-programs {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

#program-search {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--bg-light);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

#program-search:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.programacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.programa-card {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.programa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.programa-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem;
    position: relative;
}

.programa-time {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.programa-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.programa-host {
    font-size: 0.9rem;
    opacity: 0.9;
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.programa-body {
    padding: 1.5rem;
}

.programa-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.programa-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-listen {
    flex: 1;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-listen:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-listen.disabled {
    background: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
}

.btn-listen.disabled:hover {
    transform: none;
}

.btn-bookmark {
    width: 45px;
    background: var(--bg-light);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-bookmark:hover {
    background: var(--primary-color);
    color: white;
}

.btn-bookmark.active {
    background: var(--primary-color);
    color: white;
}

/* Cómo escuchar */
.como-escuchar {
    background: var(--primary-gradient);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    text-align: center;
}

.como-escuchar h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.escuchar-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.escuchar-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.escuchar-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.escuchar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.escuchar-option h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Eventos */
.event-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-card.event-featured {
    border: 2px solid var(--accent-color);
}

.event-image {
    height: 100%;
    min-height: 300px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 2.5rem;
}

.event-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.event-date, .event-time, .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.event-content p {
    margin: 1.5rem 0;
    line-height: 1.6;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all var(--transition-normal);
}

.service-badge:hover {
    background: var(--primary-color);
    color: white;
}

.service-badge i {
    color: var(--primary-color);
}

.service-badge:hover i {
    color: white;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-event {
    flex: 1;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-event:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-event-info {
    flex: 1;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-event-info:hover {
    background: #2c8c47;
    transform: translateY(-2px);
}

/* Patrocinios */
.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.paquete-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.paquete-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.paquete-card.destacado {
    transform: scale(1.05);
}

.paquete-card.destacado:hover {
    transform: scale(1.05) translateY(-8px);
}

.paquete-header {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.paquete-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.paquete-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.paquete-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.paquete-price span {
    font-size: 1rem;
    font-weight: 500;
}

.paquete-body {
    padding: 2rem;
}

.paquete-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.paquete-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.paquete-benefits i.fa-check {
    color: var(--secondary-color);
}

.paquete-benefits i.fa-times {
    color: var(--text-lighter);
}

.btn-paquete {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-paquete:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Patrocinadores */
.patrocinadores-section {
    margin-top: 4rem;
}

.patrocinadores-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.patrocinadores-swiper {
    padding: 1rem 0 3rem;
}

.patrocinador-logo {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.patrocinador-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.patrocinador-logo i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.patrocinador-logo p {
    font-weight: 500;
    color: var(--text-color);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.faq-question {
    width: 100%;
    background: var(--bg-color);
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question[aria-expanded="true"] {
    background: var(--primary-color);
    color: white;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform var(--transition-normal);
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: var(--bg-light);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px; /* Aumentado para mostrar contenido completo */
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto; /* Permite scroll si el contenido es muy largo */
}
.faq-answer ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Contacto */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Ancho máximo */
    height: 600px;
    margin: 0 auto; /* Centrar */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

/* Tamaño específico del video */
.video-container video {
    width: 100%;
    height: auto; /* Altura fija */
    display: block;
    object-fit: cover; /* Ajusta la imagen sin distorsionar */
    background: #000;
}

/* Alternativa: mantener proporción 16:9 */
.video-container.ratio-16-9 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 = 9/16 = 0.5625 */
    height: 0;
}

.video-container.ratio-16-9 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Muestra video completo */
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-video {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 0%;
}

.video-caption {
    padding: 1rem;
    background: var(--bg-color);
    text-align: center;
}

.video-caption h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .video-controls {
        opacity: 1; /* Siempre visible en móvil */
        padding: 0.75rem;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
}

.social-links {
    margin: 2rem 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-mission {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-cta {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.btn-listen-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-listen-footer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Botones flotantes */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    z-index: 100;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 7rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Modales */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10002;
    color: var(--text-color);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-list {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--bg-color);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: var(--shadow-medium);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all var(--transition-normal);
                z-index: 999;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
                gap: 0;
                align-items: stretch;
            }
            
            .nav-list.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-toggle {
                display: flex;
            }
            
            .nav-item {
                width: 100%;
                border-bottom: 1px solid var(--bg-light);
                padding: 0;
            }
            
            .nav-item:last-child {
                border-bottom: none;
                padding-top: 1rem;
            }
            
            .nav-link {
                padding: 1rem 0.5rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }
            
            /* Dropdown en móviles/tables - MEJORADO */
            .dropdown {
                position: relative;
                width: 100%;
            }
            
            .dropdown-toggle {
                cursor: pointer;
                user-select: none;
                width: 100%;
                justify-content: space-between;
            }
            
            .dropdown-toggle .fa-chevron-down {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active .dropdown-toggle .fa-chevron-down {
                transform: rotate(180deg);
            }
            
            .dropdown-menu {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                box-shadow: none !important;
                background: var(--bg-light) !important;
                border-radius: 8px;
                margin-top: 0.5rem;
                margin-left: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0 !important;
                width: 100%;
                display: block !important;
            }
            
            .dropdown.active .dropdown-menu {
                max-height: 500px;
                padding: 0.5rem 0 !important;
                margin-bottom: 0.5rem;
            }
            
            .dropdown-link {
                padding: 0.75rem 1.5rem 0.75rem 2rem;
                font-size: 0.95rem;
                width: 100%;
                text-align: left;
            }
            
            .dropdown-link:hover {
                background: rgba(26, 115, 232, 0.1);
                padding-left: 2.5rem;
            }
            
            /* Mejorar el botón donar en móvil */
            .btn-donar {
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
            }
            
            /* Evitar hover en móviles */
            .nav-link:hover::after {
                width: 0 !important;
            }
            
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .escuchar-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paquetes-grid {
        grid-template-columns: 1fr;
    }
    
    .paquete-card.destacado {
        transform: none;
    }
    
    .paquete-card.destacado:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    /* Navegación móvil */
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .now-playing-container {
        margin-top: -50px;
    }
    
    .now-playing-card {
        padding: 1.5rem;
    }
    
    /* Grids */
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    
    .programacion-grid {
        grid-template-columns: 1fr;
    }
    
    .escuchar-options {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Títulos */
    .section-title {
        font-size: 2rem;
    }
    
    /* Botón volver arriba */
    .back-to-top {
        right: 1.5rem;
        bottom: 5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .day-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .day-filter-btn {
        white-space: nowrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 0.5rem;
    }
}

/* Compatibilidad con navegadores antiguos */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE compatibility */
    .hero-content {
        background: rgba(26, 115, 232, 0.7);
        padding: 2rem;
        border-radius: 8px;
    }
    
    .now-playing-card {
        background: white;
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .now-playing-card,
    .escuchar-option {
        background: var(--bg-color);
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .now-playing-card {
        animation: none;
    }
    
    .live-dot {
        animation: none;
    }
}

/* Impresión */
@media print {
    .whatsapp-float,
    .back-to-top,
    .nav-toggle,
    .swiper-button-next,
    .swiper-button-prev,
    .btn-listen,
    .btn-bookmark,
    .btn-event,
    .btn-event-info,
    .btn-paquete,
    .btn-submit,
    .btn-whatsapp,
    .btn-listen-footer {
        display: none !important;
    }
    
    .header {
        position: static;
        box-shadow: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero-swiper {
        height: auto;
    }
    
    .hero-slide {
        height: auto;
    }
    
    .hero-image {
        position: static;
        height: 200px;
    }
    
    .hero-content {
        position: static;
        transform: none;
        color: var(--text-color);
        text-shadow: none;
        margin-top: 1rem;
    }
    
    .hero-title {
        color: var(--primary-color);
    }
    
    section {
        break-inside: avoid;
    }
}