.section-video .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.section-video video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.section-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border-radius: 10px;
}

.play-button {
    background-color: transparent; /* Cor do botão */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button:hover {
    scale: 1.1;
}