.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 10000000000000000000000000000000009; /* Coloca o popup acima dos outros elementos */
    width: 90%;
}

.overlaydois {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.815); /* Cor do overlay com transparência */
    z-index: 10000000000000000000000000000000000; /* Coloca o overlay abaixo do popup */
}
.popup-content {
    position: relative;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 1em;
    background-color: red;
    padding: 1em;
    color: white;
    display: flex;
    align-items: center;
    
}

iframe {
    width: 100%;
    height: 400px; /* Ajuste conforme necessário */
    border: none;
}


@media screen and (min-width: 1000px) {

    .popup {
        margin-top: 2em;
    }
    iframe {
        width: 100%;
        height: 70vh; /* Ajuste conforme necessário */
        border: none;
        z-index: 100000000; /* Coloca o popup acima dos outros elementos */

    }
    


}