/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2026 | 13:58:32 */
/* ===== VIDEO BACKGROUND ===== */
#contenedor-video {
    position: relative;
    min-height: 512px;
}

#contenedor-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* ===== BOTÓN PLAY ESTILO VIDEO.JS ===== */
.vjs-big-play-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-family: VideoJS;
    font-size: 2.75em;
    line-height: 3em;
    height: 3em;
    width: 3em;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    margin-top: 35vh !important;
    margin-left: 0 !important;
}

.vjs-big-play-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.05) !important;
}

.vjs-big-play-button::before {
    content: '\f101';
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 3em;
    font-size: 1em;
    color: #372f2d;
}

.vjs-control-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ===== LIGHTBOX CORREGIDO - Con compatibilidad con tu header ===== */

/* Cuando el lightbox está abierto, el header no debe recibir clics */
body.lightbox-open #header {
    pointer-events: none !important;
    z-index: 1 !important;
}

/* El lightbox y todo su contenido debe recibir clics */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,22,21,0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    position: relative;
    width: 95%;
    max-width: 1920px;
    height: auto;
}


/* Botón cerrar - AHORA VISIBLE */
.close-lightbox {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: white;
    color: black;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000; /* Por encima de todo */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: #372f2d;
    color: white;
    transform: scale(1.1);
}

/* Video dentro del lightbox */
.fullscreen-video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    outline: none;
    background: black;
}

/* Forzar visibilidad de controles nativos */
.fullscreen-video::-webkit-media-controls {
    display: flex !important;
}

.fullscreen-video::-webkit-media-controls-panel {
    display: flex !important;
}

/* ===== CONTENEDOR BOTÓN + TEXTOS ===== */
.video-cta-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
    margin-top: 250px;
}

.video-cta-container .vjs-big-play-button {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    flex-shrink: 0;
}

.video-texts {
    display: flex;
    flex-direction: column;
    color: white;
	padding-top: 36px;
}

.main-text {
    font-size: 1.58em;
  	margin-bottom: 5px;
  	text-transform: uppercase;
  	font-family: 'Pontano Sans';
  	font-weight: 500;
	letter-spacing: 0.05em;
}

.sub-text {
	font-family: 'Quattrocento';
	text-transform: uppercase;
    font-size: 0.92em;
	letter-spacing: 0.05em;
    font-weight: 400;
    opacity: 0.8;
	margin-left: 2px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-cta-container {
        gap: 25px;
        margin-top: 230px;
		width: 500px;
    }
    .close-lightbox {
        top: -40px;
        right: -40px;
    }
}

/* ===== RESPONSIVE LIGHTBOX - VIDEO COMPLETO CON SU ASPECTO ===== */

@media (min-width:769px) and (max-width:1919px){
	.lightbox-container {
  		position: initial;
	}
	.fullscreen-video {
    	width: 100% !important;
    	position: absolute !important;
    	top: 0 !important;
    	left: 0 !important;
    	min-width: 100% !important;
    	height: auto !important;
    	transform: none !important;
    	object-fit: cover !important;
    	max-height: none;
    	min-height: auto !important;
  	}
}
@media (max-width: 768px) {
	.video-texts {padding-top: 0;}
	.lightbox-container {
  		position: absolute;
	}
    .fullscreen-video {
    	width: 100% !important;
    	position: absolute !important;
    	top: 0 !important;
    	left: 0 !important;
    	min-width: 100% !important;
    	height: auto !important;
    	transform: none !important;
    	object-fit: cover !important;
    	max-height: none;
    	min-height: auto !important;
  	}
	.video-cta-container {
        gap: 20px;
        margin-top: 260px;
        flex-direction: column;
        text-align: center;
    }
    .video-cta-container .vjs-big-play-button {
        margin-bottom: 10px;
    }
    .video-texts {
        align-items: center;
    }
    .close-lightbox {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
    .lightbox-container {
        width: 95%;
        height: 80%;
    }
}

@media (max-width: 480px) {
    .video-cta-container {
        gap: 15px;

    }
}
























