/* Estilos para el contenedor del video */
.video-container {
    position: relative;
    width: 100%;
    height: 420px;
}

/* Miniatura personalizada */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 2;
    border-radius: 35px;
}

/* Estilo para el botón de reproducción */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}

iframe {
    width: 100%;
    height: 100%;
    display: none;
    border-radius: 35px;
    /* Oculta el iframe hasta que el video se reproduzca */
}

.btn-play {
    width: 150px;
    height: 150px;
    background: radial-gradient(36.67% 36.67% at 50% 50%, #3E0099 0%, #6800FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        margin-left: 15px;
    }
}

.filter-gray-thumnail {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    border-radius: 35px;
}

.text-watch-now {
    color: white;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}

.container-video-paragraph{
    padding-top: 20px;
    padding-bottom: 80px;

    @media screen and (max-width: 960px){
        padding-top: 50px;
    }

    @media screen and (max-width: 520px) {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

.content-video {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 128px;
}

.info-description-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.title-content-video {
    font-size: var(--fs-h2);
    font-weight: 500;
    color: #6800FF;
}

.field--name-field-services-content {
    .container-video-paragraph {
        display: none;
        @media screen and (max-width: 767px) {
            display: block;
            .title-content-video {
                text-align: center;
                font-weight: 500;
                color: #222222;

                strong {
                    font-weight: 700;
                }
            }
        }
    }
}

.description-content-video {
    font-weight: 400;
    max-width: 610px;
    font-size: 40px;
    line-height: 50px;
}

@media screen and (max-width: 1580px) {

    .title-content-video {
        font-size: var(--fs-h3);
        line-height: 30px;
    }

    .description-content-video {
        font-size: var(--fs-h4);
        line-height: 30px;
    }
}

@media screen and (max-width: 1510px) {
    .content-video {
        padding: 80px 40px;
    }
}

@media screen and (max-width: 1340px) {
    .title-content-video {
        margin: 0;
    }

    .video-container {
        width: 100%;
        height: 350px;
    }
}

@media screen and (max-width: 1100px) {
    .video-container {
        width: 100%;
        height: 420px;
        margin-top: 15px;
    }

    .content-video {
        flex-direction: column;
        align-items: start;
    }

    .description-content-video {
        max-width: max-content;
    }
}

@media screen and (max-width: 992px) {
    .title-content-video {
        font-size: var(--fs-h5);
        line-height: 24px;
    }

    .description-content-video {
        font-size: var(--fs-h6);
        line-height: 24px;
    }
}

@media screen and (max-width: 520px) {

    .content-video {
        padding: 40px 25px;
        padding-bottom: 0;
    }

    .title-content-video {
        font-size: var(--fs-body);
        line-height: 20px;
    }

    .description-content-video {
        font-size: var(--fs-footnote);
        margin: 0;
        margin-top: 3px;
        line-height: 20px;
    }

    .video-thumbnail,
    .filter-gray-thumnail {
        border-radius: 25px;
    }

    .video-container {
        height: 141px;
        margin-top: 5px;
    }

    .btn-play {
        width: 50px;
        height: 50px;
        background: #E92651;
        margin-top: 10px;

        img {
            margin-left: 5px;
            width: 22px;
        }
    }

    .text-watch-now {
        font-size: 10px;
    }
}