/* POPUP */
.promo-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5000;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* ACTIVO */
.promo-popup.active{
    opacity: 1;
    visibility: visible;
}

/* BOX */
.promo-box{
    width: 90%;
    max-width: 500px;

    background: white;
    border-radius: 20px;
    overflow: hidden;

    position: relative;

    animation: popupShow 0.4s ease;
}

/* IMAGEN */
.promo-box img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CONTENIDO */
.promo-content{
    padding: 30px;
    text-align: center;
}

.promo-content h2{
    color: #C57AA8;
    margin-bottom: 15px;
    font-size: 2rem;
}

.promo-content p{
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* FORM */
.promo-content form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-content input{
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

/* BOTÓN */
.promo-content button{
    background: #C57AA8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.promo-content button:hover{
    background: #a85c8c;
}

/* CERRAR */
.promo-close{
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 2rem;
    color: white;
    cursor: pointer;

    z-index: 2;
}

/* HONEYPOT */
.hidden-field{
    display: none;
}

/* ANIMACIÓN */
@keyframes popupShow{
    from{
        transform: scale(0.9);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}