/* ===========================
   ANIMACIÓN ZOOM EN EL POPUP
   =========================== */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-zoomIn {
    animation: zoomIn 0.35s ease-out;
}

/* ===========================
   ANIMACIÓN FLOTANTE ICONO
   =========================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ===========================
   BOTONES DEL POPUP
   =========================== */
.popup-btn-download,
.popup-btn-close {
    background: #2563eb; /* azul */
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.popup-btn-close {
    background: #ef4444; /* rojo */
}

.popup-btn-download:hover,
.popup-btn-close:hover {
    transform: scale(1.07);
    filter: brightness(1.1);
}

.popup-btn-download:active,
.popup-btn-close:active {
    transform: scale(0.95);
}

/* ===========================
   POPUP GENERAL
   =========================== */
#popupHonorarios {
    transition: opacity 0.25s ease;
}

#popupContent {
    max-height: 90vh;
    overflow: hidden;
}
