/* Importar fuente Roboto de Google Fonts con font-display optimizado */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800&display=swap');

/* Importar archivos CSS específicos */
@import url('tv-player.css');

/* Definición de fuente Roboto con font-display optimizado */
@font-face {
    font-family: 'Roboto';
    font-display: swap;
}

/* Estilos para navegación cruzada */
.cross-navigation {
    border-top: 1px solid #e9ecef !important;
}

.cross-navigation h5 {
    color: #495057;
    font-weight: 600;
}

.cross-navigation .text-muted {
    font-size: 0.95rem;
}

.cross-navigation .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cross-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cross-navigation .btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.cross-navigation .btn-outline-success:hover {
    background-color: #198754;
    border-color: #198754;
}

/* Responsive para navegación cruzada */
@media (max-width: 768px) {
    .cross-navigation .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ===== VARIABLES CSS ===== */
:root {
    /* ============================================
     * NUEVA PALETA DE COLORES - IDENTIDAD ACTUALIZADA
     * ============================================
     * Colores principales:
     * - Verde principal: #094724 (para elementos principales y navegación)
     * - Naranja secundario: #ff6b35 (reemplaza amarillo, combina con verde)
     * - Verde muy oscuro: #032d14 (para contrastes y profundidad)
     * - Verde brillante: #08d129 (para acentos y elementos destacados)
     * ============================================ */
     
     /* Paleta de colores principal - Nueva Identidad */
     --primary-green: #094724;      /* Verde principal */
     --secondary-orange: #ff8800;   /* Naranja secundario vibrante */
     --harmonic-dark-green: #032d14; /* Verde muy oscuro armónico */
     --accent-bright-green: #08d129; /* Verde brillante para acentos */
     
     /* Colores de acento adicionales */
     --accent-orange: #ff8c00;      /* Naranja alternativo */
     --accent-orange-light: #ff9933;
     --accent-orange-dark: #cc5e00;
     
         /* Colores base */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8f9fb;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
     
     /* Gradientes principales */
     --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-orange));
     --gradient-secondary: linear-gradient(135deg, var(--secondary-orange), var(--harmonic-dark-green));
     --gradient-tertiary: linear-gradient(135deg, var(--primary-green), var(--harmonic-dark-green));
     --gradient-accent: linear-gradient(135deg, var(--primary-green), var(--accent-bright-green));
     --gradient-full: linear-gradient(135deg, var(--primary-green), var(--secondary-orange), var(--harmonic-dark-green));
     
     /* Gradientes con transparencia */
     --gradient-overlay: linear-gradient(135deg, rgba(9, 71, 36, 0.9), rgba(255, 117, 0, 0.9));
     --gradient-overlay-dark-green: linear-gradient(135deg, rgba(9, 71, 36, 0.8), rgba(3, 45, 20, 0.8));
     --gradient-overlay-accent: linear-gradient(135deg, rgba(9, 71, 36, 0.9), rgba(8, 209, 41, 0.8));
     --gradient-overlay-full: linear-gradient(135deg, rgba(9, 71, 36, 0.9), rgba(255, 117, 0, 0.7), rgba(3, 45, 20, 0.8));
     
     /* Variaciones de colores para estados */
     --primary-green-light: #0d5c2e;
     --primary-green-dark: #06321a;
     --secondary-orange-light: #ff9933;
     --secondary-orange-dark: #cc5e00;
     --accent-bright-green-light: #2dd946;
     --accent-bright-green-dark: #06b022;
     --harmonic-dark-green-light: #054929;
     --harmonic-dark-green-dark: #021b0d;
     
     /* Sombras */
     --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
     --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
     --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
     
     /* Tipografía */
     --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     --font-family-headings: 'Roboto', sans-serif;
     --font-family-menu: 'Roboto', sans-serif;
     --font-family-header: 'Roboto', sans-serif;
     --font-weight-light: 300;
     --font-weight-normal: 400;
     --font-weight-medium: 500;
     --font-weight-semibold: 600;
     --font-weight-bold: 700;
     --font-weight-extrabold: 800;
     
     /* Transiciones */
     --transition-fast: 0.15s ease-in-out;
     --transition-normal: 0.3s ease-in-out;
     --transition-slow: 0.5s ease-in-out;
     
     /* Espaciado */
     --header-height: 140px;
     --nav-height: 70px;
}

/* ===== RESET Y BASE ===== */
* {
    box-sizing: border-box;
}

/* Eliminar líneas de enfoque y selección */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
a:focus,
input:focus:not(.search-input) {
    outline: none !important;
    box-shadow: none !important;
}

/* Eliminar estilos de Bootstrap que pueden causar líneas azules */
.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.mobile-menu-toggle:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Prevenir FOUT (Flash of Unstyled Text) especialmente en el menú */
/* Reglas consolidadas para .menu-link - evitar saltos y efectos visuales */

/* Mantener espacio del menú durante la carga */
html:not(.fonts-loaded) .main-menu {
    min-height: 70px;
}

/* Optimización adicional para logos y títulos */
/* Reglas de opacidad removidas para carga inmediata del logo */

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
}

.lead {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

/* ===== HEADER SIMPLE ===== */

/* Sección del Logo */
.logo-section {
    background: #001b18;
    background-image: url('../img/banner-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1.2rem 0;
    border-bottom: 3px solid var(--secondary-orange);
    position: relative;
    z-index: 999;
    font-family: var(--font-family-header);
}

/* Overlay de color eliminado para mostrar la imagen sin filtro */

.logo-section .container-fluid {
    position: relative;
    z-index: 2;
}

.logo-section-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition-normal);
}

.logo-container:hover {
    /* Animación removida */
}

.main-logo {
    width: auto;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition: var(--transition-normal);
}

/* Texto del brand sin card */
.header-brand-text {
    position: absolute;
    left: calc(50% + 280px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    cursor: pointer;
}

.header-brand-text:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-50%) scale(1.05);
}

.header-brand-text:hover .brand-icon {
    color: white;
}

.header-brand-text:hover .brand-title,
.header-brand-text:hover .brand-subtitle {
    color: var(--secondary-orange);
}



.brand-icon {
    font-size: 2rem;
    color: var(--secondary-orange);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Responsive para el header */
@media (max-width: 991.98px) {
    .main-logo {
        width: 400px;
        max-height: 100px;
    }
    
    .header-brand-text {
        left: calc(50% + 220px);
    }
    
    .brand-icon {
        font-size: 1.8rem;
    }
    
    .brand-title {
        font-size: 0.9rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .logo-section-wrapper {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
        padding: 1rem 0;
    }
    
    .header-brand-text {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        justify-content: center;
    }
    
    .header-brand-text:hover {
        transform: scale(1.05);
    }
    
    .main-logo {
        width: 350px;
        max-height: 90px;
    }
    
    .brand-icon {
        font-size: 1.6rem;
    }
    
    .brand-title {
        font-size: 0.85rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 575.98px) {
    .main-logo {
        width: 280px;
        max-height: 70px;
    }
    
    .logo-section {
        padding: 1rem 0;
    }
    
    .logo-section-wrapper {
        padding: 0.8rem 0;
    }
    
    .header-brand-text {
        position: static;
        transform: none;
        gap: 0.6rem;
        justify-content: center;
    }
    
    .header-brand-text:hover {
        transform: scale(1.05);
    }
    
    .brand-icon {
        font-size: 1.4rem;
    }
    
    .brand-title {
        font-size: 0.8rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
}

/* ===== SECCIÓN RRSS EVO MORALES ===== */
.evo-social-section {
    padding: 4rem 0;
    background: #2c2c2c;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
}

.evo-social-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.evo-social-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--primary-green));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Cards de redes sociales */
.social-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-iframe-container {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.social-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Iframes de redes sociales */
.social-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 15px 15px;
}

/* Estilos para TikTok embed oficial */
.tiktok-embed {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.tiktok-embed section {
    padding: 1rem;
    text-align: center;
}

.tiktok-embed section a {
    color: #ff0050;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.tiktok-embed section a:hover {
    text-decoration: underline;
}

/* Estilos específicos para TikTok */
.tiktok-embed-container {
    height: 400px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.tiktok-follow-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tiktok-follow-btn:hover {
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.tiktok-follow-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tiktok-follow-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

.tiktok-follow-btn small {
    opacity: 0.9;
    font-size: 0.9rem;
}

.tiktok-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    text-align: center;
}

.tiktok-placeholder i {
    font-size: 3rem;
    color: #ff0050;
    margin-bottom: 1rem;
}

/* Estilos específicos para Twitter */
.twitter-embed-container {
    height: 400px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.twitter-follow-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.twitter-follow-btn:hover {
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.twitter-follow-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.twitter-follow-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

.twitter-follow-btn small {
    opacity: 0.9;
    font-size: 0.9rem;
}

.twitter-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    text-align: center;
}

.twitter-placeholder i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}



/* Responsive */
@media (max-width: 991.98px) {
    .evo-social-title {
        font-size: 2rem;
    }
    
    .social-card {
        height: 550px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .evo-social-section {
        padding: 3rem 0;
    }
    
    .evo-social-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .social-card {
        height: 500px;
        margin-bottom: 1.5rem;
    }
}

/* ===== NAVEGACIÓN PRINCIPAL - SITIO DE NOTICIAS Y TV ===== */

/* Header de navegación - SIEMPRE FIJO */
.main-navigation {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-bottom: 3px solid var(--primary-green);
    position: sticky;
    top: 0;
    z-index: 1050;
    min-height: 60px;
    font-family: var(--font-family-header);
    width: 100%;
    will-change: transform;
}

/* Barra de información superior */
.news-info-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.4rem 0;
    font-size: 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: var(--font-family-header);
}

.news-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breaking-news-ticker {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    overflow: hidden;
    max-width: calc(100% - 280px); /* Más espacio para datos del lado derecho */
    margin-right: 1.5rem; /* Separación adicional */
}

.breaking-label {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 1.2rem;
    display: flex;
    align-items: center;
    margin-left: 0.5rem; /* Espacio entre label y contenido */
}

/* Asegurar que el contenido sea visible desde el inicio */
.ticker-container::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    z-index: 3;
    pointer-events: none;
}

.ticker-container::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(270deg, var(--primary-green), transparent);
    z-index: 3;
    pointer-events: none;
}

.ticker-text {
    font-weight: 500;
    white-space: nowrap;
    animation: scroll-ticker-immediate 90s linear infinite;
    display: inline-block;
    animation-delay: 0s; /* Empezar inmediatamente */
    padding-right: 2rem; /* Espacio al final para transición suave */
    transform: translateX(0%); /* Posición inicial completamente visible */
    opacity: 1;
    visibility: visible;
    animation-fill-mode: none; /* Sin retención de estados para evitar pausas */
    animation-play-state: running; /* Asegurar que esté funcionando */
    will-change: transform; /* Optimización de performance */
}

.ticker-text a {
    color: inherit;
    text-decoration: none;
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.ticker-text a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--secondary-orange);
    text-decoration: none;
    transform: scale(1.02);
}

.ticker-separator {
    color: var(--secondary-orange);
    font-weight: 700;
    margin: 0 0.5rem;
}

/* Animación principal del ticker - inmediata y consistente */
@keyframes scroll-ticker-immediate {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    100% { transform: translateX(-100%); }
}

/* Efecto de pausa visible en el ticker - solo al hacer hover */
.ticker-container:hover .ticker-text {
    animation-play-state: paused !important;
}

.ticker-container:hover::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(9, 71, 36, 0.1) 0%, 
        rgba(9, 71, 36, 0.05) 50%, 
        rgba(9, 71, 36, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Asegurar que el ticker esté siempre corriendo cuando no hay hover */
.ticker-container:not(:hover) .ticker-text {
    animation-play-state: running !important;
}

.header-info-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 1.5rem;
    min-width: 200px;
}

.current-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.current-date {
    display: flex;
    align-items: center;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.weather-info .location {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-left: 0.2rem;
}

.separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 0.8rem;
}

#temperature {
    font-weight: 700;
    color: var(--secondary-orange);
}

/* Estilos modernos para iconos de redes sociales específicos del header */
.header-social-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-social-btn:hover {
    color: var(--white);
    transform: scale(1.15) translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-social-btn[title="Facebook"]:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    border-color: #1877f2;
}

