:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ca31bc4 */.seccion-programacion {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* =========================================
   ESTILO DEL TÍTULO CON MUCHA MÁS VIDA 
   ========================================= */
.titulo-radio-vibrante {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.badge-en-vivo-total {
    background: #1a1a1a;
    color: #ff0055;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    border-radius: 50px;
    border: 2px solid #ff0055;
    text-transform: uppercase;
    animation: neonBlink 2s infinite;
}

.titulo-con-vida {
    font-size: 5rem;
    font-weight: 900;
    margin: 15px 0 0;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 1;
    
    /* Efecto de Texto con Degradado Animado */
    background: linear-gradient(90deg, #ff0055, #ff512f, #dd2476, #ff0055);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
    
    /* Sombra de Neón Suave */
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

.destello-degradado {
    width: 150px;
    height: 10px;
    background: linear-gradient(90deg, #ff0055, #ff512f);
    margin: 10px auto 0;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.5);
    animation: pulseDestello 1.5s infinite;
}

/* ANIMACIONES DEL TÍTULO */

/* 1. Degradado animado dentro del texto */
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* 2. Parpadeo de Neón para el badge superior */
@keyframes neonBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(255, 0, 85, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 5px rgba(255, 0, 85, 0.3); }
}

/* 3. Pulso para la línea decorativa inferior */
@keyframes pulseDestello {
    0% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.1); opacity: 0.7; }
    100% { transform: scaleX(1); opacity: 1; }
}

/* =========================================
   ESTILOS DE TABS Y TARJETAS (SE MANTIENEN) 
   ========================================= */
.tabs-dias { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { background: #f0f0f0; border: none; padding: 12px 25px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: 0.3s; color: #444; text-transform: uppercase;}
.tab-btn.active { background: #1a1a1a; color: white; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.grilla-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.card-p { background: white; padding: 30px 20px; border-radius: 20px; border: 1px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: center; }
.card-p .h { color: #ff0055; font-weight: 800; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.card-p .t { font-size: 1.3rem; font-weight: 800; margin: 0; color: #1a1a1a; }
.card-p.vivo { background: linear-gradient(135deg, #ff0055 0%, #ff512f 100%); border: none; transform: scale(1.05); box-shadow: 0 15px 35px rgba(255, 0, 85, 0.3); }
.card-p.vivo .h, .card-p.vivo .t { color: white !important; }
.live-tag { display: inline-block; margin-top: 15px; background: rgba(255,255,255,0.2); color: white; padding: 5px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: bold; animation: pulseLive 1.5s infinite; }
@keyframes pulseLive { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* Mobile */
@media (max-width: 768px) {
    .titulo-con-vida { font-size: 3rem; letter-spacing: -1px; }
    .grilla-grid { grid-template-columns: 1fr; }
}/* End custom CSS */