/* 
 * Botón Flotante de Alerta
 * Estilos para el botón flotante de reporte de alertas
 * Ubicación: Visible en todas las páginas públicas
 */

.btn-flotante-alerta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    cursor: pointer;
    overflow: visible;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-flotante-alerta:hover {
    text-decoration: none;
    transform: scale(1.1);
}

.btn-flotante-alerta:active {
    transform: scale(0.95);
}

.btn-flotante-imagen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: zoom-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Animación de zoom intermitente - se expande y achica */
@keyframes zoom-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 6px 20px rgba(255, 107, 53, 0.6));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .btn-flotante-alerta {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
}