:root {
    --yellow: #FFD000;
    --yellow-light: #FFF3B0;
    --orange: #FF8C00;
    --orange-light: #FFB347;
    --red: #E63946;
    --red-dark: #C1121F;
    --blue: #1B4965;
    --blue-light: #5FA8D3;
    --blue-dark: #0D2137;
    --bg: #FFFDF7;
    --bg-alt: #FFF8E7;
    --text: #2D2D2D;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --card-bg: #FFFFFF;
    --border: rgba(27, 73, 101, 0.08);
    --shadow: 0 4px 24px rgba(27, 73, 101, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 73, 101, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Quicksand', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }

.text-gradient { background: linear-gradient(135deg, var(--orange), var(--red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-light { background: linear-gradient(135deg, var(--yellow), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); border: 2px solid var(--orange); padding: 6px 20px; border-radius: var(--radius-full); margin-bottom: 16px; }
.section-title { font-family: 'Baloo 2', cursive; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; line-height: 1.2; }
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 16px 0; transition: var(--transition); }
#navbar.scrolled { background: rgba(255,253,247,0.95); backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(27,73,101,0.08); padding: 10px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 52px; width: auto; transition: var(--transition); }
#navbar.scrolled .nav-logo-img { height: 42px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 600; font-size: 0.9rem; color: var(--blue-dark); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--red)); border-radius: 2px; transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-play-btn { width: 44px; height: 44px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; transition: var(--transition); box-shadow: 0 4px 15px rgba(230,57,70,0.3); }
.nav-play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(230,57,70,0.4); }
.nav-play-btn.playing { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.pulse-dot { position: absolute; top: -2px; right: -2px; width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; border: 2px solid var(--bg); display: none; }
.nav-play-btn.playing .pulse-dot { display: block; animation: pulseGlow 1.5s infinite; }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(255,208,0,0.6); } 50% { box-shadow: 0 0 0 8px rgba(255,208,0,0); } }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(170deg, #FFF8E7 0%, #FFE8CC 30%, #FFD6A5 60%, #FFBCD0 100%); overflow: hidden; padding-top: 80px; }
.hero-bg-elements { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: blobFloat 8s ease-in-out infinite; }
.blob-1 { width: 400px; height: 400px; background: var(--yellow); top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; background: var(--orange); bottom: 10%; left: -50px; animation-delay: -3s; }
.blob-3 { width: 250px; height: 250px; background: var(--blue-light); top: 30%; right: 10%; animation-delay: -5s; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } }
.tropical-leaf { position: absolute; font-size: 6rem; opacity: 0.1; animation: leafSway 6s ease-in-out infinite; }
.leaf-1 { top: 8%; left: 3%; } .leaf-2 { top: 15%; right: 5%; animation-delay: -2s; font-size: 4rem; }
.leaf-3 { bottom: 20%; left: 8%; animation-delay: -4s; font-size: 5rem; } .leaf-4 { bottom: 10%; right: 10%; animation-delay: -1s; font-size: 3.5rem; }
@keyframes leafSway { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-15px); } }
.floating-note { position: absolute; font-size: 1.8rem; color: var(--orange); opacity: 0.2; animation: noteFloat 10s linear infinite; }
.note-1 { left: 10%; bottom: 20%; animation-delay: 0s; font-size: 1.5rem; }
.note-2 { left: 25%; bottom: 10%; animation-delay: -2s; }
.note-3 { right: 20%; bottom: 15%; animation-delay: -4s; font-size: 2rem; }
.note-4 { right: 35%; bottom: 25%; animation-delay: -6s; font-size: 1.3rem; }
.note-5 { left: 50%; bottom: 5%; animation-delay: -8s; font-size: 1.7rem; }
@keyframes noteFloat { 0% { transform: translateY(0) rotate(0deg); opacity: 0.2; } 50% { opacity: 0.35; } 100% { transform: translateY(-200px) rotate(20deg); opacity: 0; } }

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-logo-wrapper { margin-bottom: 20px; }
.hero-logo { height: 180px; width: auto; margin: 0 auto; filter: drop-shadow(0 8px 30px rgba(0,0,0,0.15)); animation: logoFloat 4s ease-in-out infinite; }
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-tagline { font-family: 'Baloo 2', cursive; font-size: clamp(1.2rem,3vw,1.6rem); color: var(--blue-dark); margin-bottom: 8px; font-weight: 600; }
.hero-sub { font-size: 0.95rem; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; margin-bottom: 36px; }

