/* --- POPUP FLOTANTE --- */

.zona-popup {
    position: fixed;
    top: 20px;
    right: -400px; 
    width: 320px;
    z-index: 9999;
    transition: all 0.5s ease;
}

.zona-popup.show {
    right: 20px; /* Aparece animado */
}

.zona-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.06);
    font-family: "Inter", sans-serif;
    position: relative;
    animation: fadeIn 0.6s ease;
}

.zona-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #777;
}

.zona-title {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #333;
}

.zona-desc {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.zona-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.zona-btn:hover {
    background: #005fcc;
}

/* Efecto fade */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}