﻿/* --- Estilos Generales y Comunes (Ambos: Mobile y Desktop) --- */
.documentary-video-player {
    /* Altura fija y mínima para la sección (ajustada para ser 'enorme') */
    width: 100%;
    /* background-color: #000; */
}
.documental-texto {
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
}
.documental-texto h4 {
    font-size: 2rem;
}
.documental-texto p {
    font-size: 1.2rem;
    text-align: center;
}
#documental-player-section-2 {
    min-height: 800px;
    /* position: relative; */
}
.video-placeholder {
    background-image: url('/Personas/Paginas/un-salto-gigante/d/assets/imgs/Dominicana-On-Desktop.webp');
}
/* El Iframe siempre está oculto al inicio y toma todo el espacio */
.documentary-video-player iframe {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 1920px;
    max-width: 1920px;
    min-height: 1080px;
    max-height: 1080px;
    border: none;
    opacity: 0;
    /* Oculto inicialmente */
    pointer-events: none;
    /* No interactuable inicialmente */
    transition: opacity 0.5s;
}

/* Contenedor de la Imagen de Portada */
.video-placeholder {
    position: absolute;
    background-size: cover;
    background-position: center;
    left: 0;
    /* height: 100%; */
    min-height: 1080px;
    cursor: pointer;
    transition: opacity 0.5s;
    width: 100%;
}

/* El Placeholder del video desaparece al hacer clic/cuando está 'playingVideo2' */
.documentary-video-player.playingVideo2 .video-placeholder {
    opacity: 0;
    pointer-events: none;
}

/* El Iframe aparece al hacer clic/cuando está 'playingVideo2' */
.documentary-video-player.playingVideo2 iframe {
    opacity: 1;
    pointer-events: auto;
}

/* Estilos del Icono de Play */
.play-icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: absolute;
    top: 48%;
    left: 50%;
}

.play-icon-placeholder::after {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #000e23;
    margin-left: 3px;
}



/* --- Versión Desktop (1024px hacia arriba) --- */
@media (min-width: 768px) and (max-width:1025px) {

    /* --- Versión Móvil (Default: 1023px hacia abajo) --- */
    .video-placeholder {
        /* Imagen móvil/tablet */
        background-image: url('/Personas/Paginas/un-salto-gigante/d/assets/imgs/Dominicana-On-Tablet.webp');
    }
}

@media(max-width:767px) {
    .video-placeholder {
        background-image: url('/Personas/Paginas/un-salto-gigante/d/assets/imgs/Dominican-on-phone.webp');
    }
}