/* ============================================
   VIDEO DESTACADO - SOLO MOBILE
   ============================================ */

.video-destacado-section {
    display: none; /* Oculto por defecto (desktop) */
    width: 100%;
    padding: 0;
    margin: 0;
}

.video-destacado-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.video-destacado {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Botón de audio */
.video-audio-toggle {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-audio-toggle:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.video-audio-toggle:active {
    transform: scale(0.95);
}

.video-audio-toggle i {
    font-size: 1.25rem;
}

/* Mostrar solo en mobile */
@media (max-width: 768px) {
    .video-destacado-section {
        display: block;
        padding: 0.5rem 0 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .video-destacado-section {
        padding: 0.5rem 0 2.5rem 0;
    }
    
    .video-destacado-container {
        height: 180px;
    }
    
    .video-audio-toggle {
        width: 32px;
        height: 32px;
        bottom: 0.625rem;
        right: 0.625rem;
    }
    
    .video-audio-toggle i {
        font-size: 1.125rem;
    }
}
