﻿.aviso-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.4s ease forwards;
    z-index: 9999;
}

.aviso-form-modal {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: popIn 0.35s ease forwards;
}

.aviso-form-icon {
    margin-bottom: 15px;
    animation: bounce 0.6s ease;
}

.aviso-form-close-btn {
    margin-top: 18px;
    padding: 10px 22px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1
    }
}

@keyframes bounce {
    0% {
        transform: scale(0.5);
        opacity: 0
    }

    60% {
        transform: scale(1.1);
        opacity: 1
    }

    100% {
        transform: scale(1)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}
