/* ==========================================
   RÍO FM 93.3 MHZ — Custom Styles
   Paleta: Turquesa, Fucsia, Amarillo, Naranja, Violeta
   Fuentes: Bebas Neue, Montserrat, Pacifico
   ========================================== */

/* --- CSS Variables --- */
:root {
    --turquesa: #00BFFF;
    --fucsia: #FF1493;
    --amarillo: #FFD700;
    --naranja: #FF4500;
    --violeta: #8A2BE2;
    --negro: #000000;
    --blanco: #FFFFFF;
    --turquesa-dark: #009ACD;
    --bg-dark: #0a0a1a;
    --bg-section: #0d0d2b;
    --glass-bg: rgba(10, 10, 26, 0.85);
}

/* --- Custom Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--blanco);
    overflow-x: hidden;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--turquesa);
    border-radius: 4px;
}

/* --- Utility --- */
.z-2 {
    z-index: 2;
}

/* ==========================================
   NAVBAR
   ========================================== */
#mainNav {
    background: transparent;
    transition: all 0.4s ease;
    padding: 1rem 0;
}

#mainNav.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 191, 255, 0.15);
}

.navbar-logo {
    height: 75px;
    width: auto;
    transition: height 0.3s ease;
}

#mainNav.scrolled .navbar-logo {
    height: 60px;
}

.brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--turquesa), var(--fucsia));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: var(--blanco) !important;
    margin-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--turquesa), var(--fucsia));
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--turquesa) !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 26, 0.85) 0%,
        rgba(10, 10, 26, 0.65) 30%,
        rgba(138, 43, 226, 0.4) 60%,
        rgba(10, 10, 26, 0.92) 100%
    );
    z-index: 1;
}

.hero-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 191, 255, 0.7)) drop-shadow(0 0 80px rgba(0, 191, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.4), 0 2px 10px rgba(0,0,0,0.8);
    max-width: 800px;
    margin: 0 auto 1rem;
    color: var(--blanco);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-listen {
    background: linear-gradient(135deg, var(--turquesa), var(--violeta));
    color: var(--blanco);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
}

.btn-listen:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.6);
    color: var(--blanco);
    background: linear-gradient(135deg, var(--fucsia), var(--naranja));
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--blanco);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--fucsia);
    color: var(--fucsia);
    background: rgba(255, 20, 147, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

/* Equalizer animation */
.equalizer-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    z-index: 2;
    padding-bottom: 10px;
    opacity: 0.6;
}

.eq-bar {
    width: 6px;
    background: linear-gradient(to top, var(--turquesa), var(--fucsia));
    border-radius: 3px 3px 0 0;
    animation: equalize 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { animation-delay: 0s; height: 20px; }
.eq-bar:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; height: 25px; }
.eq-bar:nth-child(4) { animation-delay: 0.3s; height: 45px; }
.eq-bar:nth-child(5) { animation-delay: 0.15s; height: 30px; }
.eq-bar:nth-child(6) { animation-delay: 0.25s; height: 50px; }
.eq-bar:nth-child(7) { animation-delay: 0.35s; height: 20px; }
.eq-bar:nth-child(8) { animation-delay: 0.05s; height: 40px; }
.eq-bar:nth-child(9) { animation-delay: 0.2s; height: 28px; }
.eq-bar:nth-child(10) { animation-delay: 0.3s; height: 38px; }

@keyframes equalize {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ==========================================
   SECTION TITLES (shared)
   ========================================== */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--turquesa), var(--amarillo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-title.text-white {
    background: linear-gradient(135deg, var(--blanco), var(--turquesa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   HISTORIAS DE INSTAGRAM (Stories)
   ========================================== */
.section-ig-stories {
    background: var(--bg-dark);
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.section-ig-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--turquesa), var(--fucsia), transparent);
}

.ig-link {
    color: var(--turquesa);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ig-link:hover {
    color: var(--fucsia);
}

.stories-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.stories-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 0.5rem;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: scale(1.08);
}

.story-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--amarillo), var(--fucsia), var(--violeta), var(--turquesa));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    0% { background: linear-gradient(0deg, var(--amarillo), var(--fucsia), var(--violeta), var(--turquesa)); }
    25% { background: linear-gradient(90deg, var(--amarillo), var(--fucsia), var(--violeta), var(--turquesa)); }
    50% { background: linear-gradient(180deg, var(--amarillo), var(--fucsia), var(--violeta), var(--turquesa)); }
    75% { background: linear-gradient(270deg, var(--amarillo), var(--fucsia), var(--violeta), var(--turquesa)); }
    100% { background: linear-gradient(360deg, var(--amarillo), var(--fucsia), var(--violeta), var(--turquesa)); }
}

