.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1999;
}

.popup-temporaneo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    background-size: cover;
    padding: max(4.5%, 24px) max(5.5%, 28px);
    border-radius: 19px;
    text-align: center;
    z-index: 2000;
    width: min(85%, 720px);
}

.popup-content {
    position: relative;
    text-align: left;
    padding-top: 32px;
}

.popup-content h2,
.popup-content p {
    margin: 0;
    font-family: "Cormorant Garamond", serif, "Helvetica Neue", arial;
    font-weight: bold;
    font-size: max(34px, 5.4vw);
    line-height: .9;
}

.popup-button {
    display: inline-block;
    background: transparent;
    border: 3px solid;
    color: inherit;
    padding: 10px min(20px, 4%);
    text-decoration: none;
    border-radius: 0;
    text-transform: uppercase;
    margin-top: min(60px, 6vw);
    margin-bottom: 24px;
    font-family: Montserrat, sans-serif, "Helvetica Neue", arial;
    font-weight: normal;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    color: inherit;
}

.popup-content .popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    font-size: 42px;
    line-height: .4;
    font-family: sans-serif;
    cursor: pointer;
    color: inherit;
}

body.popup-open {
    overflow: hidden;
}

@media (min-width: 640px) {
    .popup-content h2,
    .popup-content p {
        max-width: 82%;
    }
}

@media (min-width: 1024px) {
    .popup-content h2,
    .popup-content p {
        font-size: 55px;
    }
}