.header-social-btn[title="YouTube"]:hover {
    background: linear-gradient(135deg, #ff0000, #ff4444);
    border-color: #ff0000;
}

.header-social-btn[title="TikTok"]:hover {
    background: linear-gradient(135deg, #000000, #333333);
    border-color: #000000;
}

.header-social-btn[title="Twitter"]:hover {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
    border-color: #1da1f2;
}

.header-social-btn[title="Telegram"]:hover {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    border-color: #0088cc;
}

.header-social-btn i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: var(--white);
}

.header-social-btn:hover i {
    transform: scale(1.1);
    color: var(--white);
}

/* Responsive para barra de información */
@media (max-width: 768px) {
    .news-info-content {
        padding: 0 0.5rem;
    }
    
    .breaking-news-ticker {
        max-width: calc(100% - 200px);
        margin-right: 1rem;
        gap: 0.6rem;
    }
    
    .ticker-container {
        margin-left: 0.3rem;
    }
    
    .ticker-text {
        font-size: 0.7rem;
        padding-right: 1.5rem;
    }
    
    .ticker-text a {
        padding: 0.05rem 0.1rem;
    }
    
    .header-info-right {
        gap: 0.3rem;
        font-size: 0.7rem;
        min-width: 200px;
    }
    
    .weather-info .location {
        display: none;
    }
    
    .header-social-icons {
        gap: 0.3rem;
    }
    
    .header-social-btn {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .header-social-btn i {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .news-info-bar {
        padding: 0.3rem 0;
        font-size: 0.7rem;
    }
    
    .breaking-news-ticker {
        max-width: calc(100% - 140px);
        margin-right: 0.8rem;
        gap: 0.4rem;
    }
    
    .ticker-container {
        margin-left: 0.2rem;
    }
    
    .breaking-label {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
    
    .ticker-text {
        font-size: 0.65rem;
        padding-right: 1rem;
    }
    
    .ticker-text a {
        padding: 0.05rem 0.05rem;
    }
    
    .ticker-separator {
        margin: 0 0.3rem;
        font-size: 0.8rem;
    }
    
    .header-info-right {
        gap: 0.25rem;
        font-size: 0.65rem;
        min-width: 150px;
    }
    
    .current-date {
        display: none;
    }
    
    .separator:first-of-type {
        display: none;
    }
    
    .header-social-icons {
        gap: 0.25rem;
    }
    
    .header-social-btn {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    
    .header-social-btn i {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .breaking-news-ticker {
        max-width: calc(100% - 110px);
        margin-right: 0.5rem;
        gap: 0.3rem;
    }
    
    .ticker-container {
        margin-left: 0.1rem;
    }
    
    .breaking-label {
        font-size: 0.55rem;
        padding: 0.05rem 0.25rem;
    }
    
    .ticker-text {
        font-size: 0.6rem;
        padding-right: 0.8rem;
    }
    
    .header-info-right {
        gap: 0.2rem;
        font-size: 0.6rem;
        min-width: 120px;
    }
    
    .weather-info {
        display: none;
    }
    
    .separator:last-of-type {
        display: none;
    }
    
    .header-social-icons {
        gap: 0.2rem;
    }
    
    .header-social-btn {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
    
    .header-social-btn i {
        font-size: 0.65rem;
    }
}

.nav-wrapper {
    padding: 0 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MENÚ PROFESIONAL DE NOTICIAS ===== */
.professional-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
    position: relative;
}

/* Botón hamburguesa (visible en todas las resoluciones) */
.menu-toggle {
    display: flex;
    flex-direction: column;
        justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    outline: none !important;
    box-shadow: none !important;
}

.menu-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-toggle:hover .hamburger-line {
    background: var(--primary-green);
}

/* Menú principal (oculto en móviles) */
.main-menu {
    flex: 1;
        display: flex;
        justify-content: center;
}

.menu-list {
    display: flex;
        align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.menu-item {
    position: relative;
}

/* Sección de acciones del menú (buscador + señal en vivo) */
.menu-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Estilos de enlaces del menú - Diseño limpio sin botones */
.menu-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    color: var(--gray-800);
    text-decoration: none;
    font-family: var(--font-family-header);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.menu-link {
    position: relative;
}

.menu-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}



.menu-link.active {
    color: var(--secondary-orange);
    font-weight: 700;
    position: relative;
}

/* Línea de selección eliminada */

/* Separadores entre elementos del menú */
.menu-item:not(:last-child)::after {
    content: '•';
    color: var(--gray-400);
    margin-left: 0.8rem;
    font-weight: 400;
    position: absolute;
    right: -0.4rem;
    top: 50%;
    transform: translateY(-50%);
}

/* La clase news-primary ahora solo es un identificador - los estilos vienen de .active */



/* Buscador */
.search-section {
    flex-shrink: 0;
    margin-left: 1rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input {
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--gray-800);
    width: 200px;
    background: var(--white);
    transition: all 0.3s ease;
    font-family: var(--font-family-header);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(22, 83, 192, 0.25);
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--gradient-tertiary);
    transform: scale(1.05);
}

/* Botón EN VIVO - Diseño Premium para TV/Noticias */
.live-tv-section {
    flex-shrink: 0;
    position: relative;
}

.live-tv-btn {
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-family-menu);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    min-width: 120px;
    justify-content: center;
}

/* Efecto de pulso de fondo */
.live-tv-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    animation: pulse-bg 2s ease-in-out infinite;
}

/* Indicador de LIVE animado */
.live-tv-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--accent-bright-green);
    border-radius: 50%;
    animation: live-indicator 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px var(--accent-bright-green);
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes live-indicator {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.live-tv-btn:hover {
    background: linear-gradient(135deg, #ff3333, #ff0000);
    color: white;
    text-decoration: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.live-tv-btn .signal-icon {
    animation: live-blink 1s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

/* Estados especiales del botón EN VIVO */
.live-tv-btn.active {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
}

.live-tv-btn.offline {
    background: linear-gradient(135deg, #666666, #444444);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}



/* ===== MENÚ LATERAL UNIFICADO ===== */

/* Overlay del menú lateral */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menú lateral (funciona en todas las resoluciones) */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1100;
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

/* Header del menú lateral */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gradient-primary);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-family-headings);
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Lista del menú lateral */
.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-item {
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-family: var(--font-family-menu);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: var(--gray-50);
    color: var(--primary-green);
    text-decoration: none;
}

.sidebar-link.active {
    background: rgba(22, 83, 192, 0.1);
    color: var(--primary-green);
    border-right: 3px solid var(--primary-green);
}

.sidebar-link i {
    font-size: 1.1rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
    width: 20px;
    text-align: center;
}

.sidebar-link:hover i,
.sidebar-link.active i {
    color: var(--primary-green);
}



/* Item especial señal en vivo en menú lateral */
.sidebar-live-item .sidebar-live-link {
    background: #ff0000;
    color: white !important;
    border-radius: 8px;
    margin: 0.5rem 1rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}

.sidebar-live-item .sidebar-live-link:hover {
    background: #cc0000;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.sidebar-live-item .sidebar-live-link .signal-icon {
    color: white;
    animation: live-blink 1s ease-in-out infinite;
}

.sidebar-live-item .sidebar-live-link i {
    color: white;
}

/* Animaciones optimizadas */
@keyframes live-blink {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0;
    }
}

@keyframes pulse-signal {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== MEDIA QUERIES RESPONSIVE ===== */

/* Tablets y móviles */
@media (max-width: 991.98px) {
    .main-menu {
        display: none !important;
    }
    
    .search-section {
        display: none !important;
    }
    
    .professional-menu {
        justify-content: space-between;
    }
    
    .menu-actions {
        display: flex !important;
    align-items: center;
    }
    
    .live-tv-section {
        display: block !important;
    }
    
    /* Espaciado lateral mínimo para tablets */
    .main-content {
        padding: 1.5rem 0.5rem;
    }
    
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .sidebar-menu {
        width: 280px;
        left: -280px;
    }
    
    .sidebar-header {
        padding: 1.25rem 1rem;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        padding: 1rem 1.25rem;
    }
    
    .live-tv-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.45rem;
    }
    
    .menu-actions {
    gap: 0.5rem;
    }
}

/* Móviles pequeños */
@media (max-width: 576px) {
    .sidebar-menu {
        width: 100%;
        left: -100%;
    }
    
    .live-tv-btn {
        padding: 0.35rem 0.8rem;
        border-radius: 20px;
        min-height: 34px;
        justify-content: center;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .professional-menu {
        max-width: 1400px;
    }
    
    .menu-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .live-tv-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        gap: 0.6rem;
        min-width: 140px;
    }
    
    .search-input {
        width: 280px;
    }
}

/* Mejoras responsive para navegación de noticias */
@media (max-width: 1200px) {
    .menu-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Línea de selección eliminada en media query */
    
    .live-tv-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 100px;
    }
    
    .menu-item:not(:last-child)::after {
        margin-left: 0.6rem;
        right: -0.3rem;
    }
}

@media (max-width: 992px) {
    .nav-wrapper {
        height: 65px;
    }
    
    .main-navigation {
        min-height: 65px;
    }
    
    .menu-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Línea de selección eliminada en media query */
    
    .menu-item:not(:last-child)::after {
        margin-left: 0.5rem;
        right: -0.25rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        height: 60px;
        padding: 0 0.5rem;
    }
    
    .main-navigation {
        min-height: 60px;
    }
    
    .professional-menu {
        gap: 0.8rem;
    }
    
    .menu-link {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .menu-link.active::after {
        bottom: 0px;
        height: 1.5px;
    }
    
    .live-tv-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        min-width: 90px;
        border-radius: 20px;
    }
    
    .search-input {
        width: 160px;
    }
    
    .menu-item:not(:last-child)::after {
        margin-left: 0.4rem;
        right: -0.2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .professional-menu {
        gap: 0.5rem;
    }
    
    .menu-link {
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
    }
    
    /* Línea de selección eliminada en media query */
    
    .menu-item:not(:last-child)::after {
        margin-left: 0.3rem;
        right: -0.15rem;
        font-size: 0.6rem;
    }
    
    .search-input {
        width: 140px;
    }
}

/* ===== NAVBAR SECUNDARIO DE CATEGORÍAS - DISEÑO COMPACTO ===== */
.categories-navbar {
    background: var(--primary-green);
    border-bottom: 2px solid var(--secondary-orange);
    position: relative;
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-height: 44px;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.categories-wrapper {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 0 2rem;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

/* Indicadores de scroll (gradientes en los bordes) */
.categories-container::before,
.categories-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.categories-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-green), transparent);
}

.categories-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-green), transparent);
}

.categories-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    gap: 0;
    white-space: nowrap;
    min-width: max-content;
}

.category-item {
    flex-shrink: 0;
    position: relative;
}

/* Separadores verticales */
.category-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.category-link {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    border-radius: 0;
}

.category-link:hover {
    background: rgba(255, 117, 0, 0.15);
    color: var(--secondary-orange);
}

.category-link.active {
    background: var(--secondary-orange);
    color: var(--primary-green);
    font-weight: 600;
}

/* Indicador inferior para categoría activa */
.category-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-orange);
    box-shadow: 0 2px 4px rgba(255, 117, 0, 0.4);
}

/* Efecto sutil de hover para separadores */
.category-item:hover::after {
    background: rgba(255, 255, 255, 0.6);
    height: 20px;
}



/* Mejora para accesibilidad - focus visible */
.category-link:focus {
    outline: 2px solid var(--secondary-orange);
    outline-offset: 2px;
}

.categories-nav-btn:focus {
    outline: 2px solid var(--secondary-orange);
    outline-offset: 2px;
}

/* Botones de navegación del scroll */
.categories-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
    z-index: 3;
}

