/*css POP-UP*/


/* FUNDO */
#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

/* CAIXA */
#popupBox {
    background: #ffffff;
    padding: 30px;
    max-width: 520px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: zoomIn 0.4s ease;
    position: relative;
}

    /* TÍTULO */
    #popupBox h2 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #333;
    }

    /* TEXTO */
    #popupBox p {
        font-size: 16px;
        color: #555;
        line-height: 1.5;
    }

/* BOTÃO FECHAR (X) */
#closeX {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}

    #closeX:hover {
        color: #000;
    }

/* BOTÃO */
#closeBtn {
    margin-top: 25px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

    #closeBtn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* ANIMAÇÕES */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}