/* ============================================
   KYRIOSIDADES — STYLES COMPLETO
   ============================================ */

/* ====== RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* === FUERZA ABOUT AL LADO === */
@media (min-width: 1025px) {
    .about-grid {
        display: grid !important;
        grid-template-columns: 1fr 1.2fr !important;
        gap: 64px !important;
        align-items: center !important;
    }
    .about-visual {
        order: unset !important;
    }
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #07070e;
    color: #e2e8f0;
    font-weight: 300;
    line-height: 1.625;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== RAINBOW UTILITIES ====== */
.rainbow-text {
    background: linear-gradient(90deg, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff, #ff6b9d);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 4s linear infinite;
}

.rainbow-dot {
    color: #c56bff;
    -webkit-text-fill-color: #c56bff;
}

@keyframes rainbowShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 7, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.nav-logo img {
    display: block;
    height: 28px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: rgba(7, 7, 14, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #fff;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 { width: 500px; height: 500px; background: #ff6b6b; top: -10%; left: -5%; animation: float 20s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: #ffa502; top: 20%; right: -5%; animation: float 25s ease-in-out infinite reverse; }
.orb-3 { width: 450px; height: 450px; background: #ffd93d; bottom: 10%; left: 10%; animation: float 22s ease-in-out infinite 2s; }
.orb-4 { width: 350px; height: 350px; background: #6bff6b; bottom: -5%; right: 15%; animation: float 18s ease-in-out infinite reverse 1s; }
.orb-5 { width: 400px; height: 400px; background: #4ecdc4; top: 50%; left: 40%; animation: float 23s ease-in-out infinite 3s; }
.orb-6 { width: 380px; height: 380px; background: #6b8bff; top: -5%; right: 30%; animation: float 21s ease-in-out infinite 1s; }
.orb-7 { width: 420px; height: 420px; background: #c56bff; bottom: 20%; right: -10%; animation: float 24s ease-in-out infinite 4s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.05); }
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6bff6b;
    box-shadow: 0 0 10px rgba(107, 255, 107, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-rainbow {
    background: linear-gradient(135deg, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff);
    background-size: 300% 300%;
    animation: rainbowShift 4s linear infinite;
    color: #07070e;
    box-shadow: 0 4px 30px rgba(197, 107, 255, 0.3);
}

.btn-rainbow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(197, 107, 255, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}

/* ====== SECTIONS ====== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: #0a0a14;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(197, 107, 255, 0.08);
    border: 1px solid rgba(197, 107, 255, 0.15);
    font-size: 11px;
    font-weight: 600;
    color: #c56bff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* ====== LANGUAGE FILTERS (Landing original) ====== */
.language-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(197, 107, 255, 0.15), rgba(107, 139, 255, 0.15));
    border-color: rgba(197, 107, 255, 0.4);
    color: #fff;
    box-shadow: 0 0 20px rgba(197, 107, 255, 0.15);
}

/* ====== MUSIC GRID ====== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.music-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.music-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.card-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.music-card:hover .card-gradient {
    opacity: 0.9;
    transform: scale(1.05);
}

.grad-1 { background: linear-gradient(135deg, rgba(255,107,107,0.75), rgba(255,165,2,0.75)); }
.grad-2 { background: linear-gradient(135deg, rgba(255,165,2,0.75), rgba(255,217,61,0.75)); }
.grad-3 { background: linear-gradient(135deg, rgba(255,217,61,0.75), rgba(107,255,107,0.75)); }
.grad-4 { background: linear-gradient(135deg, rgba(107,255,107,0.75), rgba(78,205,196,0.75)); }
.grad-5 { background: linear-gradient(135deg, rgba(78,205,196,0.75), rgba(107,139,255,0.75)); }
.grad-6 { background: linear-gradient(135deg, rgba(107,139,255,0.75), rgba(197,107,255,0.75)); }
.grad-7 { background: linear-gradient(135deg, rgba(197,107,255,0.75), rgba(255,107,157,0.75)); }
.grad-8 { background: linear-gradient(135deg, rgba(255,107,157,0.75), rgba(255,107,107,0.75)); }
.grad-9 { background: linear-gradient(135deg, rgba(78,205,196,0.75), rgba(107,139,255,0.75), rgba(197,107,255,0.75)); }

.card-visual::after {
    content: '♪ ♫ ♬ ♪ ♫';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 16px;
    transition: color 0.3s ease;
}

.music-card:hover .card-visual::after {
    color: rgba(255, 255, 255, 0.15);
}

.card-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.music-card:hover .card-play-overlay {
    opacity: 0.5;
}

.card-lang-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

/* ====== REPRODUCTOR DE AUDIO ====== */
.card-audio {
    display: none;
}

.card-player {
    margin-bottom: 16px;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.play-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 1px solid rgba(197, 107, 255, 0.3);
    background: rgba(197, 107, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.play-btn:hover {
    background: rgba(197, 107, 255, 0.25);
    border-color: rgba(197, 107, 255, 0.5);
    transform: scale(1.05);
}

.play-btn.playing {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(197, 107, 255, 0.2));
    border-color: rgba(197, 107, 255, 0.5);
    box-shadow: 0 0 20px rgba(197, 107, 255, 0.25);
}

.ctrl-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.ctrl-btn:active {
    transform: scale(0.95);
}

.player-timeline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-current, .time-total {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    min-width: 35px;
    text-align: center;
}

.time-total {
    color: #475569;
}

.progress-bar {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.2s ease;
}

.progress-bar:hover {
    height: 10px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff);
    background-size: 200% auto;
    animation: rainbowShift 3s linear infinite;
    transition: width 0.1s linear;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.progress-bar:hover .progress-fill::after {
    opacity: 1;
    height: 140%;
}

/* Borde arcoíris (el marco) */
.about-image-border {
    padding: 3px;
    border-radius: 26px;
    background: linear-gradient(135deg, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff, #ff6b9d);
    background-size: 300% auto;
    animation: rainbowShift 4s linear infinite;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Contenedor de la imagen */
.about-image-wrapper {
    width: 100%;
    aspect-ratio: 717 / 400;
    border-radius: 23px;
    overflow: hidden;
    position: relative;
    background: #12121e;
}

/* La imagen en sí */
.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.about-float-card svg {
    color: #c56bff;
}

.float-card-1 { bottom: -15px; left: 20px; animation-delay: 0s; }
.float-card-2 { top: -15px; right: 20px; animation-delay: 2s; }

.about-content .section-tag {
    display: inline-flex;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-verses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.verse-card {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.verse-ref {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #c56bff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.verse-text {
    font-size: 13px;
    color: #94a3b8;
    font-style: italic;
    line-height: 1.6;
}

/* ====== SUPPORT / PAYPAL ====== */
.support-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-rainbow-border {
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff, #ff6b6b);
    background-size: 300% auto;
    animation: rainbowShift 4s linear infinite;
    z-index: 0;
}

.support-content {
    position: relative;
    z-index: 1;
    background: #0c0c18;
    border-radius: 26px;
    margin: 2px;
    padding: 56px 48px;
    text-align: center;
}

.support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.12), rgba(197, 107, 255, 0.12));
    border: 1px solid rgba(255, 165, 2, 0.2);
    color: #ffa502;
    margin-bottom: 24px;
}

.support-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.support-text {
    font-size: 15px;
    color: #94a3b8;
    max-width: 520px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.support-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-bottom: 36px;
}

.paypal-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0070ba, #15446d);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 112, 186, 0.3);
    font-family: 'Inter', sans-serif;
}

.paypal-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 112, 186, 0.5);
}

.paypal-logo {
    width: 28px;
    height: 28px;
}

.paypal-amount {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.support-amounts {
    margin-top: 28px;
}

.support-amounts > span {
    display: block;
    font-size: 12px;
    color: #d7e4f5;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.amount-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(0, 112, 186, 0.15);
    border-color: rgba(0, 112, 186, 0.3);
    color: #fff;
}

.chip-active {
    background: rgba(0, 112, 186, 0.15);
    border-color: rgba(0, 112, 186, 0.4);
    color: #fff;
}

/* ====== VERSE BANNER ====== */
.section-verse {
    padding: 60px 0;
}

.verse-banner {
    text-align: center;
    padding: 48px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.verse-rainbow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff, transparent);
    background-size: 200% auto;
    animation: rainbowShift 4s linear infinite;
    border-radius: 2px;
    margin-bottom: 32px;
}

.verse-rainbow-line:last-child {
    margin-bottom: 0;
    margin-top: 32px;
}

.verse-icon {
    color: #c56bff;
    margin-bottom: 20px;
}

.verse-main {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 400;
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 16px;
    font-style: italic;
}

.verse-cite {
    font-size: 14px;
    color: #c56bff;
    font-weight: 600;
    font-style: normal;
}

/* ====== TARJETAS DE IDIOMA (LANDING) ====== */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.lang-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.lang-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lang-card-visual {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.lang-card-flag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

.lang-card:hover .lang-card-flag {
    transform: translate(-50%, -50%) scale(1.15);
}

.lang-card-count {
    position: absolute;
    bottom: 10px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.lang-card-body {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.lang-card-preview {
    font-size: 12px;
    color: #d7e4f5;
    display: block;
    width: 100%;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-card-arrow {
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lang-card:hover .lang-card-arrow {
    color: #fff;
    transform: translateX(4px);
}

.lang-card-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #64748b;
}

/* ====== HEADER DE PÁGINA DE MÚSICA ====== */
.music-header {
    position: relative;
    padding: 140px 24px 60px;
    text-align: center;
    overflow: hidden;
}

.music-header-bg {
    position: absolute;
    inset: 0;
    transition: background 0.5s ease;
}

.music-header-content {
    position: relative;
    z-index: 1;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.music-header-flag {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.music-header-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.music-header-count {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

/* ====== SWITCHER DE IDIOMA EN NAVBAR ====== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-switch-btn {
    padding: 6px 10px;
    border-radius: 100px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-switch-active {
    background: rgba(197, 107, 255, 0.2) !important;
    box-shadow: 0 0 10px rgba(197, 107, 255, 0.15);
}

/* ====== PÁGINAS LEGALES ====== */
.legal-header {
    position: relative;
    padding: 140px 24px 60px;
    text-align: center;
    overflow: hidden;
}

.legal-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(197, 107, 255, 0.1) 0%, transparent 70%);
}

.legal-header-content {
    position: relative;
    z-index: 1;
}

.legal-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 24px;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #c56bff;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: #6b8bff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #c56bff;
}

/* ====== FOOTER ====== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #050510;
}

.footer-logo-center {
    text-align: center;
    margin-bottom: 32px;
}

.footer-logo-center img {
    max-width: 280px;
    height: auto;
    display: inline-block;
}

.footer-rainbow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff, transparent);
    background-size: 200% auto;
    animation: rainbowShift 4s linear infinite;
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-col {
    text-align: center;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 13px;
    color: #d7e4f5;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #c56bff;
}

.footer-desc {
    font-size: 13px;
    color: #d7e4f5;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .footer-rainbow-line {
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: #a2c4f5;
}

/* ====== BANNER DE COOKIES ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(7, 7, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #6b8bff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #c56bff;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff6b6b, #ffa502, #ffd93d, #6bff6b, #4ecdc4, #6b8bff, #c56bff);
    background-size: 200% auto;
    animation: rainbowShift 3s linear infinite;
    color: #07070e;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(197, 107, 255, 0.3);
}

/* ====== SCROLL REVEAL ====== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.music-card.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.music-card.scroll-reveal:nth-child(2) { transition-delay: 0.08s; }
.music-card.scroll-reveal:nth-child(3) { transition-delay: 0.16s; }
.music-card.scroll-reveal:nth-child(4) { transition-delay: 0.24s; }
.music-card.scroll-reveal:nth-child(5) { transition-delay: 0.32s; }
.music-card.scroll-reveal:nth-child(6) { transition-delay: 0.40s; }
.music-card.scroll-reveal:nth-child(7) { transition-delay: 0.48s; }
.music-card.scroll-reveal:nth-child(8) { transition-delay: 0.56s; }
.music-card.scroll-reveal:nth-child(9) { transition-delay: 0.64s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
        align-items: center;
    }

    .about-visual {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .section {
        padding: 64px 0;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-visual {
        height: 160px;
    }

    .lang-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lang-card-visual {
        height: 110px;
    }

    .lang-card-flag {
        font-size: 42px;
    }

    .music-header {
        padding: 120px 20px 40px;
    }

    .music-header-flag {
        font-size: 48px;
    }

    .support-content {
        padding: 36px 24px;
    }

    .support-title {
        font-size: 24px;
    }

    .paypal-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    .paypal-amount {
        display: none;
    }

    .legal-header {
        padding: 120px 20px 40px;
    }

    .legal-content {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo-center img {
        max-width: 220px;
    }

    .language-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .amount-chips {
        gap: 8px;
    }

    .chip {
        padding: 6px 14px;
        font-size: 12px;
    }

    .lang-grid {
        grid-template-columns: 1fr;
    }
}
/* === FORZAR ABOUT EN MÓVIL === */
@media (max-width: 768px) {
    .about-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center !important;
    }
    .about-visual {
        order: -1 !important;
    }
    .about-image-border {
        max-width: 100% !important;
        width: 100% !important;
    }
    .about-content .section-title {
        text-align: center !important;
    }
    .about-verses {
        grid-template-columns: 1fr !important;
    }
}
/* ====== REPRODUCTOR PRINCIPAL FIJO ====== */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(7, 7, 14, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    transform: translateY(100%); /* Oculto al principio */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-player.active {
    transform: translateY(0); /* Visible */
}

.sticky-player-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sp-info {
    min-width: 180px;
    max-width: 220px;
}

.sp-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sp-btn-main {
    background: rgba(10, 10, 20, 0.85);
    border: 1px solid rgba(197, 107, 255, 0.4);
    color: #fff !important;
    width: 42px;
    height: 42px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.sp-btn-main:hover {
    background: rgba(197, 107, 255, 0.3) !important;
    transform: scale(1.05);
}

.sp-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-time {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    min-width: 38px;
    text-align: center;
}

.sp-time-total {
    color: #475569;
}

/* Barra de progreso del sticky */
.sticky-player .progress-bar {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.sticky-player .progress-bar:hover {
    height: 8px;
}

.sticky-player .progress-fill::after {
    display: none; /* Quitamos el puntito blanco en esta barra */
}

.sp-extra {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-btn-extra {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-btn-extra:hover {
    color: #fff;
}

.sp-btn-extra.active {
    color: #c56bff !important;
}

.sp-volume {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Slider de volumen moderno */
.sp-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}

.sp-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.sp-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* Responsive Sticky Player */
@media (max-width: 768px) {
    .sp-info {
        display: none; /* Ocultamos el título en móvil para ahorrar espacio */
    }
    .sp-extra {
        display: none; /* Ocultamos volumen y loop en móvil */
    }
    .sticky-player {
        padding: 10px 16px;
    }
    .sp-progress {
        gap: 8px;
    }
}
/* Tarjeta como elemento de lista */
.playlist-item.is-playing {
    border-color: rgba(197, 107, 255, 0.4) !important;
    box-shadow: 0 0 30px rgba(197, 107, 255, 0.15);
}

.playlist-item.is-playing .card-play-overlay {
    opacity: 0.8 !important;
}
/* ====== VERSÍCULO DEL DÍA ====== */
.verse-lang-tag {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.verse-main {
    transition: opacity 0.6s ease;
}

.verse-main.fade-out {
    opacity: 0;
}

.verse-main.fade-in {
    opacity: 1;
}