.categories-nav-btn:hover {
    background: var(--secondary-orange);
    color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.categories-nav-btn.prev {
    left: 0.2rem;
}

.categories-nav-btn.next {
    right: 0.2rem;
}

/* Responsive optimizado para más categorías */
@media (max-width: 1200px) {
    .category-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .categories-wrapper {
        padding: 0 1.5rem;
    }
    
    .category-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        letter-spacing: 0.2px;
    }
    
    .category-item:not(:last-child)::after {
        height: 12px;
    }
    
    .categories-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .categories-wrapper {
        padding: 0 1rem;
    }
    
    .category-link {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .categories-navbar {
        min-height: 38px;
    }
    
    .categories-nav-btn {
        display: none; /* Ocultar botones en móviles muy pequeños */
    }
    
    .categories-container::before,
    .categories-container::after {
        width: 20px;
    }
}

/* ===== VERSIÓN ULTRA-COMPACTA (Para 15+ categorías) ===== */
/* Descomenta estas reglas si tienes muchas categorías y necesitas máxima compactación */

/*
.categories-navbar.ultra-compact {
    min-height: 36px;
}

.categories-navbar.ultra-compact .category-link {
    padding: 0.15rem 0.3rem;
    font-size: 0.55rem;
    letter-spacing: 0.1px;
}

.categories-navbar.ultra-compact .category-item:not(:last-child)::after {
    height: 10px;
    width: 0.5px;
}

.categories-navbar.ultra-compact .categories-list {
    padding: 0.2rem 0;
}

@media (max-width: 768px) {
    .categories-navbar.ultra-compact .category-link {
        padding: 0.1rem 0.25rem;
        font-size: 0.5rem;
    }
}
*/

/* ===== VERSIÓN CON DROPDOWN PARA MUCHAS CATEGORÍAS ===== */
/* Alternativa: Convertir a dropdown en móviles cuando hay 10+ categorías */

/*
@media (max-width: 768px) {
    .categories-navbar.dropdown-mode .categories-wrapper {
        display: none;
    }
    
    .categories-navbar.dropdown-mode .categories-dropdown {
        display: block;
        width: 100%;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .categories-navbar.dropdown-mode .categories-dropdown option {
        background: var(--primary-green);
        color: var(--white);
    }
}
*/

/* ===== DOCUMENTACIÓN DE USO ===== */
/*
CÓMO USAR LAS DIFERENTES VERSIONES DEL NAVBAR DE CATEGORÍAS:

1. VERSIÓN ESTÁNDAR (actual):
   - Ideal para 5-12 categorías
   - Scroll horizontal automático
   - Botones de navegación inteligentes
   - Separadores verticales

2. VERSIÓN ULTRA-COMPACTA:
   - Para 15+ categorías
   - Agrega class="ultra-compact" al .categories-navbar
   - Texto más pequeño, menos padding

3. VERSIÓN DROPDOWN:
   - Para móviles con muchas categorías
   - Agrega class="dropdown-mode" al .categories-navbar
   - Convierte a select en móviles

EJEMPLO DE IMPLEMENTACIÓN:
<nav class="categories-navbar ultra-compact"> // Para muchas categorías
<nav class="categories-navbar dropdown-mode"> // Para dropdown en móviles

PERSONALIZACIÓN:
- Ajustar font-size en .category-link para más/menos compactación
- Cambiar padding para controlar espaciado
- Modificar min-height del navbar para altura total
*/

/* Breadcrumb de categorías */
.category-breadcrumb a {
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.category-breadcrumb a:hover {
    color: var(--primary-green) !important;
}

/* === LIVE PROGRAM INDICATOR V8 - DISEÑO DASHBOARD TECNOLÓGICO === */
.live-program-indicator {
    margin: 2rem 0;
    position: relative;
}

.live-program-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.live-program-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: borderShimmer 3s ease-in-out infinite;
}

@keyframes borderShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.live-program-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.live-program-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
}

.live-program-status {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-status-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-status-indicator {
    width: 16px;
    height: 16px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3);
    animation: statusPulse 2s ease-in-out infinite;
}

.live-status-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    animation: statusRing 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes statusRing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }
}

