* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --celeste:        #2596ff;
    --celeste-claro:  #6cc1ff;
    --celeste-suave:  #e8f4ff;
    --celeste-osc:    #0a6fd6;
    --azul:           #003c8f;
    --azul-osc:       #002766;
    --gold:           #f5b800;
    --gold-soft:      #ffd95c;
    --blanco:         #ffffff;
    --crema:          #fafcff;
    --texto:          #1a2540;
    --texto2:         #6b7c9c;
    --linea:          #d8e6f5;
}

html, body { background: var(--blanco); }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texto);
    line-height: 1.5;
}

a { color: var(--celeste-osc); }
img { max-width: 100%; }

/* ====== TOPBAR ====== */
.topbar {
    background: var(--celeste);
    padding: 9px 0;
    font-size: 12.5px;
    color: var(--blanco);
    font-weight: 500;
}
.topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: space-between; align-items: center;
}
.topbar-right { display: flex; align-items: center; gap: 24px; }
.share-buttons { display: flex; align-items: center; gap: 12px; }
.share-label { font-size: 11px; opacity: 0.85; }
.share-buttons a, .topbar-social a {
    color: rgba(255,255,255,0.9); text-decoration: none;
    font-size: 13px; transition: opacity .2s;
}
.share-buttons a:hover, .topbar-social a:hover { opacity: 0.7; }
.topbar-social { display: flex; gap: 14px; }

/* ====== HEADER ====== */
.header {
    background: var(--blanco);
    border-bottom: 1px solid var(--linea);
    position: sticky; top: 0; z-index: 50;
    box-shadow: 0 2px 12px rgba(0,30,90,0.06);
}
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header-logo-link {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit;
}
.logo { height: 60px; }
.header-title h1 {
    font-size: 18px; font-weight: 800; color: var(--azul);
    letter-spacing: 0.3px; line-height: 1.1;
}
.header-title p {
    font-size: 11.5px; color: var(--texto2);
    font-weight: 600; letter-spacing: 1px; margin-top: 3px;
}

.menu-toggle {
    display: none; background: none; border: none;
    color: var(--azul); font-size: 22px; cursor: pointer;
}

.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
    color: var(--texto); text-decoration: none;
    font-weight: 600; font-size: 14px;
    padding: 9px 14px; border-radius: 6px;
    transition: background .2s, color .2s;
}
.nav a:hover { background: var(--celeste-suave); color: var(--celeste-osc); }

/* ====== HERO / PLAYER ====== */
.hero {
    background: radial-gradient(ellipse at 30% 0%, var(--celeste-claro) 0%, var(--celeste) 35%, var(--celeste-osc) 100%);
    padding: 60px 0 70px;
    position: relative; overflow: hidden;
    color: var(--blanco);
}
.hero::before, .hero::after {
    content: ''; position: absolute;
    background: rgba(255,255,255,0.12); border-radius: 50%; pointer-events: none;
}
.hero::before { width: 240px; height: 240px; top: -80px; left: -60px; }
.hero::after { width: 320px; height: 320px; bottom: -120px; right: -80px; }

.eq-canvas {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 100%; opacity: 0.2;
    pointer-events: none; z-index: 0;
}

.hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; gap: 60px;
    position: relative; z-index: 1;
}
.hero-left { flex-shrink: 0; }
.hero-right { flex: 1; }

/* ====== DISCO ====== */
.disc-wrap { width: 320px; height: 320px; position: relative; }
.disc {
    width: 320px; height: 320px;
    background: var(--blanco); position: relative;
    animation: spin 4s linear infinite paused;
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(0, 30, 90, 0.35), 0 4px 12px rgba(0, 30, 90, 0.25);
}
.disc.spinning { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }

.disc-grooves {
    position: absolute; inset: 14px; border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px, transparent 3px,
        rgba(0, 60, 143, 0.05) 3px, rgba(0, 60, 143, 0.05) 4px
    );
}
.disc-art {
    position: absolute; inset: 70px; border-radius: 50%;
    overflow: hidden; background: var(--celeste-suave);
}
.disc-art img { width: 100%; height: 100%; object-fit: cover; }
.disc-center {
    position: absolute; width: 22px; height: 22px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--gold); border-radius: 50%;
    box-shadow: 0 0 0 3px var(--blanco);
}