/* PLAYER */
.player-main {
    background: rgba(255,255,255,0.75); backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,0.7); border-radius: 28px;
    padding: 28px 32px 24px; max-width: 480px; margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(27,73,101,0.1), 0 0 0 1px rgba(255,255,255,0.3) inset;
    transition: var(--transition);
}
.player-main:hover { box-shadow: 0 24px 70px rgba(27,73,101,0.15), 0 0 0 1px rgba(255,255,255,0.4) inset; }

.player-visualizer { display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 32px; margin-bottom: 20px; }
.viz-bar { width: 3.5px; background: linear-gradient(to top, var(--orange), var(--yellow)); border-radius: 2px; height: 6px; transition: height 0.15s ease; }
.player-main.playing .viz-bar { animation: vizBounce 0.6s ease-in-out infinite alternate; }
.player-main.playing .viz-bar:nth-child(1) { animation-delay: 0s; } .player-main.playing .viz-bar:nth-child(2) { animation-delay: 0.05s; }
.player-main.playing .viz-bar:nth-child(3) { animation-delay: 0.1s; } .player-main.playing .viz-bar:nth-child(4) { animation-delay: 0.15s; }
.player-main.playing .viz-bar:nth-child(5) { animation-delay: 0.08s; } .player-main.playing .viz-bar:nth-child(6) { animation-delay: 0.2s; }
.player-main.playing .viz-bar:nth-child(7) { animation-delay: 0.12s; } .player-main.playing .viz-bar:nth-child(8) { animation-delay: 0.25s; }
.player-main.playing .viz-bar:nth-child(9) { animation-delay: 0.03s; } .player-main.playing .viz-bar:nth-child(10) { animation-delay: 0.18s; }
.player-main.playing .viz-bar:nth-child(11) { animation-delay: 0.07s; } .player-main.playing .viz-bar:nth-child(12) { animation-delay: 0.22s; }
.player-main.playing .viz-bar:nth-child(13) { animation-delay: 0.14s; } .player-main.playing .viz-bar:nth-child(14) { animation-delay: 0.09s; }
.player-main.playing .viz-bar:nth-child(15) { animation-delay: 0.2s; } .player-main.playing .viz-bar:nth-child(16) { animation-delay: 0.06s; }
.player-main.playing .viz-bar:nth-child(17) { animation-delay: 0.17s; } .player-main.playing .viz-bar:nth-child(18) { animation-delay: 0.11s; }
.player-main.playing .viz-bar:nth-child(19) { animation-delay: 0.23s; } .player-main.playing .viz-bar:nth-child(20) { animation-delay: 0.04s; }
.player-main.playing .viz-bar:nth-child(21) { animation-delay: 0.19s; } .player-main.playing .viz-bar:nth-child(22) { animation-delay: 0.13s; }
.player-main.playing .viz-bar:nth-child(23) { animation-delay: 0.08s; } .player-main.playing .viz-bar:nth-child(24) { animation-delay: 0.21s; }
.player-main.playing .viz-bar:nth-child(25) { animation-delay: 0.16s; }
@keyframes vizBounce { 0% { height: 5px; } 100% { height: 30px; } }

/* Cover Section */
.player-cover-section {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 20px; text-align: left;
}

