/* ===== REVISTA DIGITAL RADIO & TV ===== */

/* Hero Section - Revista Digital */
.magazine-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*padding: 60px 0 40px;*/
    border-bottom: 1px solid #dee2e6;
    min-height: 400px;
    overflow: hidden;
}

.magazine-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomInOut 8s ease-in-out infinite;
    z-index: -1;
}



/* Hero Content Simplificado */
.hero-content-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}


.container-full{
    width: 100%;
}

/* Reproductor Luna Radio */
.player-luna {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: block !important;
    visibility: visible !important;
}

#lunaradio {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 860px) {

}


/* ===== SECCIÓN DE CONTACTO Y PATROCINADORES ===== */
.contacto-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.column-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

/* ===== COLUMNA DE PATROCINADORES ===== */
.patrocinadores-column {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.patrocinadores-slider {
    position: relative;
    height: 360px;
    overflow: hidden;
    margin-bottom: 0rem;
}

.patrocinador-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-in-out;
}

.patrocinador-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.patrocinador-slide.exit {
    opacity: 0;
    transform: translateX(-30px);
}

.patrocinador-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.patrocinador-logo {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.patrocinador-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.patrocinador-nombre {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.patrocinador-descripcion {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.patrocinador-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.patrocinador-link:hover .patrocinador-descripcion {
    color: #007bff;
}

.patrocinadores-action {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* ===== COLUMNA DE CONTACTO ===== */
.contacto-column {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.contacto-info {
    margin-bottom: 2rem;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.contacto-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
}

.contacto-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contacto-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.contacto-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
}

.contacto-value:hover {
    color: #007bff;
}

/* Redes Sociales */
.redes-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.redes-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.red-social {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.red-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.red-social.facebook {
    background: #1877f2;
}

.red-social.youtube {
    background: #ff0000;
}

.red-social.tiktok {
    background: #000000;
}

.red-social.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


/* NOSOTROS HOME*/
.nosotros-full-width {
    background: #0b6568;
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.full-width-nosotros {
    color: #ffffff;
    font-size: 1.2em;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 1rem;
    }
    
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 90vh;
    }
}

/* Animaciones */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ===== SECCIONES ADICIONALES ===== */

/* Container general */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== SECCIÓN DE NOTICIAS ===== */
.noticias-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.noticia-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.noticia-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.noticia-content {
    padding: 1.5rem;
}

.noticia-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-title a{
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.noticia-title a:hover{
    color: #007bff;
}

.noticia-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.noticia-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.noticia-date {
    color: #999;
    font-size: 0.9rem;
}

.noticia-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.noticia-link:hover {
    color: #0056b3;
}

/* ===== STICKER DE PROGRAMACIÓN ===== */
.programacion-sticker {
    padding: 40px 0;
    background: #0b6568;
    color: white;
    position: relative;
    z-index: 10;
}

.sticker-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticker-icon {
    font-size: 3rem;
    margin-right: 2rem;
    opacity: 0.9;
}

.sticker-info {
    flex: 1;
}

.sticker-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.programa-actual {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.programa-nombre {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    visibility: visible;
    color: white;
}

.programa-horario {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    visibility: visible;
    color: rgba(255, 255, 255, 0.8);
}

/* Ticker de Programación */
.programa-ticker {
    position: relative;
    height: 60px;
    overflow: hidden;
    display: block;
    visibility: visible;
}

.programa-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 1;
}

.programa-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.programa-slide.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.sticker-action {
    margin-left: 2rem;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #007bff;
}

/* ===== SECCIÓN DE VIDEO ===== */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-destacado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.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: opacity 0.3s ease;
}

.video-thumbnail:hover .video-play-overlay {
    opacity: 1;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-play-btn i {
    font-size: 2rem;
    color: #dc3545;
    margin-left: 3px;
}

.video-info {
    padding-left: 1rem;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-nuevo-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
}

.video-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-date {
    color: #999;
    font-size: 1rem;
}

.video-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: #a71e2a;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Pantallas menores a 860px - Reproductor Luna */
@media (max-width: 860px) {
    .player-luna {
        height: 50vh !important;
        min-height: 350px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    #lunaradio {
        width: 100% !important;
        height: 100% !important;
        min-height: 350px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .magazine-hero {
       /* min-height: 50vh !important;*/
    }
    
    .hero-overlay {
        display: block !important;
        visibility: visible !important;
    }
    
    .container-full {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Pantallas menores a 1000px */
@media (max-width: 999px) {
    /* Video destacado en una columna */
    .video-destacado {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contacto y patrocinadores en una columna */
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Ajustar tamaños de patrocinadores */
    .patrocinadores-slider {
        height: 300px;
    }
    
    .patrocinador-logo {
        width: 100%;
        height: 200px;
    }
    
    /* Ajustar padding de secciones */
    .contacto-section {
        padding: 60px 0;
    }
    
    .video-section {
        padding: 60px 0;
    }
    
    /* Mejorar espaciado en video */
    .video-info {
        padding-left: 0;
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .video-title {
        font-size: 1.6rem;
        justify-content: center;
    }
    
    .video-meta {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 860px) {
    .player-luna {
        height: 80vh !important;
        min-height: 300px !important;
        display: block !important;
        visibility: visible !important;
    }
     /* Hero Section Responsive */
     .magazine-hero {
        /*padding: 20px 0 10px;*/
        min-height: 75vh !important;
    }

}

@media (max-width: 768px) {
    /* Reproductor Luna en móvil */
    .player-luna {
        height: 85vh !important;
        min-height: 300px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    #lunaradio {
        width: 100% !important;
        height: 100% !important;
        min-height: 300px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero Section Responsive */
    .magazine-hero {
        /*padding: 20px 0 10px;*/
        min-height: 80vh !important;
    }
    
    .hero-content-simple {
        min-height: 250px;
    }
    
    .magazine-title {
        font-size: 2.2rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .magazine-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    
    
    /* Contacto responsive */
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacto-section {
        padding: 60px 0;
    }
    
    .column-title {
        font-size: 1.5rem;
    }
    
   .patrocinadores-slider {
        height: 250px;
    }
    
    .patrocinador-logo {
        height: 250px;
    }
    
    .patrocinador-nombre {
        font-size: 1.2rem;
    }
    
    .redes-links {
        gap: 0.75rem;
    }
    
    .red-social {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    
        
    /* Sticker de Programación Responsive */
    .programacion-sticker {
        padding: 30px 0;
        display: block !important;
        visibility: visible !important;
    }
    
    .sticker-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
        display: flex !important;
        visibility: visible !important;
    }
    
    .sticker-info {
        display: block !important;
        visibility: visible !important;
        width: 100%;
    }
    
    .programa-ticker {
        height: 60px;
        display: block !important;
        visibility: visible !important;
        position: relative;
    }
    
    .programa-slide {
        position: relative !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .programa-nombre {
        font-size: 1.3rem;
        color: white !important;
        font-weight: 700 !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .programa-horario {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .sticker-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .sticker-action {
        margin-left: 0;
    }
    
    .video-destacado {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-info {
        padding-left: 0;
        text-align: center;
    }
    
    .video-title {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
    
    .video-nuevo-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Reproductor Luna en móvil pequeño */
    .player-luna {
        height: 80vh !important;
        min-height: 250px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    #lunaradio {
        width: 100% !important;
        height: 100% !important;
        min-height: 250px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero móvil */
    .magazine-hero {
       /* padding: 15px 0 5px;*/
       min-height: 80vh !important;
    }
    
    /* Animación más sutil en móvil */
    .magazine-hero::before {
        animation: zoomInOutMobile 10s ease-in-out infinite;
    }
    
    .magazine-title {
        font-size: 1.8rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .magazine-description {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .noticias-section,
    .video-section {
        padding: 40px 0;
    }
    
    .noticia-content {
        padding: 1rem;
    }
    
    .sticker-content {
        padding: 1.5rem;
    }
    
    .sticker-title {
        font-size: 1.2rem;
    }
    
    .programa-nombre {
        font-size: 1.2rem;
    }
    
    .programa-ticker {
        height: 55px;
    }
    
    .programa-slide {
        position: relative;
        opacity: 1;
        transform: translateY(0);
    }
    
    .programa-nombre {
        display: block;
        color: white;
        font-weight: 700;
    }
    
    .programa-horario {
        display: block;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 1.5rem;
    }
}