.video-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.video-section .elementor-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.video-section .video-column {
    flex: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #000; /* Fundo preto para evitar tela branca */
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
    background-color: #000; /* Fundo preto para evitar tela branca */
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(112, 115, 98, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 3;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(112, 115, 98, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(112, 115, 98, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(112, 115, 98, 0);
    }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden; /* Usar visibility em vez de display */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: #000; /* Fundo preto para evitar tela branca */
}

.video-container.visible {
    opacity: 1;
    visibility: visible;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000; /* Fundo preto para evitar tela branca */
}

.video-section .content-column {
    flex: 1;
    padding: 0 20px;
}

.video-section .elementor-heading-title {
    color: #707362;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.video-section p {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.video-section .elementor-button {
    background-color: #707362;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.video-section .elementor-button:hover {
    background-color: #5d604f;
    transform: translateY(-2px);
}

.video-section .elementor-button-icon {
    display: inline-flex;
}

@media (max-width: 768px) {
    .video-section .elementor-container {
        flex-direction: column;
    }
    
    .video-section .video-column,
    .video-section .content-column {
        width: 100%;
        padding: 0 15px;
    }
    
    .video-section .elementor-heading-title {
        font-size: 24px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        border-width: 12px 0 12px 20px;
    }
}