.live-status-text {
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.live-time-display {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.live-time-display i {
    color: #00ff88;
}

.live-program-main {
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.live-program-avatar {
    position: relative;
}

.live-program-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.live-program-avatar:hover .live-program-image {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.live-program-details {
    min-width: 0;
    flex: 1;
}

.live-program-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.live-program-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .live-program-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }
}

.live-program-host {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.live-program-host i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.host-label {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 4px;
}

.host-name {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    flex: 1;
}

.live-program-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.live-program-schedule i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.schedule-label {
    color: #1565c0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 4px;
}

.schedule-time {
    color: #0d47a1;
    font-weight: 700;
    font-size: 1rem;
    flex: 1;
}

.live-program-description {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.live-program-description i {
    color: #ff9800;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.live-program-description span {
    font-style: italic;
    color: #5d4037;
    font-weight: 500;
}

.live-program-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.live-now-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.live-now-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.live-now-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.live-now-btn i {
    font-size: 1.1rem;
}

.live-share-buttons {
    display: flex;
        flex-direction: column;
    gap: 8px;
    align-items: center;
}

.live-share-title {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.live-share-icons {
    display: flex;
    gap: 8px;
}

.live-share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    display: flex;
        align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.live-share-btn[title*="Facebook"] { 
    background: #3b5998; 
}
.live-share-btn[title*="Twitter"] { 
    background: #1da1f2; 
}
.live-share-btn[title*="WhatsApp"] { 
    background: #25d366; 
}

.live-share-btn:hover {
    transform: translateY(-2px) scale(1.05);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.live-program-progress-section {
    background: #f8f9fa;
    margin: 0;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

.live-progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.live-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.live-progress-time-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .live-program-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .live-program-actions {
        order: -1;
    }
    
    .live-program-header {
        padding: 10px 15px;
    }
    
    .live-program-main {
        padding: 15px;
    }
    
    .live-program-progress-section {
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .live-program-container {
        border-radius: 12px;
    }
    
    .live-program-content {
        border-radius: 10px;
    }
    
    .live-program-image {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }
    
    .live-program-title {
        font-size: 1.2rem;
    }
    
    .live-now-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .live-program-info-grid {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .live-program-host,
    .live-program-schedule {
        padding: 8px 10px;
    }
    
    .host-label,
    .schedule-label {
        font-size: 0.8rem;
    }
    
    .host-name,
    .schedule-time {
        font-size: 0.9rem;
    }
    
    .live-program-description {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .live-progress-time-labels {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .live-program-header {
        padding: 10px 15px;
    }
    
    .live-program-main {
        padding: 15px;
    }
    
    .live-program-progress-section {
        padding: 12px 15px;
    }
    
    .live-program-image {
        width: 60px;
        height: 60px;
    }
    
    .live-program-title {
        font-size: 1.1rem;
    }
    
    .live-share-buttons {
        display: none;
    }
    
    .live-status-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .live-program-info-grid {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .live-program-host,
    .live-program-schedule {
        padding: 6px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .live-program-host i,
    .live-program-schedule i {
        width: auto;
    }
    
    .host-label,
    .schedule-label {
        font-size: 0.75rem;
    }
    
    .host-name,
    .schedule-time {
        font-size: 0.85rem;
    }
    
    .live-program-description {
        padding: 8px 10px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 6px;
    }
    
    .live-progress-time-labels {
        font-size: 0.7rem;
        text-align: center;
    }
}

/* ===== CONTENIDO PRINCIPAL ===== */
.main-content {
    padding: 0;
    min-height: calc(100vh - var(--header-height));
}

/* Espaciado mínimo para móviles */
@media (max-width: 991.98px) {
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ===== CARDS Y COMPONENTES ===== */
.card {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===== BOTONES ===== */
.btn {
    font-family: var(--font-family);
    border-radius: 8px;
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 1.5rem;
    transition: var(--transition-normal);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline-primary:hover {
    background: var(--gradient-tertiary);
    color: var(--white);
    border-color: var(--harmonic-dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: var(--gradient-tertiary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-purple {
    background: var(--gradient-tertiary);
    color: var(--white);
    border: none;
}

.btn-purple:hover {
    background: var(--harmonic-dark-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== PAGINACIÓN ===== */
.pagination .page-item .page-link {
    border: none;
    color: var(--gray-600);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
}

.pagination .page-item .page-link:hover {
    background: var(--gray-200);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* ===== PROGRAMACIÓN ===== */
.schedule-nav .nav-link {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 1rem 1.5rem;
    transition: var(--transition-normal);
}

.schedule-nav .nav-link.active {
    color: var(--primary-green);
    background-color: transparent;
    border-bottom-color: var(--primary-green);
}

.schedule-nav .nav-link:hover {
    color: var(--harmonic-dark-green);
    border-bottom-color: var(--secondary-orange);
}

.program-row {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    background: var(--white);
}

.program-row:last-child {
    border-bottom: 0;
}

.program-row.is-live {
    background: linear-gradient(135deg, rgba(22, 83, 192, 0.1), rgba(0, 204, 255, 0.1));
    border-left: 5px solid var(--primary-green);
}

.program-row:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.program-time {
    flex: 0 0 120px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    font-size: 1.1rem;
}

.program-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1.5rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.program-details h5 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
}

.program-details p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.live-badge {
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    padding: 0.5rem 1rem;
    background: #dc3545;
    color: var(--white);
    border-radius: 20px;
    animation: pulse-live 1.5s infinite;
}

/* ===== ANIMACIONES ===== */
@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 5px rgba(22, 83, 192, 0.5); 
    }
    33% { 
        box-shadow: 0 0 15px rgba(0, 204, 255, 0.7); 
    }
    66% { 
        box-shadow: 0 0 20px rgba(123, 91, 224, 0.6); 
    }
    100% { 
        box-shadow: 0 0 5px rgba(22, 83, 192, 0.5); 
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes pulse-live {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1199.98px) and (min-width: 1000px) {
    .search-input {
        width: 180px;
    }
    
    .menu-link {
        padding: 0.75rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1399.98px) and (min-width: 992px) {
    .search-input {
        width: 160px;
    }
    
    /* Mantener texto del menú visible pero más compacto */
    .menu-link span {
        display: inline;
        font-size: 0.9rem;
    }
    
    .menu-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Botón EN VIVO más compacto para esta resolución */
    .live-tv-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
}



@media (max-width: 767.98px) {
    .main-logo {
        width: 150px;
        max-height: 90px;
    }
    
    .logo-section {
        padding: 1rem 0;
    }
    
    .main-content {
        padding: 1.5rem 0.5rem;
    }
    
    .program-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .program-time {
        flex: none;
    }
    
    .program-img {
        margin-right: 0;
    }
    
    /* Contenedores con espaciado lateral mínimo */
    .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .main-logo {
        width: 200px;
        max-height: 70px;
    }
    
    .logo-section {
        padding: 0.75rem 0;
    }
    
    .main-content {
        padding: 1rem 0.5rem;
    }
    
    /* Espaciado mínimo para móviles pequeños */
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* ===== TIPOGRAFÍA ESPECIAL ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.025em;
}

h1 {
    font-weight: var(--font-weight-bold);
    font-size: 2.5rem;
}

h2 {
    font-weight: var(--font-weight-bold);
    font-size: 2rem;
}

h3 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.75rem;
}

h4 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.5rem;
}

h5 {
    font-weight: var(--font-weight-medium);
    font-size: 1.25rem;
}

h6 {
    font-weight: var(--font-weight-medium);
        font-size: 1.1rem;
    }

.font-display {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.025em;
}

.font-body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
}

/* ===== UTILIDADES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-tertiary {
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-full {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-tertiary {
    background: var(--gradient-tertiary);
}

.bg-gradient-full {
    background: var(--gradient-full);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

/* Colores individuales */
.text-primary-green { color: var(--primary-green); }
.text-secondary-orange { color: var(--secondary-orange); }
.text-accent-bright-green { color: var(--accent-bright-green); }
.text-harmonic-dark-green { color: var(--harmonic-dark-green); }
.text-accent-orange { color: var(--accent-orange); }

.bg-primary-green { background-color: var(--primary-green); }
.bg-secondary-orange { background-color: var(--secondary-orange); }
.bg-accent-bright-green { background-color: var(--accent-bright-green); }
.bg-harmonic-dark-green { background-color: var(--harmonic-dark-green); }
.bg-accent-orange { background-color: var(--accent-orange); }

/* Bordes con colores */
.border-primary-green { border-color: var(--primary-green); }
.border-secondary-orange { border-color: var(--secondary-orange); }
.border-accent-bright-green { border-color: var(--accent-bright-green); }
.border-harmonic-dark-green { border-color: var(--harmonic-dark-green); }
.border-accent-orange { border-color: var(--accent-orange); }

/* ===== WMB ANUNCIOS LATERALES - COMPORTAMIENTO STICKY OPTIMIZADO ===== */

/* Contenedor wrapper para los banners */
.wmb-banners-wrapper {
    position: relative;
    width: 100%;
    height: 0; /* No ocupa espacio en el flujo del documento */
    z-index: 100; /* Por encima del contenido pero por debajo de menús */
    pointer-events: none; /* Permite clicks en el contenido de fondo */
}

.wmb-side-banner-left,
.wmb-side-banner-right {
    position: absolute;
    top: 5px; /* Posición inicial normal */
    pointer-events: auto; /* Permite clicks en los banners */
    z-index: 100;
    /* Transiciones ultra suaves y estables */
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    /* Optimización máxima de rendimiento */
    will-change: transform, top;
    backface-visibility: hidden;
    transform: translateZ(0) translate3d(0, 0, 0); /* Forzar aceleración GPU completa */
    opacity: 1;
    /* Prevenir flickering durante scrolls rápidos */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Estados para el comportamiento sticky - Optimizado */
.wmb-side-banner-left.sticky,
.wmb-side-banner-right.sticky {
    position: fixed !important;
    top: 63px !important; /* Alineado con el menú principal (60px + 3px border) */
    z-index: 999; /* Por debajo del menú pero visible */
    transform: translateZ(0) translate3d(0, 0, 0);
    -webkit-transform: translateZ(0);
    opacity: 1 !important;
}

/* Posiciones definidas en media queries específicas */

/* ===== SLIDER DE NOTICIAS DESTACADAS ===== */
.news-featured-slider,
.news-featured-single {
    position: relative;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    /* La transición se maneja dinámicamente en JavaScript */
}

.slider-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    z-index: 2;
}

.slider-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: var(--white);
}

.slider-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.slider-title a:hover {
    opacity: 0.9;
}

.slider-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.slider-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



/* Controles de navegación */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    
    .slider-title {
        font-size: 1.3rem;
    }
    
    .slider-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    

}

@media (max-width: 576px) {
    .slider-container {
        height: 250px;
    }
    
    .slider-title {
        font-size: 1.1rem;
    }
    
    .slider-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
}

/* Configuración optimizada: Banners solo en pantallas grandes */
@media (max-width: 1599px) {
    .wmb-banners-wrapper,
    .wmb-side-banner-left,
    .wmb-side-banner-right {
        display: none !important;
    }
}

@media (min-width: 1600px) {
    .wmb-side-banner-left {
        left: calc(50% - 700px - 15px);
    }
    
    .wmb-side-banner-right {
        right: calc(50% - 700px - 15px);
    }
}

.wmb-side-banner-img {
    /* Tamaño original sin modificaciones */
    width: auto;
    height: auto;
    /* Sin restricciones de altura máxima */
    object-fit: none; /* Mantener proporciones originales */
    /* Sin redondeo de esquinas */
    border-radius: 0;
    /* Sin sombras */
    box-shadow: none;
    /* Solo transición suave para hover */
    transition: opacity 0.3s ease;
    /* Optimización de carga */
    loading: lazy;
    /* Estado inicial sin animaciones */
    opacity: 1;
}

.wmb-side-banner-img:hover {
    /* Solo efecto de opacidad en hover */
    opacity: 0.9;
}

/* Asegurar que el contenido principal no interfiera */
.main-content {
    position: relative;
    z-index: 1;
}

/* Los banners mantienen posición en bordes para todas las pantallas grandes */
/* No se necesitan reglas adicionales ya que la posición dinámica se adapta automáticamente */



/* ===== TURBOLINKS ===== */
.turbolinks-progress-bar {
    height: 3px;
    background: var(--gradient-primary);
}

/* ========================================================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE INICIO (HOME)
   Estilos organizados y centralizados desde views/home/index.php
   ======================================================================== */



/* === BARRA "EN VIVO" === */
.on-air-bar {
    background-color: var(--primary-green);
}

/* === ESTILOS GENERALES DE SECCIÓN === */
.home-section-title {
    font-weight: 700;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.home-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

/* === CAROUSEL PRINCIPAL === */
.home-carousel {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.home-carousel .carousel-inner {
    border-radius: 12px !important;
}

.home-carousel .carousel-item {
    border-radius: 12px !important;
}

.home-carousel .carousel-item img {
    border-radius: 0 !important;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    /* Optimizaciones para máxima calidad visual */
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive para el carousel */
@media (max-width: 992px) {
    .home-carousel .carousel-item img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .home-carousel .carousel-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .home-carousel .carousel-item img {
        height: 250px;
    }
}

/* ===== OPTIMIZACIONES PARA PANTALLAS DE ALTA DENSIDAD ===== */
@media (-webkit-min-device-pixel-ratio: 2), 
       (min-resolution: 192dpi) {
    .home-carousel .carousel-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: high-quality;
    }
}

/* === NOTICIAS PROFESIONALES TV STYLE === */
.news-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* === NOTAS SOBRE UNIFICACIÓN === */
/* Los estilos de .news-main-title y .news-title-underline 
   ahora están unificados arriba en la sección de títulos.
   
   TODOS los títulos principales ahora tienen:
   - Mismo gradiente de color (azul a celeste)
   - Mismo tamaño y peso de fuente
   - Misma tipografía y espaciado
   - Mismas líneas decorativas
   
   Esto crea una identidad visual consistente en todo el sitio. */

.btn-more-news {
    background: #e8202e;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.btn-more-news:hover {
    background: #d01527;
    color: white;
    text-decoration: none;
}

/* Grid de noticias responsivo - 3 columnas */
/* Grid de noticias - Diseño profesional y limpio */
.news-grid-3x4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Card de noticia - Diseño elegante y minimalista */
.news-card-professional {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
}



/* Imagen de la noticia */
.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

/* Contenido del card */
.news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Título de la noticia */
.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: var(--primary-green);
}

/* Extracto de la noticia */
.wmb-news-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Meta información */
.news-card-meta {
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.news-date {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}



/* Badge de categoría - Diseño elegante y minimalista */
.wmb-news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    z-index: 10;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Variante para el badge en la imagen */
.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    z-index: 10;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 
 * Estilos de categorías dinámicos:
 * Los colores ahora se obtienen desde la base de datos
 * y se aplican directamente con estilos inline
 */

.news-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.news-empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ddd;
}

/* === REDES SOCIALES ELEGANTES === */
.social-card {
    display: flex;
    align-items: center;
    padding: 24px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.social-content {
    flex: 1;
    min-width: 0;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #2c3e50;
    font-family: var(--font-family-headings);
}

.social-subtitle {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
}

.social-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-arrow i {
    font-size: 16px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.social-card:hover .social-arrow {
    background: var(--primary-green);
    transform: scale(1.1);
}

.social-card:hover .social-arrow i {
    color: white;
    transform: translateX(2px);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Colores específicos por red social */
.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-card.tiktok .social-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #ff5722);
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

/* Efectos de hover específicos por red */
.social-card.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.03), rgba(66, 165, 245, 0.03));
}

.social-card.tiktok:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(51, 51, 51, 0.03));
}

.social-card.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.03), rgba(255, 87, 34, 0.03));
}

.social-card.twitter:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.03), rgba(66, 165, 245, 0.03));
}

/* === ESTILOS OPTIMIZADOS === */

/* Botón Ver más videos - mismo estilo que noticias */
.btn-more-videos {
    background: var(--harmonic-dark-green);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.btn-more-videos:hover {
    background: #6c5ce7;
    color: white;
    text-decoration: none;
}

/* === MEJORAS GLOBALES === */

/* Color de selección global mejorado (opcional para futuro) */
::selection {
    background: rgba(22, 83, 192, 0.15);
    color: var(--primary-green-dark);
}

::-moz-selection {
    background: rgba(22, 83, 192, 0.15);
    color: var(--primary-green-dark);
}

/* Estilos de video antiguos removidos - Ahora se usa multimedia-grid */

/* Estilos decorativos antiguos removidos - Ahora se usan section-underline-* */

/* === RESPONSIVE DESIGN === */
@media (max-width: 1199.98px) {
    .news-grid-3x4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .news-card-image {
        height: 220px;
    }
    
    .news-card-content {
        padding: 18px;
    }
    
    .news-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .social-card {
        padding: 20px 16px;
        margin: 0 0.5rem 16px 0.5rem;
        min-height: 90px;
    }
    
    /* Responsive tablet - multimedia section handled by new grid */
    
    .social-icon {
        width: 50px;
        height: 50px;
        margin-right: 14px;
    }
    
    .social-icon i {
        font-size: 24px;
    }
    
    .social-title {
        font-size: 1rem;
    }
    
    .social-subtitle {
        font-size: 0.8rem;
    }
    
    .social-arrow {
        width: 36px;
        height: 36px;
    }
    
    .social-arrow i {
        font-size: 14px;
    }
    

    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-grid-3x4 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 0.5rem;
    }
    
    /* Títulos manejados por las nuevas clases section-title */
    
    /* Carousel con espaciado lateral mínimo en tablets */
    .home-carousel {
        margin: 0 0.5rem;
        border-radius: 8px !important;
    }
    

    
    .news-card-image {
        height: 200px;
    }
    
    .news-card-content {
        padding: 16px;
    }
    
    .news-card-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .social-card {
        padding: 18px 14px;
        margin: 0 0.5rem 16px 0.5rem;
        min-height: 80px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .social-icon i {
        font-size: 22px;
    }
    
    .social-title {
        font-size: 0.95rem;
    }
    
    .social-subtitle {
        font-size: 0.75rem;
    }
    

    

    
    .news-card-image {
        height: 180px;
    }
    
    .news-card-content {
        padding: 14px;
    }
    
    .news-card-title {
        font-size: 0.9rem;
    }
    
    .news-date {
        font-size: 0.75rem;
    }
    
    /* Responsive móvil - handled by new multimedia-grid and section-title classes */
    
    /* Carousel con espaciado mínimo en móviles */
    .home-carousel {
        margin: 0 0.5rem;
        border-radius: 6px !important;
    }
    

    
    /* Grid de noticias con espaciado mínimo móvil */
    .news-grid-3x4 {
        padding: 0 0.5rem;
    }
    
    /* Líneas decorativas responsive */
    .home-section-underline-primary,
    .home-section-underline-secondary,
    .home-section-underline-tertiary,
    .news-title-underline {
        width: 60px;
        height: 2px;
    }
}

/* ======================================================================
   WMB PÁGINA DE NOTICIAS PROFESIONAL - DISEÑO TELEVISIVO
   ====================================================================== */

/* === HEADER DE NOTICIAS PROFESIONAL === */
.wmb-news-hero {
    background: var(--gradient-full);
    padding: 4rem 0 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.wmb-news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: wmb-news-pattern-float 20s ease-in-out infinite;
}

@keyframes wmb-news-pattern-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

.wmb-news-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.wmb-news-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-family-headings);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.wmb-news-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 2rem;
}

.wmb-news-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.wmb-news-stat {
    text-align: center;
}

.wmb-news-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.wmb-news-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === BARRA DE BÚSQUEDA Y FILTROS === */
.wmb-news-search-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    margin: -2rem auto 3rem;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    border: 1px solid rgba(22, 83, 192, 0.1);
}

.wmb-news-search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.wmb-news-search-input {
    flex: 1;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.wmb-news-search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(22, 83, 192, 0.25);
}

.wmb-news-search-input::placeholder {
    color: var(--gray-500);
}

.wmb-news-search-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wmb-news-search-btn:hover {
    background: var(--gradient-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 83, 192, 0.3);
}

.wmb-news-search-btn i {
    margin-right: 0.5rem;
}

/* === GRID DE NOTICIAS PROFESIONAL === */
.wmb-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* === CARDS DE NOTICIAS TELEVISIVOS === */
.wmb-news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wmb-news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(22, 83, 192, 0.2);
}

.wmb-news-card-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.wmb-news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wmb-news-card:hover .wmb-news-card-image {
    transform: scale(1.08);
}

.wmb-news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wmb-news-card:hover .wmb-news-card-overlay {
    opacity: 1;
}

.wmb-news-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.wmb-news-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.wmb-news-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wmb-news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-family: var(--font-family-headings);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.2em;
}

.wmb-news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-news-card-title a:hover {
    color: var(--primary-green);
}

.wmb-news-card-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wmb-news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.wmb-news-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.wmb-news-card-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wmb-news-card-views i {
    color: var(--secondary-orange);
}

.wmb-news-card-read-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wmb-news-card-read-btn:hover {
    background: var(--gradient-tertiary);
    color: white;
    text-decoration: none;
    transform: translateX(3px);
}

.wmb-news-card-read-btn i {
    transition: transform 0.3s ease;
}

.wmb-news-card-read-btn:hover i {
    transform: translateX(3px);
}

/* === SOCIAL SHARE DENTRO DE LAS CARDS === */
.wmb-news-card-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.wmb-news-social-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.wmb-news-social-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.wmb-news-social-btn.facebook { background: #3b5998; }
.wmb-news-social-btn.twitter { background: #1da1f2; }
.wmb-news-social-btn.whatsapp { background: #25d366; }

.wmb-news-social-btn.facebook:hover { background: #2d4373; }
.wmb-news-social-btn.twitter:hover { background: #1a91da; }
.wmb-news-social-btn.whatsapp:hover { background: #1ebe57; }

/* === RESULTADO DE BÚSQUEDA === */
.wmb-news-search-result {
    background: rgba(22, 83, 192, 0.05);
    border-left: 4px solid var(--primary-green);
    padding: 1rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
}

.wmb-news-search-result-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wmb-news-search-result-query {
    color: var(--harmonic-dark-green);
    font-weight: 700;
}

/* === PAGINACIÓN PROFESIONAL === */
.wmb-news-pagination {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.wmb-news-pagination .pagination {
    justify-content: center;
    gap: 0.5rem;
}

.wmb-news-pagination .page-item .page-link {
    border: none;
    color: var(--gray-600);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--gray-100);
}

.wmb-news-pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 83, 192, 0.3);
}

.wmb-news-pagination .page-item .page-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 83, 192, 0.2);
}

/* Paginación también funciona con clases estándar */
.pagination .page-item .page-link {
    border: none;
    color: var(--gray-600);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition-normal);
    background: var(--gray-100);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 83, 192, 0.3);
}

.pagination .page-item .page-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 83, 192, 0.2);
}

/* === ESTADO VACÍO === */
.wmb-news-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: 20px;
    margin: 2rem 0;
}

.wmb-news-empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.wmb-news-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.wmb-news-empty-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.wmb-news-empty-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wmb-news-empty-btn:hover {
    background: var(--gradient-tertiary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* === EFECTOS Y OPTIMIZACIONES ADICIONALES === */
.wmb-news-card-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(22, 83, 192, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.wmb-news-card:hover .wmb-news-card-image-container::after {
    opacity: 1;
}

/* Loading skeleton para imágenes */
.wmb-news-card-image-loading {
    background: linear-gradient(90deg, 
        var(--gray-200) 25%, 
        var(--gray-100) 50%, 
        var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: wmb-loading-shimmer 1.5s infinite;
}

@keyframes wmb-loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Mejoras para accesibilidad */
.wmb-news-card:focus-within {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
    transform: translateY(-4px);
}

.wmb-news-search-input:focus,
.wmb-news-search-btn:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Mejora para textos largos */
.wmb-news-card-title {
    word-wrap: break-word;
    hyphens: auto;
}

.wmb-news-card-excerpt {
    word-wrap: break-word;
}

/* Animación mejorada para botones sociales */
.wmb-news-social-btn {
    position: relative;
    overflow: hidden;
}

.wmb-news-social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.wmb-news-social-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Optimización para impresión */
@media print {
    .wmb-news-hero,
    .wmb-news-search-bar,
    .wmb-news-card-social,
    .wmb-news-pagination {
        display: none !important;
    }
    
    .wmb-news-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .wmb-news-card-image {
        filter: grayscale(100%);
    }
}

/* Mejoras para dispositivos de alta densidad */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .wmb-news-card-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: high-quality;
    }
}

/* === ESTILOS COMPLEMENTARIOS PARA PÁGINA DE NOTICIAS === */
.wmb-news-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wmb-news-card-views {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
}

.wmb-news-card-views i {
    color: var(--secondary-yellow);
    font-size: 0.9rem;
}



/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .news-grid-3x4 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .news-card-image {
        height: 200px;
    }
    
    .news-card-content {
        padding: 16px;
    }
    
    .news-card-title {
        font-size: 1rem;
    }
    
    .wmb-news-card-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 768px) {
    .news-grid-3x4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .wmb-news-hero {
        padding: 3rem 0 1.5rem;
    }
    
    .wmb-news-hero-title {
        font-size: 2rem;
    }
    
    .wmb-news-hero-subtitle {
        font-size: 1rem;
    }
    
    .wmb-news-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .wmb-news-search-bar {
        margin: -1rem 1rem 2rem;
        padding: 1rem;
    }
    
    .wmb-news-card-content {
        padding: 1rem;
    }
    
    .wmb-news-card-title {
        font-size: 1.1rem;
    }
    
    .wmb-news-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .wmb-news-card-read-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .wmb-news-hero {
        padding: 2rem 0 1rem;
    }
    
    .wmb-news-hero-title {
        font-size: 1.8rem;
    }
    
    .wmb-news-search-bar {
        margin: -0.5rem 0.5rem 1.5rem;
        padding: 0.75rem;
    }
    
    .wmb-news-search-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .wmb-news-search-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .wmb-news-card-image-container {
        height: 180px;
    }
    
    .wmb-news-card-social {
        justify-content: center;
    }
}

/* ======================================================================
   WMB VISTA INDIVIDUAL DE NOTICIA - LAYOUT 2 COLUMNAS
   ====================================================================== */

/* === IMAGEN PRINCIPAL === */
.wmb-news-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* === TÍTULO Y METADATOS === */
.wmb-news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-family-headings);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.wmb-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
    position: relative;
}

.wmb-news-detail-meta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--primary-green);
    border-radius: 2px;
}

