#exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-contente {
    background: linear-gradient(135deg, #0066ff, #00ccff);
    color: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.925);
    position: relative;
    animation: slideUp 0.4s ease forwards;
    transform: translateY(30px);
    opacity: 0;
}

/* Animação */
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo */
.popup-contente img {
    width: 185px;
    margin-bottom: 15px;
}

/* Fechar */
.popup-close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.521);
}

/* Título */
.popup-contente h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Texto */
.popup-contente p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Botão */
.popup-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #008cff, #0044ff,#00ecff);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.795), 0 0 30px rgba(17, 0, 255, 0.6);
    transition: all 0.3s ease;
}

/* Animação de gradiente */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.popup-button:hover {
    color: #000 !important;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.9), 0 0 40px rgba(25, 0, 255, 0.8);
}
