* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #071c3f, #0b2a5b);
    color: #f0f0f0;
    padding-top: 150px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #0b2a5b, #1e3c72);
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #DAA520;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    flex-wrap: wrap;
}

.logo {
    height: 45px;
}

.header-titles {
    text-align: center;
    flex: 1;
}

.header-titles h1 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #DAA520, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-titles .sub {
    font-size: 0.7rem;
    color: #ffcc00;
}

.fecha-hora {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 2px solid #DAA520;
    color: #DAA520;
    font-size: 0.7rem;
    font-weight: 600;
}

.redes-header {
    display: flex;
    gap: 0.5rem;
}

.redes-header a {
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.redes-header a:hover {
    color: #DAA520;
}

.global-like {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    padding: 0.2rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    border: 1px solid #DAA520;
}

/* NAVEGACIÓN */
nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #0b2a5b, #071c3f);
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    border-bottom: 2px solid #DAA520;
    z-index: 1000;
    flex-wrap: wrap;
}

nav a {
    color: white;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

nav a:hover {
    background: #DAA520;
    color: #071c3f;
}

.hamburguesa {
    display: none;
    font-size: 1.8rem;
    color: #DAA520;
    cursor: pointer;
    position: fixed;
    top: 75px;
    right: 15px;
    z-index: 1002;
}

@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }
    nav {
        flex-direction: column;
        display: none;
        top: 115px;
    }
    nav.show {
        display: flex;
    }
    .hamburguesa {
        display: block;
    }
    .header-titles h1 {
        font-size: 1.1rem;
    }
}

/* BIENVENIDA */
.bienvenida-personal {
    background: linear-gradient(135deg, #DAA52020, #ffcc0020);
    border-left: 5px solid #DAA520;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin: 0.5rem 0;
    text-align: center;
}

/* RADIO */
.radio-destacado {
    background: linear-gradient(135deg, #0b2a5b, #071c3f);
    border: 2px solid #DAA520;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.radio-destacado audio {
    width: 250px;
    border-radius: 30px;
}

.pulse-red {
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
    }
}

.now-playing {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    text-align: center;
    border-left: 4px solid #DAA520;
}

.btn-wsp-pedir {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* BUSCADOR */
.buscador {
    margin: 0.5rem 0;
    text-align: center;
}

.buscador input {
    width: 60%;
    padding: 0.5rem;
    border-radius: 20px;
    border: 2px solid #DAA520;
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.buscador button {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: #DAA520;
    color: #071c3f;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

/* PUBLICIDAD */
.sponsor-banner {
    background: linear-gradient(135deg, #0b2a5b, #1a3a7a);
    border: 3px solid #DAA520;
    border-radius: 15px;
    padding: 1rem;
    margin: 0.5rem auto;
    text-align: center;
}

.publicidad-destacada {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
}

.publicidad-destacada img {
    max-width: 220px;
    border-radius: 12px;
    border: 2px solid #DAA520;
    background: white;
    padding: 0.2rem;
}

.btn-publicidad {
    display: inline-block;
    background: linear-gradient(145deg, #DAA520, #ffcc00);
    color: #071c3f;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.8rem;
}

.publicidad-modulos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.publicidad-modulo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 0.8rem;
    border: 2px solid #DAA520;
    text-align: center;
}

.publicidad-modulo img {
    max-width: 100%;
    max-height: 100px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

/* LIVE SECTION */
.live-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin: 0.5rem 0;
}

@media (max-width: 992px) {
    .live-section {
        grid-template-columns: 1fr;
    }
}

.live-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 0.8rem;
    border: 2px solid #DAA520;
    text-align: center;
}

.live-card iframe {
    width: 100%;
    height: 150px;
    border-radius: 10px;
}

/* NOTICIAS */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #DAA520;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: #DAA520;
    color: #071c3f;
}

.categoria {
    display: none;
}

.categoria.active-cat {
    display: block;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.noticia-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #DAA520;
    position: relative;
}

.noticia-imagen {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #0a0a0a;
}

.contador-visitas {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #DAA520;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-size: 0.6rem;
    z-index: 2;
}

.noticia-contenido {
    padding: 0.5rem;
}

.etiqueta {
    background: #ff4757;
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
}

.like-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.like-btn.liked {
    color: #ff4757;
}

/* ENLACES EXTERNOS */
.rss-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    border: 2px solid #DAA520;
}

.rss-section h3 {
    color: #DAA520;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #DAA520;
    display: inline-block;
}

.enlaces-noticias {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* SERVICIOS */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.servicio-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #DAA520;
    text-align: center;
}

/* EQUIPO */
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.miembro {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #DAA520;
    text-align: center;
}

.miembro img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #DAA520;
}

.miembro.destacado {
    border: 3px solid #ffcc00;
    background: linear-gradient(135deg, #0b2a5b, #1a3a7a);
}

/* PROGRAMACIÓN */
.programacion {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #DAA520;
    overflow-x: auto;
    margin: 1rem 0;
}

.programacion table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.programacion th,
.programacion td {
    padding: 0.5rem;
    border-bottom: 1px solid #DAA520;
    text-align: center;
}

.programacion th {
    background: #DAA520;
    color: #071c3f;
}

/* CONVOCATORIA */
.convocatoria {
    background: linear-gradient(135deg, #0b2a5b, #1a3a7a);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #DAA520;
    margin: 1rem 0;
}

/* CALENDARIO */
.calendario {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #DAA520;
    margin: 0.5rem 0;
}

.evento {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem;
    border-radius: 6px;
    margin-bottom: 0.3rem;
    border-left: 4px solid #DAA520;
}

/* CARRUSEL */
.carrusel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid #DAA520;
    overflow: hidden;
    margin: 1rem 0;
}

.carrusel-contenedor {
    display: flex;
    transition: transform 0.5s ease;
}

.carrusel-item {
    min-width: 100%;
    text-align: center;
}

.carrusel-item img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
    border-radius: 12px;
}

.carrusel-botones {
    text-align: center;
    margin-top: 0.5rem;
}

.carrusel-botones button {
    background: #DAA520;
    border: none;
    color: #071c3f;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    margin: 0 0.2rem;
}

/* TALENTO LOCAL */
.talento-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    margin: 0.5rem 0;
}