.player-cover-wrapper {
    position: relative; width: 110px; height: 110px;
    border-radius: 16px; overflow: hidden; flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.player-cover {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.6s ease;
    position: relative; z-index: 2;
}

.player-cover.loaded { opacity: 1; }

.player-cover-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 2.2rem;
    z-index: 1; transition: opacity 0.4s ease;
    background: linear-gradient(135deg, #1B4965, #2A6F97);
}

.player-cover-placeholder.hidden { opacity: 0; pointer-events: none; }

.cover-shine {
    position: absolute; inset: 0; z-index: 3;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.player-song-info { flex: 1; min-width: 0; }

.live-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; padding: 3px 12px; border-radius: var(--radius-full); margin-bottom: 8px; }
.live-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: livePulse 1s infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.now-artist {
    font-family: 'Baloo 2', cursive; font-size: 1.05rem; font-weight: 700;
    color: var(--blue-dark); margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: opacity 0.3s ease;
}

.now-song {
    font-size: 0.82rem; color: var(--text-light); font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: opacity 0.3s ease;
}

.player-song-info.updating .now-artist,
.player-song-info.updating .now-song { opacity: 0.3; }

.player-controls { display: flex; align-items: center; justify-content: center; gap: 14px; }
.vol-btn { background: none; border: none; color: var(--blue); font-size: 1rem; cursor: pointer; padding: 8px; transition: var(--transition); }
.vol-btn:hover { color: var(--orange); }
.vol-slider { -webkit-appearance: none; appearance: none; width: 80px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, var(--orange), var(--yellow)); outline: none; cursor: pointer; }
.vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--red); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15); cursor: pointer; }
.play-btn-main { width: 54px; height: 54px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 6px 25px rgba(230,57,70,0.35); margin-left: 6px; }
.play-btn-main:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(230,57,70,0.45); }
.play-btn-main:active { transform: scale(0.95); }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800; color: var(--blue-dark); }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(27,73,101,0.15); }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* NOSOTROS */
.nosotros { background: var(--bg); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nosotros-img-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; }
.nosotros-img { width: 100%; height: 500px; object-fit: cover; transition: var(--transition); }
.nosotros-img-wrapper:hover .nosotros-img { transform: scale(1.05); }
.nosotros-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,73,101,0.4), transparent 50%); }
.nosotros-experience { position: absolute; bottom: 24px; left: 24px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 16px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.exp-number { display: block; font-family: 'Baloo 2', cursive; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.exp-text { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.nosotros-content h3 { font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 20px; }
.nosotros-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.nosotros-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--yellow-light), #FFE0A3); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.feature-item h4 { font-family: 'Baloo 2', cursive; font-weight: 700; color: var(--blue-dark); margin-bottom: 2px; }
.feature-item p { font-size: 0.85rem; margin-bottom: 0; }

/* PROGRAMAS */
.programas { background: var(--bg-alt); }
.programas-bg-decor { position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,208,0,0.08), transparent 70%); pointer-events: none; }
.programas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.programa-card { background: var(--card-bg); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.programa-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--yellow), var(--orange)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.programa-card:hover::before { transform: scaleX(1); }
.programa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.programa-card.featured { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; border: none; }
.programa-card.featured::before { background: linear-gradient(90deg, var(--yellow), var(--orange-light)); }
.programa-card.featured .programa-time { background: rgba(255,255,255,0.15); color: var(--yellow); }
.programa-card.featured .programa-icon { background: rgba(255,255,255,0.1); color: var(--yellow); }
.programa-card.featured h3 { color: #fff; }
.programa-card.featured p { color: rgba(255,255,255,0.7); }
.programa-card.featured .programa-genre { background: rgba(255,208,0,0.2); color: var(--yellow); }
.programa-time { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: var(--orange); background: rgba(255,140,0,0.08); padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 16px; }
.programa-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,140,0,0.08); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; }
.programa-card h3 { font-family: 'Baloo 2', cursive; font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.programa-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.programa-genre { display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--blue); background: rgba(27,73,101,0.06); padding: 4px 12px; border-radius: var(--radius-full); }

/* LOCUTORES */
.locutores { background: var(--bg); }
.locutores-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.locutor-card { text-align: center; transition: var(--transition); }
.locutor-card:hover { transform: translateY(-8px); }
.locutor-img-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; aspect-ratio: 4/4.5; }
.locutor-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.locutor-card:hover .locutor-img-wrapper img { transform: scale(1.08); }
.locutor-social { position: absolute; bottom: 0; left: 0; width: 100%; display: flex; justify-content: center; gap: 8px; padding: 16px; background: linear-gradient(to top, rgba(230,57,70,0.9), transparent); transform: translateY(100%); transition: var(--transition); }
.locutor-card:hover .locutor-social { transform: translateY(0); }
.locutor-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; transition: var(--transition); }
.locutor-social a:hover { background: var(--yellow); color: var(--blue-dark); }
.locutor-card h3 { font-family: 'Baloo 2', cursive; font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.locutor-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 2px; }
.locutor-program { font-size: 0.78rem; color: var(--text-lighter); }

