/* 🔝 HEADER FIJO CON GRADIENTE Y ESPACIO AJUSTADO */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/bg_header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 20px; /* ✅ Aquí va el espacio uniforme vertical */
}

.logo img {
    height: 60px;
}

.main-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: #00ffff;
}

.social-icons a {
    background-color: #ffffff20;
    color: #fff;
    margin-left: 10px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #00ffff;
    color: #07178d;
    transform: scale(1.1);
}

/* 💠 AJUSTE PARA QUE NO SE OCUPE EL HEADER FIJO */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f3f4f6;
    padding-top: 80px; /* Espacio para el header */
}

main {
    padding: 0px;
}

section {
    margin-bottom: 40px;
}




/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    body {
        padding-top: 140px;
    }
}




/* 💠 Espacio base para el header fijo */
body {
    padding-top: 100px; /* altura del header fijo sin pauta */
}

/* 📢 Si hay una pauta arriba del header */
body.has-top-pauta {
    padding-top: 220px; /* header (100px) + pauta (120px estimado) */
}

/* Opcional: también puedes agregar transición si deseas una animación suave */
body {
    transition: padding-top 0.3s ease;
}

/* ⬆️ Ajuste si hay pauta arriba del header */
body.has-top-pauta {
    padding-top: 200px; /* o el valor que necesites para dejar espacio suficiente */
}

@media (max-width: 768px) {
    body.has-top-pauta {
        padding-top: 260px;
    }
}





/* Slider */
.slider {
    position: relative;
    margin-bottom: 60px;
}
.slider img {
    width: 100%;
    height: auto;
}
.slide-texto {
    position: absolute;
    bottom: 30px;
    left: 20px;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 8px;
}

/* Noticias */
.noticias {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.noticias h2 {
    margin-bottom: 20px;
}
.noticia {
    margin-bottom: 15px;
}






/* Estilos para el login */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #07178d, #00b4d8);
}

.auth-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.auth-card h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.auth-card label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #07178d;
}

