:root {
    --gold: #D4AF37;
    --dark: #000000;
    --light: #F5F5F5;
    --red: #C0392B;
}


* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
}

/* Header Limpio */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 85px;
    background: var(--dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
}

.logo-text { 
    color: white; 
    font-size: 24px; 
}

.logo-text span { 
    color: var(--gold); 
}

/* Menú Horizontal (Escritorio) */
.nav-menu ul { 
    display: flex; 
    list-style: none; 
    gap: 25px; 
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    transition: 0.3s;
}

.nav-menu a:hover { 
    color: var(--gold); 
}

/* Players en Header */
.header-players { 
    display: flex; 
    gap: 15px; 
}

nav a,
.menu-overlay a {
    position: relative;
    text-decoration: none;
}

/* Línea dorada animada */
nav a::after,
.menu-overlay a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover::after,
.menu-overlay a:hover::after {
    width: 100%;
}
.play-btn {
    background: linear-gradient(135deg, var(--gold), #B8860B);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.play-btn.playing {
    background: linear-gradient(135deg, var(--red), #8E1E14);
    color: white;
}

.popup-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}
/* CONTENEDOR PLAYER */
.player-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IFRAME O AUDIO */
.player-section iframe,
.player-section audio {
    width: 100% !important;
    max-width: 350px;
}

@media (max-width: 768px) {

    .player-fixed {
        position: fixed;
        bottom: 10px;
        left: 10px;
        right: 10px;

        width: auto;
        z-index: 9999;
    }

}
/* MÓVIL */
@media (max-width: 768px) {

    .player-section {
        position: relative;
        z-index: 9999;
    }

}
@media (max-width: 768px) {

    .player-section {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

}
@media (max-width: 768px) {

    .header-players {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;

        background: #020c1b;
        padding: 10px;

        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;

        z-index: 99999;
    }

    .play-btn,
    .popup-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    #sonic_title {
        display: none;
    }

}
@media (max-width: 768px) {

    .header-players {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;

        background: #020c1b;
        padding: 10px;

        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;

        z-index: 99999;
    }

    /* BOTONES MÁS PEQUEÑOS */
    .play-btn,
    .popup-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* OCULTAR TEXTO LARGO */
    #sonic_title {
        display: none;
    }

}
.hero-fm {
    height: 90vh;
    background: url("Images/musica.gif") center/cover no-repeat;
    position: relative;
}
/* CONTENEDOR DEL COVER */
.hero-cover {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGEN DEL COVER */
#sonic_art img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;

    /* estilo elegante */
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);

    transition: 0.4s ease;
}

/* HOVER SUAVE */
#sonic_art img:hover {
    transform: scale(1.05);
    border-color: #d4af37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #sonic_art img {
        width: 85px;
        height: 85px;
    }
}
#sonic_art img {
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.6),
        0 0 20px rgba(212,175,55,0.25);
}
#sonic_art img {
    animation: flotar 8s ease-in-out infinite;
}

@keyframes flotar {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}
/* CONTENEDOR DEL TEXTO */
.hero-song {
    margin-top: 12px;
    text-align: center;
    max-width: 300px;
}

/* TEXTO DE CANCIÓN */
#sonic_title {
    font-size: 0.95rem;
    color: #d4af37;
    font-weight: 600;
    line-height: 1.4;

    /* efecto elegante */
    text-shadow: 0 0 10px rgba(0,0,0,0.7);

    /* para textos largos */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* EFECTO SUAVE (fade cuando cambia canción) */
#sonic_title {
    animation: fadeSong 0.8s ease;
}

@keyframes fadeSong {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#sonic_title {
    display: block;
}



@media (max-width: 768px) {

    #sonic_title {
        font-size: 0.8rem;
    }

    .hero-song {
        max-width: 220px;
    }

}
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(2, 12, 27, 0.65),
        rgba(2, 12, 27, 0.35),
        rgba(2, 12, 27, 0.65)
    );
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-contenido {
    text-align: center;
    color: #fff;
}

.hero-contenido h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.hero-live-label {
    color: #e63946;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hero-programa {
    font-size: 1.3rem;
    color: #fff;
}

.hero-live-label::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e63946;
    border-radius: 50%;
    margin-right: 8px;
    animation: parpadeo 1s infinite;
}

@keyframes parpadeo {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-contenido h1 {
        font-size: 2rem;
    }
}

/* Hamburguesa */
.hamburger {
    display: none;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    z-index: 3000;
}