/* GALERIA */
.galeria { background: var(--bg-alt); }
.galeria-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 16px; }
.galeria-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.galeria-item:hover img { transform: scale(1.1); }
.galeria-overlay { position: absolute; inset: 0; background: rgba(27,73,101,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: var(--transition); }
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay i { color: #fff; font-size: 1.5rem; }
.galeria-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; }
.galeria-tall { grid-row: span 2; }
.galeria-wide { grid-column: span 2; }

/* GENEROS */
.generos { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #2A6F97 100%); position: relative; overflow: hidden; }
.generos-bg { position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(255,208,0,0.08), transparent 50%), radial-gradient(circle at 80% 20%, rgba(230,57,70,0.08), transparent 50%); pointer-events: none; }
.generos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; z-index: 2; }
.genero-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: var(--transition); }
.genero-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); border-color: rgba(255,208,0,0.3); }
.genero-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.genero-card h3 { font-family: 'Baloo 2', cursive; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.genero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* CONTACTO */
.contacto { background: var(--bg); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contacto-info { display: flex; flex-direction: column; gap: 20px; }
.contacto-card { display: flex; gap: 16px; align-items: center; padding: 20px; background: var(--bg-alt); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); }
.contacto-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.contacto-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--red)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.contacto-card h4 { font-family: 'Baloo 2', cursive; font-weight: 700; color: var(--blue-dark); margin-bottom: 2px; font-size: 0.95rem; }
.contacto-card p { font-size: 0.85rem; color: var(--text-light); }
.contacto-social-links { display: flex; gap: 12px; padding-top: 8px; }
.social-link { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; transition: var(--transition); }
.social-link.facebook { background: #1877F2; } .social-link.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-link.youtube { background: #FF0000; } .social-link.tiktok { background: #000; } .social-link.twitter { background: #1DA1F2; }
.social-link:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.contacto-form { background: var(--card-bg); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: 'Quicksand', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--bg); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,140,0,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 16px; border: none; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-family: 'Quicksand', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); box-shadow: 0 6px 20px rgba(230,57,70,0.25); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,57,70,0.35); }

/* FOOTER */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.7); position: relative; padding-top: 60px; }
.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; }
.footer-wave svg { display: block; width: 100%; height: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 70px; width: auto; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-player { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); padding: 8px 8px 8px 12px; }
.footer-play-btn { width: 38px; height: 38px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-size: 0.75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.footer-play-btn:hover { transform: scale(1.1); }
.footer-player-info { display: flex; flex-direction: column; }
.footer-live { font-size: 0.65rem; font-weight: 700; color: var(--red); letter-spacing: 1.5px; }
.footer-freq { font-size: 0.78rem; color: rgba(255,255,255,0.8); font-weight: 600; max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.footer-links-group h4 { font-family: 'Baloo 2', cursive; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-links-group a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* TOAST & BACK TO TOP */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--blue-dark); color: #fff; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); z-index: 9999; opacity: 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: var(--yellow); }
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 25px rgba(230,57,70,0.3); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(230,57,70,0.4); }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .locutores-grid { grid-template-columns: repeat(2,1fr); }
    .generos-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg); flex-direction: column; padding: 100px 32px 32px; gap: 20px; box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: var(--transition); z-index: 998; }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; z-index: 999; }
    .nosotros-grid { grid-template-columns: 1fr; gap: 32px; }
    .nosotros-img { height: 350px; }
    .programas-grid { grid-template-columns: 1fr; }
    .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .galeria-wide { grid-column: span 2; }
    .generos-grid { grid-template-columns: 1fr; }
    .contacto-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-logo { height: 130px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.4rem; }
    .player-main { padding: 22px 20px 20px; max-width: 420px; }
    .player-cover-wrapper { width: 90px; height: 90px; }
    .now-artist { font-size: 0.95rem; }
    .now-song { font-size: 0.78rem; }
    .section { padding: 70px 0; }
}
@media (max-width: 480px) {
    .locutores-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .galeria-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .galeria-tall { grid-row: span 1; }
    .galeria-wide { grid-column: span 1; }
    .hero-logo { height: 100px; }
    .vol-slider { width: 55px; }
    .contacto-form { padding: 24px; }
    .player-cover-section { gap: 14px; }
    .player-cover-wrapper { width: 80px; height: 80px; border-radius: 12px; }
    .player-cover-placeholder { font-size: 1.8rem; }
}