.wmb-meta-item {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.wmb-meta-item i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* === CONTENIDO DE LA NOTICIA === */
.wmb-news-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-800);
}

.wmb-news-detail-content p {
    margin-bottom: 1.5rem;
}

.wmb-news-detail-content h2,
.wmb-news-detail-content h3,
.wmb-news-detail-content h4 {
    color: var(--gray-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.wmb-news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* === BOTONES DE COMPARTIR === */
.wmb-news-detail-share {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.wmb-news-detail-share h5 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.wmb-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wmb-share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: white;
    border: none;
}

.wmb-share-facebook {
    background: #3b5998;
}

.wmb-share-twitter {
    background: #1da1f2;
}

.wmb-share-whatsapp {
    background: #25d366;
}

.wmb-share-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.wmb-share-facebook:hover { background: #2d4373; }
.wmb-share-twitter:hover { background: #1a91da; }
.wmb-share-whatsapp:hover { background: #1ebe57; }

/* === NAVEGACIÓN ANTERIOR/SIGUIENTE === */
.wmb-news-navigation {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.wmb-nav-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
}

.wmb-nav-btn:hover {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: var(--primary-green);
}

.wmb-nav-center {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-green);
}

.wmb-nav-center:hover {
    background: var(--gradient-tertiary);
}

.wmb-nav-disabled {
    background: var(--gray-200);
    color: var(--gray-500);
    cursor: not-allowed;
    opacity: 0.6;
}

/* === SIDEBAR === */
.wmb-news-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 2rem); /* Respeta la altura del menú + espaciado */
}

.wmb-sidebar-section {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: none !important;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.wmb-sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-green);
    font-family: var(--font-family-headings);
}

.wmb-sidebar-title i {
    color: var(--primary-green);
}

/* === NOTICIAS RELACIONADAS === */
.wmb-related-news {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wmb-related-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.wmb-related-item:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: none !important;
    border-color: var(--primary-green);
}

.wmb-related-image {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.wmb-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-related-item:hover .wmb-related-image img {
    transform: scale(1.1);
}

.wmb-related-date {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.wmb-related-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wmb-related-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
}

.wmb-related-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-related-title a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.wmb-related-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: auto;
}

.wmb-related-meta i {
    color: var(--secondary-yellow);
    font-size: 0.75rem;
}

/* === ESTADO VACÍO SIDEBAR === */
.wmb-sidebar-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray-500);
}

.wmb-sidebar-empty i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.wmb-sidebar-empty p {
    margin: 0;
    font-size: 0.9rem;
}

/* === BOTÓN VOLVER === */
.wmb-back-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.wmb-back-btn:hover {
    background: var(--gradient-tertiary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: none !important;
}

 /* === RESPONSIVE DESIGN === */
 @media (max-width: 1199px) {
     .wmb-news-sidebar {
         top: calc(var(--nav-height) + 1rem); /* Menos espaciado en tablets */
     }
 }

 @media (max-width: 992px) {
     .wmb-news-detail-title {
         font-size: 2rem;
     }
    
    .wmb-news-detail-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .wmb-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wmb-share-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .wmb-news-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wmb-nav-btn {
        justify-content: center;
    }
    
         .wmb-news-sidebar {
         margin-top: 3rem;
         position: static;
         top: auto;
     }
    
    .wmb-related-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wmb-related-image {
        width: 100%;
        height: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .wmb-news-detail-title {
        font-size: 1.75rem;
    }
    
    .wmb-news-detail-content {
        font-size: 1rem;
    }
    
    .wmb-news-detail-image {
        max-height: 250px;
    }
    
    .wmb-sidebar-section {
        padding: 1rem;
    }
    
    .wmb-related-image {
        height: 120px;
    }
    
    .wmb-related-title {
        font-size: 0.85rem;
    }
    
    .wmb-news-detail-meta {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
    }
    
    .wmb-meta-item {
        display: inline-flex !important;
        align-items: center;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .wmb-news-detail-title {
        font-size: 1.5rem;
    }
    
    .wmb-news-detail-meta {
        padding: 0.75rem;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .wmb-meta-item {
        font-size: 0.8rem;
        display: inline-flex !important;
        align-items: center;
        white-space: nowrap;
        margin: 0;
        flex-shrink: 0;
    }
    
    .wmb-news-detail-share {
        padding: 1.5rem 1rem;
    }
    
    .wmb-share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .wmb-news-navigation {
        padding: 1rem;
    }
    
    .wmb-nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* ======================================================================
   PÁGINAS RADIO Y TV
   ====================================================================== */

/* Estilos comunes para Radio y TV */
.radio-page,
.tv-page {
    min-height: 100vh;
    position: relative;
}

.radio-background,
.tv-background {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/desktop.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.radio-player-container,
.tv-player-container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    outline: none;
}

/* Logos */
.radio-logo,
.tv-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
}

.radio-title,
.tv-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.radio-subtitle,
.tv-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* === RADIO PLAYER === */
.radio-player {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--harmonic-dark-green) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.play-pause-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.now-playing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.now-playing-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.now-playing-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-slider {
    flex: 1;
    max-width: 150px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    height: 5px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #ff152b !important;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.volume-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    height: 5px;
    border: none;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #ff152b !important;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    -moz-appearance: none;
}

.radio-status,
.tv-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545;
    animation: pulse 2s infinite;
}

.status-indicator.connected {
    background: #28a745;
}

.status-indicator.connecting {
    background: #ffc107;
}

.status-indicator.error {
    background: #dc3545;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: 600;
    color: var(--gray-700);
}

/* Loader para radio */
.radio-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    z-index: 15;
}

.radio-loader.show {
    display: flex;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--secondary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.play-pause-btn {
    position: relative;
}

/* === TV PLAYER === */
.tv-player {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.tv-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tv-control-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--harmonic-dark-green) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tv-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .radio-background,
    .tv-background {
        padding: 1rem 0;
        background-attachment: scroll;
    }
    
    .radio-player-container,
    .tv-player-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .radio-title,
    .tv-title {
        font-size: 2rem;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .player-info {
        text-align: center;
    }
    
    .volume-control {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .radio-player-container,
    .tv-player-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .radio-title,
    .tv-title {
        font-size: 1.8rem;
    }
    
    .radio-subtitle,
    .tv-subtitle {
        font-size: 1rem;
    }
    
    .radio-player {
        padding: 1.5rem;
    }
}

/* ======================================================================
   BOTONES FLOTANTES RKC
   ====================================================================== */

.rkc-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rkc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.rkc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.rkc-radio-btn {
    background: linear-gradient(135deg, #ff152b 0%, #d1001a 100%);
    color: white;
    border: 2px solid #ff152b;
}

.rkc-radio-btn:hover {
    background: linear-gradient(135deg, #d1001a 0%, #b30015 100%);
    color: white;
}

.rkc-tv-btn {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    border: 2px solid #ffc107;
}

.rkc-tv-btn:hover {
    background: linear-gradient(135deg, #e0a800 0%, #d39e00 100%);
    color: #212529;
}

.rkc-btn i {
    font-size: 1.1rem;
}

.rkc-btn span {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .rkc-floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .rkc-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .rkc-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rkc-floating-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .rkc-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: 100px;
        gap: 6px;
    }
    
    .rkc-btn i {
        font-size: 0.9rem;
    }
}

/* ======================================================================
   BANNERS PUBLICITARIOS
   ====================================================================== */

.banner-publicitario {
    margin: 0.5rem 0;
    background: repeating-linear-gradient(120deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1) 1px, transparent 0, transparent 4px);
}

.banner-publicitario img {
    height: auto;
    max-width: 100%;
    border: none;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .banner-publicitario {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .banner-publicitario {
        margin: 0.3rem 0;
    }
}

/* ======================================================================
   FOOTER MODERNO Y PROFESIONAL
   ====================================================================== */

.modern-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a4d2a 50%, var(--gray-900) 100%);
    color: var(--white);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    opacity: 0.6;
}

/* === SECCIÓN PRINCIPAL DEL FOOTER === */
.footer-content {
    padding: 3.5rem 0 2rem;
    position: relative;
}



/* === BRAND SECTION === */
.footer-brand-section {
    position: relative;
}

.brand-header {
    margin-bottom: 1.5rem;
}

.brand-info {
    text-align: left;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    color: var(--white);
}

.brand-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 136, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-orange);
    font-size: 0.7rem;
}

/* === SECCIONES DE ENLACES === */
.footer-section {
    position: relative;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--secondary-orange);
    border-radius: 1px;
}

/* === ENLACES DEL FOOTER === */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0.8rem;
    display: inline-block;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: var(--secondary-orange);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--white);
    text-decoration: none;
    padding-left: 1rem;
}

.footer-menu a:hover::before {
    width: 5px;
    height: 5px;
    background: var(--secondary-orange);
}



