/* Estilos complementares para a seção de vídeo */

.video-section {
    background: #1a1a1a;
}

.video-content {
    color: white;
}

.video-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.video-button svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 1.5;
}

.video-button:hover {
    background: rgba(255, 255, 255, 0.25);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
}

.video-iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1001;
}

.close-button:hover {
    background: #f0f0f0;
}