.slider-wrapper {
      position: relative;
      width: 100%;
      max-width: 480px;
      aspect-ratio: 16 / 10;
      border-radius: 12px;
      overflow: hidden;
      box-shadow:
        0 4px 24px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.06);
    }

    .slides-track {
      display: flex;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide.active img {
      transform: scale(1.03);
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #404040;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0;
    }

    .slider-wrapper:hover .slider-btn {
      opacity: 1;
    }

    .slider-btn:hover {
      background: rgba(255,255,255,0.9);
      border-color: rgba(99,102,241,0.3);
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
      color: #171717;
    }

    .slider-btn:active {
      transform: translateY(-50%) scale(0.9);
    }

    .slider-btn.prev { left: 8px; }
    .slider-btn.next { right: 8px; }

    .slider-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 5px;
      align-items: center;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0;
    }

    .dot.active {
      width: 20px;
      border-radius: 8px;
      background: #6366f1;
      box-shadow: 0 0 8px rgba(99,102,241,0.4);
    }

    .dot:hover:not(.active) {
      background: rgba(255,255,255,0.8);
    }

    .progress-bar {
      position: absolute;
      top: 0;
      left: 0;
      height: 2px;
      background: #6366f1;
      z-index: 10;
      transition: width 0.3s linear;
      border-radius: 0 1px 1px 0;
    }

    .slide-counter {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 10;
      font-size: 10px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.35);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 3px 8px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.2);
      letter-spacing: 0.04em;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .slider-wrapper:hover .slide-counter {
      opacity: 1;
    }

    .slide-counter .current-num {
      color: #fff;
      font-weight: 600;
    }

    .pause-indicator {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      z-index: 15;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .pause-indicator.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .thumbnail-strip {
      display: flex;
      gap: 6px;
      margin-top: 12px;
      padding: 0 4px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .thumb {
      width: 48px;
      height: 32px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      opacity: 0.5;
      flex-shrink: 0;
    }

    .thumb.active {
      border-color: #6366f1;
      opacity: 1;
      box-shadow: 0 0 10px rgba(99,102,241,0.2);
    }

    .thumb:hover:not(.active) {
      opacity: 0.75;
      transform: translateY(-1px);
    }

    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-title {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #a3a3a3;
      margin-bottom: 14px;
      text-align: center;
    }

    .keyboard-hint {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 4px;
      color: #a3a3a3;
      font-size: 9px;
    }

    .key-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 4px;
      border: 1px solid rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.6);
      font-size: 8px;
      color: #a3a3a3;
    }

    @media (max-width: 520px) {
      .slider-wrapper {
        max-width: 92vw;
        border-radius: 10px;
        aspect-ratio: 4 / 3;
      }
      .slider-btn {
        width: 28px;
        height: 28px;
        opacity: 1;
      }
      .slider-btn.prev { left: 6px; }
      .slider-btn.next { right: 6px; }
      .thumb { width: 40px; height: 28px; }
      .thumbnail-strip { gap: 4px; }
      .slide-counter { opacity: 1; }
      .keyboard-hint { display: none; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-in {
      animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    .delay-100 { animation-delay: 0.1s; opacity: 0; }
    .delay-200 { animation-delay: 0.2s; opacity: 0; }
    .delay-300 { animation-delay: 0.3s; opacity: 0; }