.talento-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.talento-card i {
    font-size: 3rem;
    color: #FE2C55;
}

/* BINGO */
.bingo-anuncio {
    background: linear-gradient(135deg, #0b2a5b, #1a3a7a);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #DAA520;
    margin: 0.5rem 0;
}

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(135deg, #0b2a5b, #1a3a7a);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 2px solid #DAA520;
    margin: 0.5rem 0;
}

.newsletter input {
    padding: 0.4rem;
    width: 60%;
    border-radius: 20px;
    border: none;
}

.newsletter button {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: none;
    background: #DAA520;
    color: #071c3f;
    font-weight: bold;
    cursor: pointer;
}

/* MODALES */
.modal,
.form-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.modal-content,
.form-modal-content {
    background: #071c3f;
    margin: 5% auto;
    padding: 1.5rem;
    border: 3px solid #DAA520;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
}

.close {
    color: #DAA520;
    float: right;
    font-size: 1.8rem;
    cursor: pointer;
}

.form-modal-content input,
.form-modal-content textarea {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 20px;
    border: none;
}

.form-modal-content button {
    background: #DAA520;
    color: #071c3f;
    border: none;
    padding: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #071c3f;
    padding: 1rem;
    text-align: center;
    border-top: 4px solid #DAA520;
    font-size: 0.8rem;
}

footer a {
    color: #DAA520;
    text-decoration: none;
}

.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;
}
/* SECCIÓN DALE PLAY - PODCASTS */
.podcast-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 2px solid #DAA520;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.podcast-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #DAA520;
    transition: transform 0.2s ease;
}

.podcast-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.5);
    border-color: #ffcc00;
}

.podcast-item h3 {
    color: #DAA520;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.podcast-item audio {
    width: 100%;
    margin: 0.8rem 0;
    border-radius: 30px;
    background: #071c3f;
}

.podcast-item p {
    font-size: 0.8rem;
    color: #ddd;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Responsive para celulares */
@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .podcast-item {
        padding: 1rem;
    }
    
    .podcast-item h3 {
        font-size: 1rem;
    }
}
/* BOTÓN WHATSAPP DESTACADO */
.btn-publicidad.whatsapp-btn {
    background: #25D366;
    color: white;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-publicidad.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

/* ESPACIO EXTRA PARA LA SECCIÓN DALE PLAY */
.podcast-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 2px solid #DAA520;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.podcast-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #DAA520;
    transition: transform 0.2s ease;
}

.podcast-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.5);
    border-color: #ffcc00;
}

.podcast-item h3 {
    color: #DAA520;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.podcast-item audio {
    width: 100%;
    margin: 0.8rem 0;
    border-radius: 30px;
    background: #071c3f;
}

.podcast-item p {
    font-size: 0.8rem;
    color: #ddd;
    line-height: 1.4;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .podcast-item {
        padding: 1rem;
    }
    .podcast-item h3 {
        font-size: 1rem;
    }
}