.auth-card input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.auth-card button {
    background: #07178d;
    color: white;
    padding: 10px;
    margin-top: 20px;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

.auth-card button:hover {
    background: #00b4d8;
}


.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #07178d, #00b4d8);
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-card .logo img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.form-container {
    text-align: left;
}






.djs-encabezado {
    width: 100%;
    background: url('/img/fondo-generico.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.djs-encabezado::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.djs-titulo-full {
    background: #07178d;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.djs-titulo-full i {
    font-size: 20px;
}

.djs-seccion {
    background: #fff;
    padding: 40px 0;
}

.contenedor-max {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-content: center;
}

.dj-card {
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 25px 20px;
    transition: transform 0.3s ease;
}

.dj-card:hover {
    transform: translateY(-5px);
}

.dj-foto img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #07178d;
    box-shadow: 0 0 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.dj-info h4 {
    font-size: 1rem;
    color: #07178d;
    margin-bottom: 5px;
    font-weight: 600;
}

.dj-info p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 15px;
    min-height: 40px;
}

.dj-redes {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.dj-redes a {
    color: #07178d;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.dj-redes a:hover {
    color: #000;
}







.player-flotante {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #001b3a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-family: Arial, sans-serif;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.player-left, .player-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.player-left img.logo {
    height: 40px;
    margin: 0 10px;
}

.player-info {
    margin-right: 20px;
}

.player-info strong {
    font-size: 16px;
}

.player-info small {
    display: block;
    font-size: 11px;
    color: #ccc;
}

.live-badge {
    background: red;
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 10px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.player-controls input[type="range"] {
    width: 100px;
    accent-color: #07178d;
}

.social-icons a {
    color: white;
    margin-left: 12px;
    font-size: 18px;
    text-decoration: none;
}

.app-download {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.app-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Loader animado 🔄 */
.loader-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #07178d;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Minimizar ⬇️ */
.btn-minimizar {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.player-flotante.minimizado {
    transform: translateY(85%);
    opacity: 0.5;
}

.player-flotante.minimizado:hover {
    transform: translateY(0%);
    opacity: 1;
}










/* Fondo del encabezado con imagen */
.programa-encabezado {
    width: 100%;
    background: url('/img/fondo-generico.jpg') center center no-repeat;
    background-size: cover;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.programa-encabezado::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Título con ícono */
.programa-titulo {
    background: #07178d;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.programa-seccion {
    background: #fff;
    padding: 50px 0;
}

/* Grid */
.programa-publico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Cards */
.programa-publico-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.programa-publico-card:hover {
    transform: translateY(-5px);
}

.programa-publico-card .img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.programa-publico-card .contenido {
    padding: 20px;
}

.programa-publico-card .contenido h3 {
    color: #07178d;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.programa-publico-card .contenido p {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.badge-vivo {
    display: inline-block;
    background: red;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: bold;
}

.badge-vivo i {
    margin-right: 6px;
}

/* Sin programa */
.sin-programa {
    text-align: center;
    color: #555;
    font-size: 18px;
    padding: 40px 0;
}

/* Contenedor limitado */
.contenedor-max {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.badge-vivo {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #e53935;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}






.programa-publico-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    justify-content: center;
}

.programa-publico-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-width: 340px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.programa-publico-card:hover {
    transform: translateY(-4px);
}

.img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.contenido {
    padding: 16px;
}

.contenido h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #07178d;
}

.contenido p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.dias {
    list-style: none;
    padding: 0;
    font-size: 13px;
}

.dias li {
    margin-bottom: 4px;
}

.programa-publico-card.en-vivo {
    border: 2px solid #e60000;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
}

.badge-vivo {
    display: inline-block;
    margin-top: 8px;
    background: red;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}







.noticias-encabezado {
    width: 100%;
    height: 150px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/fondo-generico.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 40px;
}

.noticias-encabezado .contenido h1 {
    color: white;
    font-size: 42px;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .noticias-encabezado {
        height: 180px;
    }

    .noticias-encabezado .contenido h1 {
        font-size: 28px;
    }
}

.noticias-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}

.noticias-principal {
    flex: 1 1 800px;
    min-width: 0;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.noticia-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.imagen-wrapper {
    position: relative;
}

.imagen-wrapper a {
    display: block;
}

.imagen-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
}

.categoria-etiqueta {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #07178d;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 1;
}

.noticia-card .contenido {
    padding: 15px;
}

.noticia-card .fecha {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.noticia-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.noticia-card h3 a {
    text-decoration: none;
    color: #07178d;
    background: none;
    padding: 0;
    display: inline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.noticia-card h3 a:hover {
    color: #0e2bbf;
}

.noticia-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.noticia-card a {
    text-decoration: none;
}



/* SIDEBAR */
.noticias-sidebar {
    flex: 0 0 300px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .noticias-layout {
        flex-direction: column;
    }

    .noticias-sidebar {
        width: 100%;
        margin-top: 20px;
    }
}





.noticia-detalle-layout {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.noticia-detalle-principal {
    flex: 1 1 800px;
}

.titulo {
    font-size: 28px;
    text-align: justify;
    color: #07178d;
    margin-bottom: 20px;
}

.imagen-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.imagen-wrapper img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 500px;
}

.categoria-etiqueta {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #07178d;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 2;
}

.fecha {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.resumen {
    background: #f1f1f1;
    padding: 15px;
    border-left: 4px solid #07178d;
    margin-bottom: 20px;
    font-size: 16px;
}

.contenido {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.compartir {
    margin-top: 20px;
}

.compartir h4 {
    margin-bottom: 10px;
}

.compartir a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #07178d;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.compartir a:hover {
    background: #07178d;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .noticia-detalle-layout {
        flex-direction: column;
    }

    .noticia-detalle-principal {
        width: 100%;
    }
}



/* 🎞️ Contenedor general del slider Swiper */
.swiper {
    width: 100%;
    height: 450px;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 0;
}

/* 🖼️ Cada slide individual */
.swiper-slide {
    position: relative;
    text-align: center;
}

/* 📷 Imagen del slide adaptada a full */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Escala la imagen sin deformarla, cubriendo todo el contenedor */
    display: block;
    border-radius: 0;
}

/* 🔕 Ocultar el título o caption del slide */
.slide-caption {
    display: none;
}

/* 📱 Responsive ajustes */
@media (max-width: 1024px) {
    .swiper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .swiper {
        height: 200px;
    }
}






.noticias-recientes-grid {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* 🧱 Card general de noticia */
.noticia-mini-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.noticia-mini-card:hover {
    transform: translateY(-5px);
}

/* 🖼️ Imagen destacada */
.noticia-mini-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* 🎯 Etiqueta de categoría */
.imagen-wrapper {
    position: relative;
}

.noticia-mini-card .categoria-etiqueta {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #07178d;
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 5px;
    z-index: 1;
}

/* 📄 Contenido */
.noticia-mini-card .contenido {
    padding: 10px 15px;
}

.noticia-mini-card .contenido h4 {
    font-size: 16px;
    color: #07178d;
    margin: 0;
}

/* 🔗 Estilos de enlace */
.noticia-mini-card .contenido h4 a {
    text-decoration: none;
    color: #07178d;
    font-weight: bold;
    display: inline-block;
    transition: color 0.3s ease;
}

.noticia-mini-card .contenido h4 a:hover {
    color: #0e2bbf;
}

/* 📰 Publicidad */
.noticia-mini-card.publicidad {
    background: #f9f9f9;
    border: 2px dashed #ccc;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    border-radius: 10px;
    min-height: 100%;
    text-align: center;
}

.noticia-mini-card.publicidad h4 {
    color: #444;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.noticia-mini-card.publicidad img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-top: 10px;
}








/* 🔷 Encabezado con fondo */
.top-musical-header {
    background-image: url('/img/fondo-generico.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    margin-bottom: 30px;
    width: 100%;
}

.djs-titulo-full {
    background: rgba(255, 255, 255, 0.92);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    color: #07178d;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* 💻 Distribución principal */
.top-ranking-layout {
    display: flex;
    gap: 30px;
}

/* 🧾 Tabla estilo Spotify */
.top-ranking-lista {
    flex: 1;
    overflow-x: auto;
}

.tabla-top {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.tabla-top th, .tabla-top td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.tabla-top thead {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #07178d;
}

.tabla-top .col-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tabla-top .col-titulo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* 🎬 Botón Ver Video */
.btn-ver-video {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-ver-video i {
    margin-right: 5px;
}

.btn-ver-video:hover {
    background: #cc0000;
}

/* 📌 Sidebar */
.top-sidebar {
    width: 280px;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .top-ranking-layout {
        flex-direction: column;
    }

    .top-sidebar {
        width: 100%;
    }
}









.podcast-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.titulo-seccion {
    font-size: 32px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 30px;
    color: #07178d;
}

.podcast-public-listado {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.podcast-public-item {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 10px;
    transition: background 0.3s;
    gap: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.podcast-public-item:hover {
    background: #e6e9f8;
}

.podcast-thumb {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.podcast-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #07178d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background-color: #0b2bdd;
}

.podcast-meta {
    flex: 1;
}

.podcast-titulo {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
}

.podcast-public-fecha {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.btn-reproducir {
    background-color: #07178d;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-reproducir:hover {
    background-color: #0b2bdd;
}











/* Contenedor que restringe el ancho general a 1200px */
.contenedor-max {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.djs-home-section {
    background-image: url('/img/fondo-generico.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 20px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.djs-home-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Oscurece ligeramente */
    z-index: -1;
}

.djs-titulo {
    align-items: center;
    background: rgba(255, 255, 255, 0.92); /* Blanco minimalista */
    color: #07178d;
    font-size: 26px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    text-align: left;
}

.djs-titulo i {
    margin-right: 10px;
    font-size: 22px;
    color: #0b2bdd;
}

/* Tarjeta de locutor */
.dj-card {
    background: #fff;
    color: #000;
    border-radius: 15px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.dj-card:hover {
    transform: translateY(-5px);
}

/* Foto del locutor */
.dj-foto {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.dj-foto img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #0b2bdd;
}

/* Info locutor */
.dj-info {
    margin-top: 10px;
}

.dj-info h4 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
}

.dj-info p {
    font-size: 14px;
    color: #333;
    min-height: 40px;
}

/* Redes */
.dj-redes {
    margin-top: 10px;
}

.dj-redes a {
    margin: 0 6px;
    font-size: 18px;
    color: #07178d;
    transition: color 0.3s ease;
}

.dj-redes a:hover {
    color: #0b2bdd;
}

/* ✅ Vista GRID cuando hay menos de 4 */
.djs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* ✅ Estilos para Glide.js */
.glide {
    position: relative;
}

.glide__slide {
    display: flex;
    justify-content: center;
}

/* Puntos de paginación */
.glide__bullets {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.glide__bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: 2px solid #07178d;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.glide__bullet:hover,
.glide__bullet.glide__bullet--active {
    background-color: #07178d;
    opacity: 1;
}

/* ✅ Responsivo */
@media (max-width: 768px) {
    .dj-card {
        width: 90%;
    }

    .djs-titulo {
        font-size: 22px;
        padding: 10px 16px;
    }

    .dj-foto img {
        width: 120px;
        height: 120px;
    }
}









.top-musical-section {
    background: #121212;
    padding: 60px 20px;
    color: #fff;
}

.top-musical-section .contenedor-max {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-titulo {
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-titulo i {
    color: #1db954;
    font-size: 22px;
}

.top-musical-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.top-card {
    background: #181818;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 200px;
    position: relative;
    transition: transform 0.3s ease;
}

.top-card:hover {
    transform: translateY(-5px);
}

.top-img-wrapper {
    position: relative;
}

.top-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.top-numero {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background: #1db954;
    padding: 4px 10px;
    border-radius: 8px;
}

.top-info {
    padding: 15px;
}

.top-titulo-cancion {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.top-artista {
    font-size: 14px;
    color: #aaa;
}





/* ENCABEZADO CON FONDO COMO LOS DEMÁS */
.pagina-header {
    background-image: url('/img/fondo-generico.jpg'); /* Ajusta tu fondo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.pagina-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Oscurece un poco la imagen */
    z-index: -1;
}

.seccion-titulo {
    display: inline-block;
    background-color: #fff;
    color: #07178d;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-left: 0;
    text-align: left;
}

.seccion-titulo i {
    margin-right: 10px;
    color: #0b2bdd;
}

/* CONTENIDO PRINCIPAL */
.pagina-contenido {
    padding: 40px 20px;
    background-color: #ffffff;
}

.pagina-contenido .contenido {
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pagina-contenido .contenido h2,
.pagina-contenido .contenido h3 {
    color: #07178d;
    margin-top: 30px;
}

.pagina-contenido .contenido p {
    margin-bottom: 20px;
}





#loader-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 32px;
    height: 90px;
    display: block;
    position: relative;
    border-radius: 50% 50% 0 0;
    border-bottom: 10px solid #FF3D00;
    background-color: #FFF;
    background-image: radial-gradient(ellipse at center, #FFF 34%, #FF3D00 35%, #FF3D00 54%, #FFF 55%), linear-gradient(#FF3D00 10px, transparent 0);
    background-size: 28px 28px;
    background-position: center 20px , center 2px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    animation: animloaderBack 1s linear infinite alternate;
}

.loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0px 15px #FF3D00 inset;
    top: 67px;
}

.loader::after {
    content: '';  
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 34px;
    height: 34px;
    top: 112%;
    background: radial-gradient(ellipse at center, #ffdf00 8%, rgba(249, 62, 0, 0.6) 24%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50% 50% 0;
    background-repeat: no-repeat;
    background-position: -44px -44px;
    background-size: 100px 100px;
    box-shadow: 4px 4px 12px 0px rgba(255, 61, 0, 0.5);
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
}

@keyframes animloaderBack {
    0%, 30%, 70% {
        transform: translateY(0px);
    }
    20%, 40%, 100% {
        transform: translateY(-5px);
    }
}

@keyframes animloader {
    0% {
        box-shadow: 4px 4px 12px 2px rgba(255, 61, 0, 0.75);
        width: 34px;
        height: 34px;
        background-position: -44px -44px;
        background-size: 100px 100px;
    }
    100% {
        box-shadow: 2px 2px 8px 0px rgba(255, 61, 0, 0.5);
        width: 30px;
        height: 28px;
        background-position: -36px -36px;
        background-size: 80px 80px;
    }
}




.site-footer {
    background-color: #07178d;
    color: #fff;
    text-align: center;
    padding: 20px 10px 80px; /* 👈 Tercer valor es el bottom */
    font-size: 14px;
}

.footer-contenedor {
    max-width: 1200px;
    margin: auto;
}

.site-footer a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-dev i {
    margin-right: 5px;
    color: #00ffff;
}