/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 19 2026 | 22:35:11 */
/* CONTAINER 16:9 */
.container-video {
	position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
}

/* IFRAME o VIDEO */
.container-video iframe,
.container-video video {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* PREVIEW IMAGE */
.video-preview {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
}

/* OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
    backdrop-filter: blur(4px);
}

/* PLAY ICON grande detrás */
.play-icon {
    position: absolute;
    font-size: 80px;
    color: rgba(255,255,255,0.2);
}

/* LOCK CONTENT */
.lock-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 480px;
}

/* LOCK ICON */
.lock-icon::before {
    font-family: 'Pixelwise-Line-Icons' !important;
    content: "\e9c5";
    font-size: 42px;
    display: block;
    margin-bottom: 20px;
}

/* BOTÓN */
.btn-subscribe {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--e-global-color-accent);
    color: #FFF !important;
	font-family: 'Jost';
    font-weight: 600;
	text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {

    .container-video {
        aspect-ratio: auto;
        min-height: 250px; /* ajusta según diseño */
    }
	
	.container-video iframe, .container-video video {
		height: 250px;
	}

    .video-overlay {
        padding: 30px 20px;
    }

    .play-icon {
        font-size: 56px;
    }

    .lock-icon::before {
        font-size: 32px;
    }
}