/* === CONTACTO === */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--white);
}

.contact-item i {
    color: var(--secondary-orange);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* === REDES SOCIALES === */
.social-networks {
    margin-top: 1.5rem;
}

.social-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-row {
    display: flex;
    gap: 0.4rem;
    justify-content: flex-start;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.social-btn:hover::before {
    left: 0;
}

.social-btn i {
    font-size: 0.9rem;
    z-index: 2;
    position: relative;
}

.facebook-btn,
.youtube-btn,
.telegram-btn,
.tiktok-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.facebook-btn:hover,
.youtube-btn:hover,
.telegram-btn:hover,
.tiktok-btn:hover {
    background: var(--secondary-orange);
    color: white;
    transform: translateY(-2px);
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 136, 0, 0.2);
    position: relative;
}

.footer-bottom-content {
    position: relative;
}

.copyright-section {
    text-align: left;
}

.copyright-text {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-highlight {
    color: var(--secondary-orange);
    font-weight: 600;
}

.legal-notice {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.developer-section {
    text-align: right;
}

.developer-text {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.developer-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.developer-link:hover {
    transform: translateY(-2px);
}

.developer-logo {
    height: 20px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
    vertical-align: middle;
}

.developer-logo:hover {
    filter: brightness(1.3);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991.98px) {
    .footer-content {
        padding: 2.5rem 0 1.5rem;
    }
    
    .brand-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .brand-info {
        text-align: center;
    }
    
    .footer-features {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .multimedia-section .section-title {
        font-size: 1.8rem;
    }
    
    .multimedia-section .section-subtitle {
        font-size: 1rem;
    }
    
    .social-row {
        gap: 0.3rem;
    }
    
    .social-btn {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767.98px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .copyright-section {
        text-align: center;
    }
    
    .developer-section {
        text-align: center;
        margin-top: 1rem;
    }
    
    .developer-text {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .social-row {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .contact-info {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .footer-content {
        padding: 1.5rem 0 1rem;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .brand-description {
        font-size: 0.9rem;
    }
    
    .footer-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .multimedia-section .section-title {
        font-size: 1.6rem;
    }
    
    .multimedia-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .social-row {
        gap: 0.3rem;
    }
    
    .social-btn {
        width: 26px;
        height: 26px;
    }
    
    .social-btn i {
        font-size: 0.8rem;
    }
    
    .developer-link {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* ======================================================================
   WMB PROGRAMACIÓN PROFESIONAL - DISEÑO TELEVISIVO
   ====================================================================== */

/* === HERO SECTION === */
.wmb-schedule-hero {
    background: var(--gradient-full);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.wmb-schedule-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: wmb-schedule-pattern-move 25s ease-in-out infinite;
}

@keyframes wmb-schedule-pattern-move {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(25px, -25px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.wmb-schedule-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.wmb-schedule-icon-section {
    margin-bottom: 1.5rem;
}

.wmb-schedule-icon-pulse {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wmb-schedule-pulse 2.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wmb-schedule-icon-pulse i {
    font-size: 2rem;
    color: white;
}

@keyframes wmb-schedule-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.wmb-schedule-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-family-headings);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.wmb-schedule-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wmb-schedule-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.wmb-schedule-stat {
    text-align: center;
}

.wmb-schedule-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wmb-schedule-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.wmb-current-day-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wmb-current-day-indicator i {
    color: var(--secondary-yellow);
    font-size: 1.2rem;
}

/* === CONTENEDOR PRINCIPAL === */
.wmb-schedule-container {
    margin-bottom: 4rem;
}

/* === NAVEGACIÓN DE DÍAS === */
.wmb-schedule-nav-section {
    margin-bottom: 3rem;
}

.wmb-schedule-nav-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-family: var(--font-family-headings);
}

.wmb-schedule-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.wmb-schedule-nav-link {
    position: relative;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.wmb-schedule-nav-link:hover {
    background: var(--gray-100);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 83, 192, 0.15);
}

.wmb-schedule-nav-link.active {
    background: var(--gradient-primary);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 83, 192, 0.3);
}

.wmb-day-tab-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wmb-day-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.wmb-day-programs-count {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

.wmb-day-current-indicator {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: wmb-current-day-blink 2s infinite;
}

.wmb-day-current-indicator i {
    font-size: 0.6rem;
    animation: wmb-day-pulse 1.5s infinite;
}

@keyframes wmb-current-day-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes wmb-day-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* === HEADER DEL DÍA === */
.wmb-schedule-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
}

.wmb-schedule-day-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    font-family: var(--font-family-headings);
}

.wmb-schedule-day-subtitle {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.wmb-live-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ff4757;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: wmb-live-glow 2s infinite;
}

.wmb-live-pulse {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: wmb-live-pulse-dot 1.5s infinite;
}

@keyframes wmb-live-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(255, 71, 87, 0.5); }
}

@keyframes wmb-live-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* === LISTA DE PROGRAMAS SIMPLIFICADA === */
.wmb-schedule-programs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wmb-schedule-program-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.wmb-schedule-program-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.wmb-schedule-program-item.wmb-schedule-live {
    border-color: #ff4757;
    background: linear-gradient(135deg, var(--white) 0%, #fffbfb 100%);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.15);
}

.wmb-schedule-time-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    text-align: center;
}

.wmb-schedule-time-block {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
}

.wmb-schedule-start-time {
    display: block;
}

.wmb-schedule-time-divider {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0;
}

.wmb-schedule-end-time {
    display: block;
    opacity: 0.9;
}

.wmb-schedule-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
}

.wmb-schedule-duration i {
    color: var(--secondary-yellow);
}

.wmb-schedule-program-image {
    position: relative;
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.wmb-schedule-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-schedule-program-item:hover .wmb-schedule-program-image img {
    transform: scale(1.05);
}

.wmb-schedule-live-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4757;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    white-space: nowrap;
}

.wmb-schedule-live-pulse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: wmb-schedule-pulse 1.2s infinite;
}

@keyframes wmb-schedule-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.wmb-schedule-program-details {
    flex: 1;
    min-width: 0;
}

.wmb-schedule-program-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-headings);
    line-height: 1.3;
}

.wmb-schedule-program-host {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.wmb-schedule-program-host i {
    color: var(--secondary-yellow);
}

.wmb-schedule-program-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wmb-schedule-live-action {
    flex-shrink: 0;
}

.wmb-schedule-watch-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff4757;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.wmb-schedule-watch-btn:hover {
    background: #ff3742;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 71, 87, 0.4);
}

/* === ESTADO VACÍO === */
.wmb-schedule-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: 20px;
    border: 2px dashed var(--gray-300);
}

.wmb-empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.wmb-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.wmb-empty-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
}

/* === SECCIÓN DE INFORMACIÓN === */
.wmb-schedule-info-section {
    background: var(--gray-50);
    padding: 4rem 0;
    margin-top: 4rem;
}

.wmb-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wmb-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.wmb-info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(22, 83, 192, 0.3);
}

.wmb-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: var(--font-family-headings);
}

.wmb-info-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.wmb-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.wmb-info-btn:hover {
    background: var(--gradient-tertiary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1199px) {
    .wmb-schedule-programs-list {
        gap: 1.25rem;
    }
    
    .wmb-schedule-program-item {
        padding: 1.25rem;
    }
}

@media (max-width: 992px) {
    .wmb-schedule-nav {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .wmb-schedule-nav-link {
        min-width: auto;
        width: 100%;
    }
    
    .wmb-schedule-program-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .wmb-schedule-time-column {
        order: -1;
        min-width: auto;
    }
    
    .wmb-schedule-program-image {
        width: 150px;
        height: 100px;
        margin: 0 auto;
    }
    
    .wmb-schedule-program-details {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .wmb-schedule-nav-title {
        font-size: 1.5rem;
    }
    
    .wmb-schedule-nav {
        padding: 0.75rem;
        border-radius: 15px;
    }
    
    .wmb-schedule-nav-link {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    
    .wmb-day-name {
        font-size: 0.9rem;
    }
    
    .wmb-day-programs-count {
        font-size: 0.75rem;
    }
    
    .wmb-schedule-program-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .wmb-schedule-program-title {
        font-size: 1.2rem;
    }
    
    .wmb-schedule-program-image {
        width: 120px;
        height: 80px;
    }
    
    .wmb-schedule-time-block {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .wmb-info-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .wmb-schedule-nav-title {
        font-size: 1.3rem;
    }
    
    .wmb-schedule-programs-list {
        gap: 1rem;
    }
    
    .wmb-schedule-program-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .wmb-schedule-time-block {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .wmb-schedule-program-image {
        width: 100px;
        height: 70px;
    }
    
    .wmb-schedule-program-title {
        font-size: 1.1rem;
    }
    
    .wmb-schedule-program-host {
        font-size: 0.8rem;
    }
    
    .wmb-schedule-program-description {
        font-size: 0.8rem;
    }
    
    .wmb-schedule-watch-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .wmb-info-card {
        padding: 1.5rem 1rem;
    }
    
    .wmb-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .wmb-info-card h4 {
        font-size: 1.3rem;
    }
}

/* ======================================================================
   FOOTER PROFESIONAL PARA CANAL DE TV
   ====================================================================== */

/* ===== HOMEPAGE SECTIONS - DISEÑO MODERNO ===== */

/* Headers modernos */
.section-header-modern {
    margin-bottom: 2rem;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle-modern {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.section-underline-modern {
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    margin: 0.5rem 0;
    border-radius: 2px;
}

.btn-modern-primary {
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-modern-primary:hover {
    background: var(--primary-green-light);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 71, 36, 0.3);
}

/* ===== ÚLTIMAS NOTICIAS - LAYOUT ESPECÍFICO (1 grande + 4 laterales + 4 abajo) ===== */
.news-main-layout {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

/* Nueva estructura: Columna izquierda + Sidebar derecho */
.news-top-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Columna izquierda: Noticia principal + noticias secundarias */
.news-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Noticia Principal Grande (Izquierda) */
.news-main-featured {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}



.news-main-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
}

.news-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Overlay con título superpuesto */
.news-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    z-index: 2;
}

.news-main-title-overlay {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--white);
}

.news-main-title-overlay a {
    color: inherit;
    text-decoration: none;
}



.news-main-content {
    padding: 1rem 1.5rem 1.5rem;
}



.news-main-meta {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-100);
}

.news-main-date {
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}

.news-main-excerpt {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 0.01em;
}

/* Grid de Noticias Secundarias (Debajo de la principal) */
.news-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.news-secondary-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}



.news-secondary-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.news-secondary-content {
    padding: 1rem;
}

.news-secondary-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-secondary-title a {
    color: inherit;
    text-decoration: none;
}

.news-secondary-meta {
    margin-top: 0.5rem;
}

.news-secondary-date {
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Sidebar: LO MÁS LEÍDO */
.news-sidebar {
    background: var(--white);
    padding: 1rem;
    border: 1px solid var(--gray-200);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.most-read-section {
    width: 100%;
}

.most-read-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary-orange);
}

.most-read-title i {
    color: var(--secondary-orange);
    font-size: 1.1rem;
}

.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.most-read-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: flex-start;
}

.most-read-item:last-child {
    border-bottom: none;
}



.most-read-number {
    background: var(--secondary-orange);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.2rem;
}



.most-read-content {
    flex: 1;
    min-width: 0;
}

.most-read-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.2rem;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.most-read-item-title a {
    color: inherit;
    text-decoration: none;
}

.most-read-item-title a:hover {
    text-decoration: underline;
    color: var(--primary-green);
}

.most-read-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.most-read-date {
    font-weight: 500;
}

.most-read-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--secondary-orange);
    font-weight: 500;
}

/* Sección de Publicidad en Sidebar */
.sidebar-ad-section {
    margin-top: 2rem;
}

.sidebar-ad-link {
    display: block;
}

.sidebar-ad-image {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    box-shadow: none;
}

/* TV Player en página principal */
.tv-player-home-section {
    padding: 0;
    margin: 0;
}

.tv-player-home-section .tv-player-container {
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
}

.tv-iframe-home,
#tv-player-home {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 280px !important;
    display: block !important;
}

/* Estilos específicos para Video.js en home */
#tv-player-home.video-js {
    width: 100% !important;
    height: 280px !important;
    max-width: none !important;
    max-height: none !important;
}

#tv-player-home.video-js .vjs-tech {
    width: 100% !important;
    height: 280px !important;
}