/* ====== TRACK INFO ====== */
.live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--azul);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    margin-bottom: 16px; padding: 6px 14px; border-radius: 20px;
}
.live-dot {
    width: 8px; height: 8px; background: var(--azul);
    display: inline-block; animation: blink 1.2s ease-in-out infinite;
    border-radius: 50%;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.song-title {
    font-size: 38px; font-weight: 800; line-height: 1.15;
    margin-bottom: 18px; color: var(--blanco);
}
.song-meta {
    display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.song-meta span {
    font-size: 14px; color: rgba(255,255,255,0.9);
    display: flex; align-items: center; gap: 6px;
}
.song-meta i { color: var(--gold); }

/* ====== CONTROLES ====== */
.player-controls { display: flex; align-items: center; gap: 28px; }
.btn-play {
    width: 76px; height: 76px;
    background: var(--blanco); color: var(--celeste-osc);
    font-size: 26px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border: none; border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 30, 90, 0.3);
    transition: transform .15s, background .2s, color .2s;
}
.btn-play:hover { background: var(--gold); color: var(--azul); transform: scale(1.05); }
.btn-play:active { transform: scale(0.97); }
.btn-play i { position: relative; left: 2px; }

.vol-group { display: flex; align-items: center; gap: 10px; color: var(--blanco); }
.vol-range {
    -webkit-appearance: none; appearance: none;
    width: 140px; height: 6px;
    background: rgba(255,255,255,0.3); outline: none; cursor: pointer;
    border-radius: 6px;
}
.vol-range::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px;
    background: var(--gold); cursor: pointer; border-radius: 50%;
    border: 3px solid var(--blanco);
}
.vol-range::-moz-range-thumb {
    width: 18px; height: 18px; background: var(--gold);
    cursor: pointer; border-radius: 50%; border: 3px solid var(--blanco);
}

/* ====== VERSICULO ROTATIVO ====== */
.verse-section {
    background: var(--celeste-suave);
    padding: 50px 0;
    border-bottom: 1px solid var(--linea);
}
.verse-inner {
    max-width: 900px; margin: 0 auto; padding: 0 32px;
    text-align: center;
}
.verse-icon {
    font-size: 28px; color: var(--gold);
    margin-bottom: 18px; display: block;
}
.verse-rotator {
    position: relative; min-height: 130px;
}
.verse-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .8s ease;
    pointer-events: none;
}
.verse-slide.active {
    opacity: 1; pointer-events: auto; position: relative;
}
.verse-text {
    font-size: 19px; font-style: italic; line-height: 1.6;
    color: var(--azul); margin-bottom: 14px; font-weight: 400;
}
.verse-cite {
    font-size: 14px; color: var(--celeste-osc);
    font-weight: 700; letter-spacing: 1.5px; font-style: normal;
}
.verse-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 22px;
}
.verse-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--linea); cursor: pointer; transition: background .2s, transform .2s;
}
.verse-dot.active { background: var(--gold); transform: scale(1.3); }
.verse-dot:hover { background: var(--celeste-claro); }

/* ====== TITULOS ====== */
.section-title {
    font-size: 26px; font-weight: 700;
    margin-bottom: 28px; color: var(--azul);
    display: flex; align-items: center; gap: 12px;
}
.section-title::before {
    content: ''; display: inline-block;
    width: 4px; height: 26px;
    background: var(--gold); border-radius: 2px;
}

/* ====== PROGRAMACION ====== */
.prog-section { padding: 56px 0; background: var(--blanco); }
.prog-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.prog-item {
    background: var(--blanco);
    border: 1px solid var(--linea); border-radius: 10px;
    padding: 20px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    border-top: 3px solid var(--gold);
}
.prog-item:hover {
    transform: translateY(-3px);
    border-color: var(--celeste-claro);
    box-shadow: 0 10px 24px rgba(37, 150, 255, 0.15);
}
.prog-hora {
    color: var(--celeste-osc); font-weight: 700;
    font-size: 14px; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px;
}
.prog-nombre {
    font-size: 18px; font-weight: 700; color: var(--azul);
    margin-bottom: 10px;
}
.prog-meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 12px; color: var(--texto2);
}
.prog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.prog-meta i { color: var(--celeste); }

/* ====== HISTORIAL ====== */
.history-section { padding: 56px 0; background: var(--celeste-suave); }
.history-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
.h-item {
    background: var(--blanco);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    border: 1px solid var(--linea); border-radius: 8px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.h-item:hover {
    transform: translateY(-2px); border-color: var(--celeste-claro);
    box-shadow: 0 6px 20px rgba(37, 150, 255, 0.15);
}
.h-num {
    font-size: 22px; font-weight: 800;
    color: var(--celeste); min-width: 32px;
}
.h-name {
    font-size: 14px; line-height: 1.4;
    color: var(--texto); font-weight: 500;
}

/* ====== VIDEOS YT ====== */
.yt-section { padding: 56px 0; background: var(--blanco); }
.yt-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.yt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}
.yt-item {
    background: var(--crema);
    border: 1px solid var(--linea); border-radius: 10px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.yt-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 150, 255, 0.15);
}
.yt-item iframe {
    width: 100%; aspect-ratio: 16/9; display: block; border: 0;
}
.yt-titulo {
    padding: 14px 18px;
    font-weight: 600; color: var(--azul); font-size: 15px;
}

