.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    /* height: 300px; */
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    display: none;
    z-index: 9999;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}


.botao-popup {
 text-align: right;
}


.popup button {
    padding: 5px 10px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.popup .container-botao {
    padding-top: 20px;
}

.botao.wpp-up {
    font-size: 3rem;

}

.wpp-up {
    font-size: 30px;
    margin: 0;
}

.popup span.popup-fino {
    font-weight: 400;
}

@media (max-width: 800px) {
    .botao.wpp-up {
        font-size: 2.5rem;
    
    }
    .popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
    }
   }