.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: white;
    border: 2px solid #333;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
}


.popup h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding: 10px;
    color: #ff9b04;
    background-color: #7a2628;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 0px;
}


.popup p {
    margin-bottom: 20px;
    /* Espaçamento entre texto e botão */
    margin-top: 20px;

    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    font-weight: 600;

}

.popup button {

    border: 0.125rem solid #ff9b04;
    border-radius: 1.25rem;
    background-color: #ff9b04;
    color: #af182b;
    font-size: 1.875rem;
    font-weight: 800;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;

    padding: 10px 20px;
    /*  background-color: #ff9b04;;
    color: white;*/
    border: none;
    cursor: pointer;
    margin-top: 10px;
    /* Espaçamento entre texto e botão */
    margin-bottom: 10px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}