/* ====== APP ====== */
.app-section {
    background: linear-gradient(135deg, var(--azul) 0%, var(--celeste-osc) 60%, var(--celeste) 100%);
    padding: 60px 0;
    color: var(--blanco);
    overflow: hidden;
}
.app-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
    align-items: center;
}
.app-text { padding-right: 20px; }
.app-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px; border-radius: 20px;
    font-size: 12px; letter-spacing: 2px;
    color: var(--gold); font-weight: 700;
    margin-bottom: 16px;
}
.app-text h2 {
    font-size: 40px; font-weight: 800;
    margin-bottom: 14px; line-height: 1.1;
}
.app-text p {
    font-size: 16px; opacity: 0.9; max-width: 480px;
    margin-bottom: 26px;
}
.app-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
}
.app-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: #000; color: var(--blanco);
    padding: 12px 22px; border-radius: 10px;
    text-decoration: none; transition: transform .15s, background .2s;
    border: 1px solid rgba(255,255,255,0.15);
}
.app-btn:hover { transform: translateY(-2px); background: #222; }
.app-btn i { font-size: 32px; }
.app-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.app-btn small { font-size: 10.5px; opacity: 0.75; }
.app-btn strong { font-size: 17px; font-weight: 700; }
.app-soon {
    background: rgba(255,255,255,0.18);
    padding: 12px 22px; border-radius: 10px;
    font-weight: 600; font-style: italic;
}

/* phone mock */
.app-mock { display: flex; justify-content: center; align-items: center; }
.phone {
    width: 220px; height: 440px;
    background: #000;
    border-radius: 32px;
    padding: 12px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    border: 3px solid #1a1a1a;
}
.phone-notch {
    position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 18px;
    background: #000; border-radius: 0 0 14px 14px; z-index: 2;
}
.phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--celeste) 0%, var(--celeste-osc) 100%);
    border-radius: 22px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    color: var(--blanco);
    padding: 30px 16px;
}
.phone-screen img {
    width: 130px; height: 130px;
    border-radius: 50%; object-fit: cover;
    background: var(--blanco); padding: 6px;
    border: 3px solid var(--gold);
    margin-bottom: 16px;
}
.phone-live {
    background: var(--gold); color: var(--azul);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    padding: 4px 12px; border-radius: 12px;
}
.phone-title {
    font-size: 26px; font-weight: 800; margin-top: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ====== FACEBOOK ====== */
.fb-section { padding: 56px 0; background: var(--celeste-suave); }
.fb-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
    align-items: start;
}
.fb-col { min-width: 0; }
.fb-col .fb-page, .fb-col .fb-comments { width: 100%; }

/* ====== FOOTER ====== */
.footer {
    background: var(--azul-osc);
    padding: 44px 0 22px;
    text-align: center; color: rgba(255,255,255,0.85);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-logo { height: 70px; margin-bottom: 14px; }
.footer p {
    font-size: 14px; color: rgba(255,255,255,0.75);
    margin-bottom: 12px; font-style: italic;
}
.footer-links { display: flex; justify-content: center; gap: 18px; margin-bottom: 22px; }
.footer-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.12); border-radius: 50%;
    color: var(--blanco); font-size: 16px; text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
}
.footer-links a:hover { background: var(--gold); color: var(--azul); }
.copy { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 8px; font-style: normal; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--blanco);
        flex-direction: column; gap: 0; padding: 8px;
        border-top: 1px solid var(--linea);
        box-shadow: 0 8px 20px rgba(0,30,90,0.1);
    }
    .nav.open { display: flex; }
    .nav a { padding: 12px 14px; }
    .header-inner { position: relative; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .hero { padding: 40px 0 50px; }
    .hero-inner { flex-direction: column; gap: 30px; text-align: center; }
    .disc-wrap, .disc { width: 240px; height: 240px; }
    .disc-art { inset: 52px; }
    .song-title { font-size: 26px; }
    .song-meta { justify-content: center; }
    .player-controls { justify-content: center; }
    .history-grid, .prog-grid { grid-template-columns: 1fr; }

    .header-inner, .topbar-inner, .hero-inner, .history-inner,
    .prog-inner, .yt-inner, .app-inner, .fb-inner, .footer-inner, .verse-inner {
        padding: 0 18px;
    }

    .header-title h1 { font-size: 16px; }
    .header-title p { font-size: 10.5px; }
    .logo { height: 50px; }

    .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
    .share-buttons { display: none; }
    .verse-text { font-size: 16px; }

    .app-inner { grid-template-columns: 1fr; gap: 30px; }
    .app-text h2 { font-size: 30px; }
    .app-text { padding-right: 0; text-align: center; }
    .app-buttons { justify-content: center; }
    .phone { width: 180px; height: 360px; }
    .phone-screen img { width: 100px; height: 100px; }

    .fb-inner { grid-template-columns: 1fr; }

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