.popUpContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popUpContainer.active {
    visibility: visible;
    opacity: 1;
}

.popUp {
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 22px;
    position: relative;
    border-radius: 10px;
    margin: 10px;
}

.popUpHeading {
    font-size: 2em;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.popUpSubheading {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    margin-top: -4px;
}

.inputContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mensajeInput {
    font-size: 0.85em;
    text-align: center;
    color: black;
}

.popUp .button-primary,
.popUp .button-ghost {
    align-self: center;
}

.popup-cta {
    margin-top: 12px;
}

.exitBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
    color: black;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}


/* Responsive */
@media (max-width: 768px) {
    .popUp {
        width: 95vw;
        padding: 15px 20px;
    }

    .popUpHeading {
        font-size: 1.5em;
    }

    .popUpSubheading {
        font-size: 1em;
    }

}

@media (max-width: 480px) {
    .popUp {
        padding: 10px 15px;
    }

    .exitBtn {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
}

.promoImagen {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 12px;
}

.popup-body {
    color: #f0f0f0;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
}