/* --- MÓVIL: Sidebar Lateral (No cubre toda la pantalla) --- */
@media (max-width: 992px) {
    .hamburger { 
        display: block; 
    }

    .header-players { 
        display: none; 
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%; /* Solo cubre el 70% del ancho */
        height: 100vh;
        background: rgba(15, 15, 15, 0.98); /* Un poco más sólido para leer mejor */
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.5); /* Sombra para dar profundidad */
    }
    
    .nav-menu.active { 
        left: 0; 
    }

    .nav-menu ul { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; /* Espacio más compacto */
    }

    .nav-menu a { 
        font-size: 15px; /* Fuente más pequeña como solicitaste */
        font-weight: 500;
        letter-spacing: 2px; /* Más espacio entre letras para estilo premium */
    }
}

/* Secciones de Contenido */
.content-section { 
    padding: 80px 5%; 
    min-height: 400px; 
    text-align: center; 
}

.divider { 
    width: 50px; 
    height: 3px; 
    background: var(--gold); 
    margin: 20px auto; 
}
/* CONTENEDOR GENERAL */
#staff {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #0a192f, #020c1b);
}

/* TEXTO */
.titulo-dorado-centrado {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.descripcion-staff {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* GRID */
.grid-staff {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* CARD */
.card-locutor {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

/* HOVER ELEGANTE */
.card-locutor:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* FOTO */
.foto-marco {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
}

.foto-marco img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* TEXTO CARD */
.card-locutor h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-locutor p {
    color: #aaa;
    font-size: 0.95rem;
}

/* RESPONSIVE EXTRA */
@media (max-width: 600px) {
    .titulo-dorado-centrado {
        font-size: 2rem;
    }
}
#programacion {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #020c1b, #0a192f);
}

/* TEXTO */
.descripcion-programacion {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* GRID */
.grid-parrilla-horarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CARD BASE */
.card-horario {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    transition: 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

/* EFECTO HOVER */
.card-horario:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* TITULO */
.card-horario h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* HORA */
.card-horario span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* BARRA LATERAL PRO */
.card-horario::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255,255,255,0.3);
}

/* COLORES ELEGANTES (NO CHILLANTES) */
.rosa { background: linear-gradient(135deg, #ff7eb3, #ff758c); }
.rojo { background: linear-gradient(135deg, #ff4e50, #c0392b); }
.amarillo { background: linear-gradient(135deg, #f1c40f, #f39c12); color:#222; }
.azul-claro { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.azul-medio { background: linear-gradient(135deg, #4facfe, #00c6ff); }
.verde { background: linear-gradient(135deg, #43e97b, #38f9d7); color:#222; }
.rosa-oscuro { background: linear-gradient(135deg, #c471f5, #fa71cd); }

/* PROGRAMA ACTIVO (para después con JS 👀) */
.card-horario.activo {
    border: 2px solid #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .grid-parrilla-horarios {
        grid-template-columns: 1fr;
    }
}
#programacion .card-horario h3,
#programacion .card-horario span {
    text-align: center;
    display: block;
}
/* SECCIÓN */
.seccion-artistas-inicio {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #0a192f, #020c1b);
}

/* TITULO */
.titulo-seccion-artistas {
    text-align: center;
    color: #d4af37;
    font-size: 2.3rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* GRID */
.contenedor-grid-artistas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* TARJETA */
.tarjeta-artista {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER */
.tarjeta-artista:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* IMAGEN */
.imagen-artista {
    height: 200px;
    overflow: hidden;
}

.imagen-artista img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* ZOOM SUAVE */
.tarjeta-artista:hover img {
    transform: scale(1.08);
}

/* INFO */
.info-artista {
    padding: 20px;
}

/* NOMBRE */
.info-artista h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* TEXTO */
.info-artista p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* EFECTO LÍNEA DORADA */
.tarjeta-artista::after {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: 0.4s;
}

.tarjeta-artista:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .titulo-seccion-artistas {
        font-size: 1.8rem;
    }
}
/* SECCIÓN */
#contacto {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #020c1b, #0a192f);
}

/* GRID 2 COLUMNAS */
#contacto .grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* LADO IZQUIERDO */
#contacto .text-side h2 {
    color: #d4af37;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

#contacto .text-side p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* INFO CONTACTO */
.contacto-info {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #d4af37;
}

.contacto-info p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* LADO DERECHO TARJETA */
.columna-contacto {
    display: flex;
    justify-content: center;
}

.foto-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 350px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s ease;
}

/* HOVER */
.foto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* IMAGEN */
.foto-card img {
    width: 140px !important;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}

/* TEXTO TARJETA */
.foto-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* DETALLE DORADO */
.foto-card::after {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    margin-top: 15px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: 0.4s;
}

.foto-card:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #contacto .grid-2-col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contacto-info {
        border-left: none;
        border-top: 3px solid #d4af37;
    }
}
/* SECCIÓN */
.plataformas-externas {
    background: linear-gradient(to bottom, #0a192f, #020c1b);
    padding: 70px 20px;
    text-align: center;
    border-top: 2px solid #d4af37;
}

/* TITULO */
.plataformas-externas h2 {
    color: #d4af37;
    margin-bottom: 40px;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* GRID */
.grid-plataformas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

/* TARJETAS */
.plataforma {
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER */
.plataforma:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* IMAGEN */
.plataforma img {
    max-height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* TEXTO */
.plataforma span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* APP DESTACADA */
.app-destacada {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(255,255,255,0.05));
    border: 1px solid rgba(212,175,55,0.5);
}

/* TEXTO APP */
.app-destacada span {
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 1px;
}

/* IMAGEN APP */
.app-destacada img {
    height: 60px;
    border-radius: 10px;
}

/* EFECTO PREMIUM */
.plataforma::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    margin-top: 10px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: 0.3s;
}

.plataforma:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .plataformas-externas h2 {
        font-size: 1.4rem;
    }
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 22px;
    border-radius: 30px;

    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 0.9rem;

    text-decoration: none;

    /* 👇 CLAVE PARA QUE NO SE ESTIRE */
    width: auto;
    max-width: 260px;

    margin-top: 15px;
    transition: 0.3s ease;
}

/* CENTRARLO BONITO */
.footer-container {
    justify-items: start;
}

@media (max-width: 768px) {
    .btn-whatsapp {
        margin: 20px auto;
    }
}
/* FOOTER GENERAL */
.footer-fm {
    background: linear-gradient(to top, #020c1b, #0a192f);
    padding: 60px 20px 30px;
    color: #ccc;
    font-family: inherit;
}

/* GRID */
.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* IZQUIERDA */
.footer-info p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-info span {
    color: #d4af37;
    font-weight: bold;
}

.footer-line {
    width: 60px;
    height: 3px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.legacy {
    font-style: italic;
    opacity: 0.8;
}

.location {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* DERECHA */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

/* FACEBOOK */
.fb-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* CÍRCULO */
.circulo-fb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 1.5rem;
    color: #020c1b; /* CONTRASTE */
}

/* TEXTO */
.fb-link span {
    color: #d4af37;
    font-size: 0.9rem;
}

/* LEGALES */
.footer-legal {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-legal a {
    margin: 0 10px;
    text-decoration: none;
    color: #ccc;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        align-items: center;
    }
}
.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    /* 👇 CLAVE */
    align-items: start;
}
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;

    /* 👇 ESTO ARREGLA EL HUECO */
    align-items: flex-end;
}
.btn-whatsapp {
    width: auto;
    min-width: 220px;
    text-align: center;
}

.fb-link {
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        align-items: center;
    }

    .fb-link {
        justify-content: center;
    }
}
/* GRID 3 COLUMNAS */
.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

/* IZQUIERDA */
.footer-info {
    text-align: left;
}

.footer-info span {
    color: #d4af37;
    font-weight: bold;
}

/* CENTRO (LEGALES) */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-legal a {
    text-decoration: none;
    color: #aaa;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* DERECHA */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

/* BOTÓN */
.btn-whatsapp {
    padding: 12px 22px;
    border-radius: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
}

/* FACEBOOK */
.fb-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.circulo-fb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #020c1b;
}

.fb-link span {
    color: #d4af37;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        align-items: center;
    }
}
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* 🔥 ESTA ES LA CLAVE */
    .footer-info {
        text-align: center;
        margin: 0 auto;
    }

    /* CENTRAR LA LÍNEA DORADA */
    .footer-line {
        margin: 0 auto 15px;
    }

    /* ACCIONES CENTRADAS */
    .footer-actions {
        align-items: center;
    }

    .fb-link {
        justify-content: center;
    }
}
/* SECCIÓN */
.seccion-nosotros {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #0a192f, #020c1b);
    color: #fff;
}

/* CONTENEDOR */
.contenedor-nosotros {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* TEXTO */
.nosotros-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nosotros-texto h2 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 2rem;
}

.nosotros-texto p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* GALERÍA */
.nosotros-galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

/* CAJAS DE IMAGEN */
.img-box {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* IMÁGENES */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* EFECTO HOVER */
.img-box:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contenedor-nosotros {
        grid-template-columns: 1fr;
    }

    .nosotros-galeria {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {

    .contenedor-nosotros {
        grid-template-columns: 1fr;
    }

    /* 🔥 CAMBIO CLAVE */
    .nosotros-galeria {
        grid-template-columns: 1fr; /* una sola columna */
        grid-template-rows: auto;
    }

    .img-box {
        height: 200px; /* opcional para mantener proporción */
    }
}
/* SECCIÓN */
.seccion-inicio-pro {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #0a192f, #020c1b);
}

/* GRID PRINCIPAL */
.contenedor-inicio {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* TEXTO */
.inicio-texto h1 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.inicio-texto p {
    color: #ccc;
    line-height: 1.6;
}

/* GALERÍA */
.inicio-galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* TARJETAS */
.card-programa {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.card-programa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* IMÁGENES */
.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.img-box:hover img {
    transform: scale(1.05);
}

/* BADGES */
.badge-live,
.badge-next {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.badge-live {
    background: #e63946;
    color: #fff;
    animation: pulse 1.5s infinite;
}

.badge-next {
    background: #d4af37;
    color: #000;
}

/* TEXTO DE TARJETA */
.info-card {
    padding: 12px;
    font-size: 0.85rem;
    color: #ccc;
}

.info-card strong {
    color: #d4af37;
    display: block;
    margin-bottom: 3px;
}

/* ANIMACIÓN */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .contenedor-inicio {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .inicio-galeria {
        grid-template-columns: 1fr;
    }
}

/* INICIO */
#inicio .inicio-texto,
#inicio .inicio-texto h1,
#inicio .inicio-texto h2,
#inicio .inicio-texto p {
    text-align: center;
}

/* NOSOTROS */
#nosotros .nosotros-texto,
#nosotros .nosotros-texto h2,
#nosotros .nosotros-texto p {
    text-align: center;
}
/* Estilos del botón scroll */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #800020; /* Borgoña */
  color: #fff;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #d4af37; /* Dorado suave */
}
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #800020; /* Borgoña */
  color: #fff;
  text-align: center;
  padding: 15px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
}

#cookieBanner p {
  margin: 0 0 10px 0;
  font-size: 14px;
}

#acceptCookies {
  background-color: #d4af37; /* Dorado suave */
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#acceptCookies:hover {
  background-color: #fff;
  color: #800020;
}
/* INICIO */
#inicio .inicio-texto {
    text-align: center;
}

#inicio .inicio-texto p {
    text-align: left;
}

/* NOSOTROS */
#nosotros .nosotros-texto {
    text-align: center;
}

#nosotros .nosotros-texto p {
    text-align: left;
}
#inicio .inicio-texto p,
#nosotros .nosotros-texto p {
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}
.hero-live-label {
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-weight: 700;

    color: #ff1f3d; /* rojo más intenso */

    text-shadow: 
        0 0 8px rgba(255, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.5);
}
.hero-live-label::before {
    width: 10px;
    height: 10px;
    background: #ff1f3d;

    box-shadow: 0 0 10px rgba(255, 0, 0, 0.9);
}
.hero-live-label {
    color: #ff0033;

    text-shadow:
        0 0 5px #ff0033,
        0 0 10px #ff0033,
        0 0 20px rgba(255, 0, 0, 0.6);
}
/* =========================
   ADS SECTION
========================= */

.ads-section {
    margin: 60px auto;
    max-width: 1200px;
    width: 95%;
    text-align: center;
}

/* TÍTULO */
.ads-title {
    color: #063c7a;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 1;
}

/* CONTENEDOR */
.ads-container {
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(6px);
}

/* SLOT DEL ANUNCIO */
.ad-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

/* ADSENSE */
.adsbygoogle {
    width: 100% !important;
}

/* HOVER SUTIL */
.ads-container:hover {
    border-color: rgba(212,175,55,0.3);
    transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .ads-section {
        margin: 40px auto;
    }

    .ads-container {
        padding: 15px;
    }
}
.ads-container::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 15px;
    opacity: 0.6;
}
.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 15px;
    text-transform: none; /* 👈 ya no todo en mayúsculas */
}
.nav-menu ul {
    gap: 25px; /* separa mejor los items */
}
.nav-menu a {
    position: relative;
    color: #fff;
    transition: 0.3s;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
}
@media (max-width: 768px) {

    .hero-contenido {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* 🔥 centra todo el eje */
    }

    .hero-song {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    #sonic_title {
        width: 100%;
        text-align: center !important;
        margin: 10px auto;
    }

    #sonic_title::after {
        display: block;
        width: 100%;
        text-align: center !important;
    }
}
@media (max-width: 768px) {
    #sonic_title {
        max-width: 90%;
    }
}