/* Estilos del pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.popup-content {
    background: #fff;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Montserrat', sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #777;
}

.close-btn:hover {
    color: #333;
}

.popup-title {
    font-size: 22px;
    font-weight: bold;
    color: #01B1D5;
    margin-bottom: 10px;
}

.popup-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.popup-btn {
    background: #98CC42;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.popup-btn:hover {
    background: #01B1D5;
}

.popup-footer {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}