.story-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.story-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stories-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--blanco);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.stories-arrow:hover {
    background: var(--turquesa);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.stories-arrow-left {
    left: 0;
}

.stories-arrow-right {
    right: 0;
}

/* ==========================================
   FEED DE INSTAGRAM
   ========================================== */
.section-ig-feed {
    background: var(--bg-section);
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.ig-feed-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grilla de embeds nativos de Instagram */
.ig-embed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.ig-embed-item {
    min-width: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ig-embed-item iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 12px;
    display: block;
}

/* Responsive: 2 columnas en tablet, 1 en móvil */
@media (max-width: 991px) {
    .ig-embed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ig-embed-grid {
        grid-template-columns: 1fr;
    }
}

.ig-feed-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-ig-follow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: var(--blanco);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.btn-ig-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.5);
    color: var(--blanco);
}

/* Responsive para feed e historias */
@media (max-width: 575px) {
    .ig-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-ring {
        width: 58px;
        height: 58px;
    }

    .story-avatar {
        width: 50px;
        height: 50px;
    }

    .story-label {
        font-size: 0.55rem;
        max-width: 58px;
    }

    .stories-scroll {
        gap: 0.8rem;
    }
}

/* ==========================================
   PROGRAMACIÓN
   ========================================== */
.section-programacion {
    background: var(--bg-dark);
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-programacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 191, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--turquesa);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.15);
    background: rgba(0, 191, 255, 0.05);
}

.program-icon-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.program-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--turquesa);
    transition: all 0.3s ease;
}

.program-card:hover .program-icon-overlay {
    background: rgba(10, 10, 26, 0.3);
    color: var(--amarillo);
}

.program-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--turquesa);
    margin-bottom: 0.5rem;
}

.program-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.btn-reminder {
    background: transparent;
    color: var(--amarillo);
    border: 2px solid var(--amarillo);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-reminder:hover {
    background: var(--amarillo);
    color: var(--negro);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* ==========================================
   SORTEOS Y PROMOCIONES
   ========================================== */
.section-sorteos {
    position: relative;
    background: url('images/disco-party.jpg') center center / cover no-repeat fixed;
    padding: 6rem 0;
}

.sorteos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.85), rgba(255, 20, 147, 0.7));
    z-index: 1;
}

.sorteos-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.sorteos-img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.btn-sorteos {
    background: linear-gradient(135deg, var(--fucsia), var(--naranja));
    color: var(--blanco);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.btn-sorteos:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 20, 147, 0.5);
    color: var(--blanco);
}

/* ==========================================
   COMUNIDAD
   ========================================== */
.section-comunidad {
    background: var(--bg-dark);
    padding: 6rem 0;
    position: relative;
}

.section-comunidad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 191, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.comunidad-img {
    max-height: 450px;
    object-fit: cover;
    border: 3px solid rgba(0, 191, 255, 0.2);
}

.comunidad-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.custom-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--blanco);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--turquesa);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
    color: var(--blanco);
}

.btn-registro {
    background: linear-gradient(135deg, var(--turquesa), var(--violeta));
    color: var(--blanco);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-registro:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.4);
    color: var(--blanco);
}

/* ==========================================
   MEDIA KIT
   ========================================== */