/* Título con colores de la paleta */
.tv-player-home-section h5 {
    color: var(--primary-green) !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Sin personalización de Video.js - mantener estilos por defecto */

/* Reproductor completamente limpio */
#tv-player-main,
#tv-player-main.video-js,
#tv-player-main.video-js .vjs-tech,
.tv-iframe-main,
iframe {
    width: 100% !important;
    height: 400px !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    background: transparent !important;
}

/* Eliminar todos los bordes de Video.js */
.video-js,
.video-js *,
.video-js .vjs-poster,
.video-js .vjs-loading-spinner,
.video-js .vjs-big-play-button,
.video-js .vjs-control-bar,
.video-js .vjs-progress-control,
.video-js .vjs-play-progress {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.tv-iframe-home {
    width: 100% !important;
    height: 280px !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Diseño clásico para página /tv */
.tv-page {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/desktop.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-player-container-enhanced {
    background: white;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    border-radius: 12px;
}

.tv-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.tv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tv-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tv-live-indicator {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.tv-player-wrapper {
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    outline: none;
}

.tv-iframe-main,
#tv-player-main {
    border-radius: 0 !important;
    overflow: hidden;
}

.tv-controls {
    margin-top: 1.5rem;
}

.tv-control-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--harmonic-dark-green));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 71, 36, 0.3);
}

.tv-control-btn:hover {
    background: linear-gradient(135deg, var(--harmonic-dark-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 71, 36, 0.4);
    color: white;
}

.tv-control-btn:active {
    transform: translateY(0);
}

/* Botones clásicos */
.tv-controls-enhanced {
    margin-top: 1.5rem;
    text-align: center;
}

.tv-control-btn-new {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 8px 16px;
    margin: 0 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.tv-control-btn-new:hover {
    background: #e9ecef;
    color: #495057;
}

.tv-control-btn-new i {
    font-size: 1rem;
}

.tv-control-btn-new span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive para página /tv */
@media (max-width: 768px) {
    .tv-page {
        padding: 1rem 0;
        background-attachment: scroll;
    }
    
    .tv-player-container-enhanced {
        padding: 1.5rem;
        width: 95%;
    }
    
    .tv-title {
        font-size: 1.8rem;
    }
    
    .tv-subtitle {
        font-size: 1.1rem;
    }
    
    .tv-logo {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .tv-player-container-enhanced {
        padding: 1rem;
        width: 95%;
    }
    
    .tv-title {
        font-size: 1.6rem;
    }
    
    .tv-subtitle {
        font-size: 1rem;
    }
    
    .tv-control-btn-new {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .tv-controls-enhanced {
        text-align: center;
    }
    
    #tv-player-main.video-js,
    .tv-iframe-main {
        height: 250px;
    }
}

/* Grid de 4 Noticias Laterales (Derecha) - DISEÑO PROFESIONAL - MANTENER PARA COMPATIBILIDAD */
.news-side-grid {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 0.6rem;
}

/* ======================================================================
   SECCIÓN EVO ES PUEBLO - NUEVA IMPLEMENTACIÓN
   ====================================================================== */
.evo-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--harmonic-dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.evo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.video-wrapper {
    background: #000;
    border-radius: 1rem;
}

.video-wrapper:hover {
    /* Sin animaciones ni efectos hover */
}

.play-btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.play-btn:hover {
    /* Sin animaciones ni efectos hover */
}

#video-player {
    background: #000;
    border-radius: 1rem;
    min-height: 500px;
    width: 100%;
    position: relative;
    height: 100%;
}

#youtube-iframe {
    border: none;
    border-radius: 1rem;
    min-height: 500px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

/* Mejoras de texto */
.evo-section h2 {
    position: relative;
    z-index: 2;
}

.evo-section h3,
.evo-section p {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .evo-section {
        padding: 3rem 0 !important;
    }
    
    .play-btn {
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .evo-pueblo-section {
        padding: 3rem 0;
    }
    
    .evo-video-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .evo-play-button {
        width: 90px !important;
        height: 90px !important;
        font-size: 2.2rem !important;
    }
    
    .section-header h2 {
        font-size: 2.5rem !important;
    }
    
    .evo-video-container img {
        min-height: 300px !important;
    }
    
    .evo-video-title {
        font-size: 1.8rem !important;
    }
    
    .evo-video-description {
        font-size: 1.1rem !important;
    }
    
    #videoModal .modal-dialog {
        margin: 1rem;
    }
}

.news-side-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    height: 150px;
    border: 1px solid var(--gray-200);
}

.news-side-card:hover {
    border-color: var(--primary-green);
}

.news-side-image {
    position: relative;
    width: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-side-image a {
    display: block;
    width: 100%;
    height: 100%;
}



.news-side-category {
    position: absolute;
    top: 6px;
    left: 6px;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

    .news-side-content {
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        min-height: 150px;
    }

.news-side-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-900);
    min-height: 3.7rem;
    max-height: 3.7rem;
    letter-spacing: -0.01em;
}

.news-side-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-side-title a:hover {
    color: var(--primary-green);
}

    .news-side-meta {
        margin-top: auto;
        padding-top: 0.4rem;
    }

    .news-side-date {
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: 0.01em;
}

.news-side-date::before {
    content: "●";
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* Sección Inferior: 4 Noticias Horizontales */
.news-bottom-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.news-bottom-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}



.news-bottom-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.news-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-bottom-image a {
    display: block;
    width: 100%;
    height: 100%;
}





.news-bottom-content {
    padding: 1rem;
}

.news-bottom-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-900);
}

.news-bottom-title a {
    color: inherit;
    text-decoration: none;
}

.news-bottom-meta {
    margin-top: 0.5rem;
    padding-top: 0.3rem;
    border-top: 1px solid var(--gray-100);
}

.news-bottom-date {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-bottom-date::before {
    content: "●";
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* ===== SECCIONES POR CATEGORÍAS - DISEÑO MODERNO ===== */
.category-news-section-modern {
    margin-bottom: 1.5rem;
}

/* Nuevo diseño de header de categorías */
.category-header-new {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.category-title-container {
    margin-bottom: 0.5rem;
}

.category-title-line-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.category-line-thick {
    height: 6px;
    width: 60px;
    margin-top: 0.2rem;
}

.category-line-thin {
    height: 1px;
    flex: 1;
    opacity: 0.4;
}



.category-title-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.category-title-link:hover {
    text-decoration: none;
}

.category-right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-ver-mas {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.category-ver-mas:hover {
    text-decoration: underline;
}

.category-title-new {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--font-family-headings);
    width: auto;
}





/* Layout moderno para categorías */
/* Layout Principal de Categorías (igual que Últimas Noticias) */
.category-news-main-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.category-news-top-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    align-items: start;
}

/* Noticia Principal de Categoría */
.category-news-main-featured {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}



.category-news-main-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.category-news-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}



.category-news-main-category {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}



.category-news-main-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.category-news-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.category-news-main-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-news-main-title a:hover {
    color: var(--primary-green);
}

.category-news-main-meta {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-100);
}

.category-news-main-date {
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-news-main-excerpt {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Grid de 4 Noticias Laterales de Categoría */
.category-news-side-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.6rem;
    height: 100%;
}

.category-news-side-card {
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--gray-200);
}



.category-news-side-image {
    position: relative;
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.category-news-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-news-side-image a {
    display: block;
    width: 100%;
    height: 100%;
}



.category-news-side-category {
    position: absolute;
    top: 6px;
    left: 6px;
    color: white;
    padding: 3px 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-news-side-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.category-news-side-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-900);
    min-height: 3.7rem;
    max-height: 3.7rem;
}

.category-news-side-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-news-side-title a:hover {
    color: var(--primary-green);
}

.category-news-side-meta {
    margin-top: auto;
    padding-top: 0.4rem;
}

.category-news-side-date {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.category-news-side-date::before {
    content: "●";
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* ===== MULTIMEDIA SECTION ===== */
.multimedia-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.multimedia-section .section-title::after {
    display: none;
}

.multimedia-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 400;
}

.multimedia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.multimedia-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-200);
}



.multimedia-image-container {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.multimedia-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



/* Badge de VIDEO */
.multimedia-video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff0000;
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Overlay con icono de play */
.multimedia-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.multimedia-card:hover .multimedia-play-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.multimedia-play-button {
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.multimedia-card:hover .multimedia-play-button {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 0, 0, 1);
}

.multimedia-content {
    padding: 1.2rem;
}

.multimedia-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.multimedia-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.multimedia-title a:hover {
    color: var(--primary-green);
}

.multimedia-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.multimedia-meta i {
    margin-right: 0.5rem;
}

/* ===== REDES SOCIALES MEJORADAS ===== */
.social-networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ===== CAROUSEL DE BANNERS ===== */
.home-carousel {
    overflow: hidden;
}

.home-carousel .carousel-item img {
    height: 450px;
    object-fit: cover;
}

/* ===== ESTADOS VACÍOS MODERNOS ===== */
.news-empty-state-modern,
.multimedia-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border: 1px solid var(--gray-200);
}

.news-empty-state-modern i,
.multimedia-empty-state i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.news-empty-state-modern h4,
.multimedia-empty-state h4 {
    color: var(--gray-800);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.news-empty-state-modern p,
.multimedia-empty-state p {
    color: var(--gray-600);
    margin: 0;
    font-size: 1.1rem;
}

/* ===== SECCIÓN EVO MORALES ===== */
.evo-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a4d2a 50%, var(--gray-900) 100%);
    color: var(--white);
    padding: 2.5rem 0;
    margin: 2rem 0 2rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    box-sizing: border-box;
}

