#to-video-focus {
    color: #fff;
    border-color: #FF0000;
    background-color: #FF0000;
}

#to-video-focus .icon-play {
    font-size: 24px;
}

.video-flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* Para ajustar em telas menores */
}

.video-icon-wrapper,
#video-focus .wp-video {
    flex: 1 1 50%;
    /* Ocupa 50% do espaço disponível */
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    /* Garante que não ultrapasse 50% */
}

.video-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Ocupa todo o espaço disponível */
    height: auto;
}

.video-icon {
    font-size: 5em;
    color: #FF0000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



.video-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video-col {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    border: 0px solid #ddd;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    .video-col {
        flex: 1 1 100%;
    }
}

.video-icon-container {
    text-align: center;
}

.video-icon {
    font-size: inherit;
    /* Inherit the font size from the container */
}

.video-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
}

.wp-video{
    max-width: 400px;
}