.section-mediakit {
    background: linear-gradient(135deg, var(--bg-section), rgba(138, 43, 226, 0.15));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-mediakit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mediakit-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.mediakit-img {
    max-height: 400px;
    filter: drop-shadow(0 0 40px rgba(0, 191, 255, 0.3));
}

.btn-mediakit {
    background: transparent;
    color: var(--turquesa);
    border: 2px solid var(--turquesa);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-mediakit:hover {
    background: var(--turquesa);
    color: var(--negro);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
    transform: translateY(-2px);
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.metric-box:hover {
    border-color: var(--turquesa);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.15);
}

.metric-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--amarillo);
    letter-spacing: 2px;
}

.metric-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: linear-gradient(180deg, var(--bg-dark), #050510);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
}

.footer-logo-large {
    height: 105px;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--turquesa);
    margin-bottom: 1rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.7rem;
}

.footer-contact-list li i {
    color: var(--turquesa);
}

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

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    border-color: var(--fucsia);
    color: var(--fucsia);
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-3px);
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--turquesa);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1rem;
}

.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquesa), var(--violeta));
    color: var(--blanco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    color: var(--blanco);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 150px;
    }

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

    .section-sorteos .row {
        text-align: center;
    }

    .sorteos-img {
        margin-top: 2rem;
    }

    .comunidad-img {
        margin-bottom: 2rem;
    }

    .mediakit-img {
        margin-top: 2rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        width: 120px;
    }

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

    .metric-number {
        font-size: 1.8rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .equalizer-container {
        height: 40px;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }
}

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

    .btn-listen {
        padding: 0.7rem 1.8rem;
        font-size: 1.1rem;
    }

    .program-icon-wrap {
        height: 150px;
    }
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast-custom {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--turquesa), var(--violeta));
    color: var(--blanco);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.toast-custom.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================
   REPRODUCTOR DE RADIO FLOTANTE
   ========================================== */
.radio-player {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.97), rgba(13, 13, 43, 0.97));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 -5px 40px rgba(0, 191, 255, 0.2), 0 0 60px rgba(138, 43, 226, 0.1);
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.radio-player.active {
    bottom: 20px;
}

.radio-player-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.radio-player-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.radio-player-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.5));
}

.radio-player-text {
    display: flex;
    flex-direction: column;
}

.radio-player-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--blanco);
    line-height: 1.2;
}

.radio-player-status {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--turquesa);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-player-status.playing {
    color: #00ff88;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.radio-player-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.radio-player-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--turquesa), var(--violeta));
    color: var(--blanco);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    flex-shrink: 0;
}

.radio-player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.radio-player-btn.playing {
    background: linear-gradient(135deg, var(--fucsia), var(--naranja));
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.radio-player-volume {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.radio-player-vol-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.radio-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 70px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--turquesa);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
    transition: all 0.2s ease;
}

.radio-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
}

.radio-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--turquesa);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}

.radio-player-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.3rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.radio-player-close:hover {
    color: var(--fucsia);
}

/* Mini ecualizador del reproductor */
.radio-player-eq {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    height: 16px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-player-eq.active {
    opacity: 0.6;
}

.radio-player-eq span {
    display: block;
    width: 3px;
    background: linear-gradient(to top, var(--turquesa), var(--fucsia));
    border-radius: 2px;
    animation: miniEq 0.8s ease-in-out infinite;
}

.radio-player-eq span:nth-child(1) { height: 6px; animation-delay: 0s; }
.radio-player-eq span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.radio-player-eq span:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.radio-player-eq span:nth-child(4) { height: 14px; animation-delay: 0.1s; }
.radio-player-eq span:nth-child(5) { height: 6px; animation-delay: 0.25s; }

@keyframes miniEq {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Responsive del reproductor */
@media (max-width: 575px) {
    .radio-player {
        width: 95%;
        padding: 0.6rem 1rem;
        border-radius: 16px;
    }

    .radio-player-logo {
        width: 34px;
        height: 34px;
    }

    .radio-player-title {
        font-size: 0.9rem;
    }

    .radio-player-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .radio-player-volume {
        display: none;
    }

    .radio-player-status {
        font-size: 0.6rem;
    }
}

/* Ajustar el botón back-to-top cuando el reproductor está activo */
.radio-player.active ~ .btn-top {
    bottom: 100px;
}