.evo-content {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evo-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evo-handle {
    font-size: 1rem;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
    font-weight: 500;
}

.evo-description {
    margin-bottom: 1rem;
}

.evo-description p {
    margin-bottom: 1rem;
    text-align: left;
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.evo-signature {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: right;
    font-style: italic;
    margin-bottom: 0;
}

.evo-image {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.evo-image img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    border: none;
    box-shadow: none;
    border-radius: 8px;
}

/* Botón de Twitter */
.btn-twitter {
    background: #1da1f2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-twitter:hover {
    background: #0d8bd9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

/* Responsive para sección Evo */
@media (max-width: 991px) {
    .evo-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }
    
    .evo-content {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .evo-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .evo-handle {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .evo-description {
        margin-bottom: 0.8rem;
    }
    
    .evo-signature {
        text-align: center;
    }
    
    .evo-twitter-btn {
        text-align: center;
    }
    
    .evo-image img {
        min-height: 200px;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .evo-section {
        padding: 1.5rem 0;
        margin: 1rem 0;
    }
    
    .evo-title {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .evo-handle {
        margin-bottom: 0.6rem;
    }
    
    .evo-description {
        margin-bottom: 0.6rem;
    }
    
    .evo-description p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .evo-image img {
        min-height: 180px;
        max-height: 250px;
    }
}

/* ===== RESPONSIVE DESIGN PARA NUEVO LAYOUT ===== */
@media (max-width: 1200px) {
    .news-bottom-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-news-main-layout {
        margin-top: 1rem;
    }
    
    .category-news-top-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-news-side-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .section-title-modern {
        font-size: 2.2rem;
    }
    
    .category-title-new {
        font-size: 1.9rem;
    }
    
    .category-line-thick {
        width: 35px;
        height: 3px;
    }
    
    /* Layout principal se vuelve vertical en tablet */
    .news-top-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-main-image {
        height: 240px;
    }
    
    .news-main-content {
        padding: 1.3rem;
    }
    
    .news-main-title {
        font-size: 1.3rem;
    }
    
    /* Noticias laterales se vuelven grid 2x2 */
    .news-side-grid {
        grid-template-rows: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .news-side-card {
        height: 150px;
    }
    
    .news-side-image {
        width: 150px;
    }
    
    /* Noticias inferiores en 2 columnas */
    .news-bottom-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .news-bottom-image {
        height: 130px;
    }
    
    .category-news-main-layout {
        margin-top: 1rem;
    }
    
    .category-news-top-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-news-side-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .category-news-main-image {
        height: 240px;
    }
    
    .category-news-main-content {
        padding: 1.2rem;
    }
    
    .category-news-main-title {
        font-size: 1.3rem;
    }
    
    .social-networks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .home-carousel .carousel-item img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .category-title-new {
        font-size: 1.6rem;
    }
    
    .category-line-thick {
        width: 30px;
        height: 3px;
    }
    
    /* Todo se vuelve vertical en móvil */
    .news-top-section {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .news-main-image {
        height: 190px;
    }
    
    .news-main-content {
        padding: 1.1rem;
    }
    
    .news-main-title {
        font-size: 1.15rem;
    }
    
    /* Noticias laterales en 1 columna */
    .news-side-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0.6rem;
    }
    
    .news-side-card {
        height: 150px;
    }
    
    .news-side-image {
        width: 150px;
    }
    
    .news-side-title {
        font-size: 0.9rem;
        min-height: 4.3rem;
        max-height: 4.3rem;
        line-height: 1.2;
        -webkit-line-clamp: 4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        margin-bottom: 0.4rem;
    }
    
    /* Noticias inferiores en 1 columna */
    .news-bottom-section {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .news-bottom-image {
        height: 160px;
    }
    
    .news-bottom-title {
        font-size: 0.85rem;
    }
    
    .category-news-main-image {
        height: 200px;
    }
    
    .category-news-main-content {
        padding: 1rem;
    }
    
    .category-news-main-title {
        font-size: 1.1rem;
    }
    
    .category-news-side-card {
        height: 100%;
    }
    
    .category-news-side-image {
        width: 100%;
        height: 140px;
    }
    
    .social-networks-grid {
        grid-template-columns: 1fr;
    }
    
    .home-carousel .carousel-item img {
        height: 200px;
    }
    
    .btn-modern-primary,
    .btn-category-more {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    /* Responsive para categorías en móvil */
    .category-news-side-title {
        font-size: 0.9rem;
        min-height: 4.3rem;
        max-height: 4.3rem;
        line-height: 1.2;
        -webkit-line-clamp: 4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        margin-bottom: 0.4rem;
    }
    
    .category-news-side-card {
        height: 100%;
    }
    
    .category-news-side-image {
        width: 100%;
        height: 120px;
    }
    
    .category-news-side-content {
        flex: 1;
    }
}

/* ===== VIDEO INDIVIDUAL PAGE ===== */
.wmb-video-player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.wmb-video-player-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.wmb-video-description {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-green);
}

.wmb-video-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0;
}

.wmb-related-videos-list {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.wmb-related-videos-list h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.wmb-related-video-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 1rem;
}

.wmb-related-video-item:hover {
    background: #f8f9fa;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wmb-thumbnail-link {
    flex-shrink: 0;
    margin-right: 1rem;
}

.wmb-thumbnail-link img {
    width: 120px;
    height: 68px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.wmb-related-video-item:hover .wmb-thumbnail-link img {
    transform: scale(1.05);
}

.wmb-video-details {
    flex: 1;
    min-width: 0;
}

.wmb-video-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.wmb-video-title:hover {
    color: var(--primary-green) !important;
}

.wmb-video-channel {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive para video individual */
@media (max-width: 992px) {
    .wmb-video-player-wrapper iframe {
        height: 350px;
    }
    
    .wmb-related-videos-list {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .wmb-video-player-wrapper iframe {
        height: 250px;
    }
    
    .wmb-video-description {
        padding: 1.5rem;
    }
    
    .wmb-video-description p {
        font-size: 1rem;
    }
    
    .wmb-related-video-item {
        padding: 0.75rem;
    }
    
    .wmb-thumbnail-link img {
        width: 100px;
        height: 56px;
    }
    
    .wmb-video-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .wmb-video-player-wrapper iframe {
        height: 200px;
    }
    
    .wmb-video-description {
        padding: 1rem;
    }
    
    .wmb-related-videos-list {
        padding: 1rem;
    }
    
    .wmb-related-video-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wmb-thumbnail-link {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .wmb-thumbnail-link img {
        width: 100%;
        height: 120px;
    }
}

/* ===== VIDEOS PAGE ===== */
.videos-header-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--harmonic-dark-green) 100%);
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.videos-header-content {
    text-align: center;
    color: white;
}

.videos-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.videos-header-underline {
    width: 80px;
    height: 4px;
    background: white;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.videos-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.videos-main-section {
    padding: 0 0 4rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.video-card-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f8f9fa;
}

.video-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.video-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
}

.video-card:hover .video-card-image {
    transform: scale(1.05);
}

/* ===== RESPONSIVE PARA NUEVO LAYOUT DE NOTICIAS ===== */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .news-top-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-sidebar {
        position: static;
        margin-top: 1rem;
    }
    
    .news-secondary-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .news-left-column {
        gap: 1rem;
    }
    
    .news-main-featured {
        border: 1px solid var(--gray-200);
    }
    
    .news-main-image {
        height: 280px;
    }
    
    .news-main-content {
        padding: 1rem;
    }
    
    .news-main-title {
        font-size: 1.3rem;
    }
    
    .news-secondary-image {
        height: 150px;
    }
    
    .news-secondary-content {
        padding: 0.8rem;
    }
    
    .news-sidebar {
        padding: 1rem;
        border: 1px solid var(--gray-200);
    }
    
    .most-read-title {
        font-size: 1.1rem;
    }
    
    .most-read-item {
        padding: 0.6rem 0;
        gap: 0.6rem;
    }
    
    .most-read-item:hover {
        margin: 0 -0.6rem;
        padding: 0.6rem;
    }
    
    .most-read-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        border-radius: 50%;
    }
    
    .most-read-item {
        gap: 0.5rem;
        padding: 0.3rem 0;
    }
    
    .news-sidebar {
        padding: 0.8rem;
    }
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.video-play-button {
    background: #ff0000;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-card:hover .video-play-button {
    transform: scale(1.1);
    background: #cc0000;
}

.video-card-content {
    padding: 1.5rem;
}

.video-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-title a {
    color: var(--harmonic-dark-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-card-title a:hover {
    color: var(--primary-green);
}

.video-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.video-card-date,
.video-card-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-card-date i,
.video-card-category i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.videos-pagination-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.videos-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.videos-empty-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.videos-empty-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 1rem;
}

.videos-empty-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive para videos */
@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-card-content {
        padding: 1.25rem;
    }
    
    .video-card-title {
        font-size: 1rem;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-card-content {
        padding: 1rem;
    }
    
    .video-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .videos-empty-state {
        padding: 3rem 1rem;
    }
    
    .videos-empty-title {
        font-size: 1.5rem;
    }
}

/* Responsive para multimedia */
@media (max-width: 1200px) {
    .multimedia-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .multimedia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .multimedia-image-container {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .multimedia-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .multimedia-image-container {
        height: 160px;
    }
}

/* ===== SECTION TITLE LINKS ===== */
.section-title-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-title-link:hover {
    color: var(--primary-green) !important;
    text-decoration: none;
    opacity: 1;
}

/* === SECCIÓN REDES SOCIALES ULTRA MODERNA === */
.social-section-ultra {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}



.social-header-ultra {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.social-title-ultra {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gray-700);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.social-title-ultra::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-orange);
    border-radius: 1px;
}

.social-row-ultra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.social-item-ultra {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.social-item-ultra:hover {
    transform: translateY(-12px) scale(1.1);
    text-decoration: none;
}

.social-circle-ultra {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 1rem;
    overflow: hidden;
}

.social-circle-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-item-ultra:hover .social-circle-ultra::before {
    opacity: 0.6;
}

.social-item-ultra:hover .social-circle-ultra {
    transform: rotate(360deg) scale(1.1);
}

.social-label-ultra {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.social-item-ultra:hover .social-label-ultra {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary-green);
}



/* Colores específicos para cada red social ultra */
.facebook-ultra .social-circle-ultra {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.youtube-ultra .social-circle-ultra {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.tiktok-ultra .social-circle-ultra {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.telegram-ultra .social-circle-ultra {
    background: linear-gradient(135deg, #0088cc, #0066aa);
}

/* Responsive para redes sociales ultra */
@media (max-width: 768px) {
    .social-row-ultra {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .social-circle-ultra {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-title-ultra {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .social-row-ultra {
        gap: 1.5rem;
    }
    
    .social-circle-ultra {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ========================================================================
   PÁGINA DE CONTACTOS - ESTILOS MODERNOS
   ======================================================================== */

/* Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-orange));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 1.2rem;
}

.contact-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-orange);
}

.contact-hero-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-hero-card p {
    opacity: 0.9;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    background: #f8f9fa;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-header h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.btn-contact-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-orange));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-contact-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info-content h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-info-content p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Social Media Section */
.contact-social-section {
    padding: 80px 0;
    background: white;
}

.contact-social-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-social-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-social-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.contact-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-social-content h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.contact-social-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Colores específicos para redes sociales */
.contact-social-item.facebook .contact-social-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.contact-social-item.facebook:hover {
    border-color: #1877f2;
}

.contact-social-item.tiktok .contact-social-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.contact-social-item.tiktok:hover {
    border-color: #ff0050;
}

.contact-social-item.youtube .contact-social-icon {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.contact-social-item.youtube:hover {
    border-color: #ff0000;
}

.contact-social-item.telegram .contact-social-icon {
    background: linear-gradient(135deg, #0088cc, #0066aa);
}

.contact-social-item.telegram:hover {
    border-color: #0088cc;
}



/* Responsive Design */
@media (max-width: 991.98px) {
    .contact-hero-title {
        font-size: 2.8rem;
    }
    
    .contact-hero-stats {
        justify-content: center;
    }
    
    .contact-form-card {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-hero-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-social-section {
        padding: 60px 0;
    }
    
    .contact-social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-social-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
    
    .contact-social-item {
        padding: 1.5rem;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA SECCIÓN EVO ES PUEBLO ===== */
.evo-es-pueblo-section {
    background: transparent;
    color: #212529;
    position: relative;
}

.evo-es-pueblo-section .container {
    position: relative;
}

.evo-section-title {
    color: #094724 !important;
    text-shadow: 2px 2px 8px rgba(255,255,255,0.8);
    letter-spacing: 1px;
    font-weight: 700;
}

.evo-section-divider {
    width: 80px;
    height: 3px;
    background: #094724;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(9,71,36,0.3);
}

.evo-video-title {
    color: #094724 !important;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.8);
    font-weight: 600;
}

.evo-video-description {
    max-width: 600px;
    margin: 0 auto;
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.7);
}

/* Ajustes para el contenedor de video en la nueva sección */
.evo-es-pueblo-section .video-wrapper {
    box-shadow: 0 10px 30px rgba(9,71,36,0.15);
    border: 2px solid rgba(9,71,36,0.1);
}

/* Nuevos estilos mejorados para el card del video destacado - Sin sombras */
.evo-featured-video-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.evo-featured-video-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        var(--primary-green) 0%, 
        var(--secondary-orange) 25%, 
        var(--accent-bright-green) 50%, 
        var(--primary-green) 75%, 
        var(--harmonic-dark-green) 100%);
    border-radius: 1.5rem;
    z-index: -1;
}

.evo-featured-video-inner {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid rgba(9, 71, 36, 0.08);
}

.evo-featured-video-frame {
    position: relative;
    background: #000000;
    border-radius: 1rem;
    overflow: hidden;
    margin: 8px;
}

.evo-featured-play-button {
    width: 90px;
    height: 90px;
    background: var(--primary-green);
    color: white;
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.evo-featured-badge {
    background: var(--primary-green) !important;
    color: white !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
}

.evo-featured-overlay {
    background: rgba(0, 0, 0, 0.1) !important;
    cursor: pointer;
}

.evo-featured-video-info {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 2.5rem 2rem;
    margin: 0;
    border: 1px solid rgba(9, 71, 36, 0.06);
    border-top: none;
}

.evo-featured-video-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.evo-featured-video-description {
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
    font-size: 1.2rem;
}

.evo-es-pueblo-section .no-video-message {
    background: rgba(9,71,36,0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(9,71,36,0.1);
}

.evo-es-pueblo-section .no-video-message i {
    color: #094724;
}

.evo-es-pueblo-section .no-video-message h4 {
    color: #094724;
    font-weight: 600;
}

.evo-es-pueblo-section .no-video-message p {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .evo-section-title {
        font-size: 2.5rem;
    }
    
    .evo-video-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ======================================================================
   ESTILOS ESPECÍFICOS PARA LA NUEVA PÁGINA DE RADIO CON FONDO BLANCO
   ====================================================================== */

/* Estilos específicos para la nueva página de radio con fondo blanco */
.radio-page .radio-player-container-enhanced {
    background: white;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.radio-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.radio-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.radio-live-indicator {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.radio-player-wrapper {
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    outline: none;
}

.radio-player {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--harmonic-dark-green) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.radio-controls-enhanced {
    margin-top: 1.5rem;
    text-align: center;
}

.radio-control-btn-new {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 8px 16px;
    margin: 0 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
}

.radio-control-btn-new:hover {
    background: #e9ecef;
    color: #495057;
}

.radio-control-btn-new i {
    font-size: 1rem;
}

.radio-control-btn-new span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive para nueva página de radio */
@media (max-width: 768px) {
    .radio-page .radio-player-container-enhanced {
        padding: 1.5rem;
        width: 95%;
    }
    
    .radio-title {
        font-size: 1.8rem;
    }
    
    .radio-logo {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .radio-page .radio-player-container-enhanced {
        padding: 1rem;
        width: 95%;
    }
    
    .radio-title {
        font-size: 1.6rem;
    }
    
    .radio-control-btn-new {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .radio-controls-enhanced {
        text-align: center;
    }
}

