*{
    font-family: 'Inter', sans-serif !important;
}
.btn-subir {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 22px;
    /* font-weight: bold; */
    cursor: pointer;
    text-decoration: none;
    display: none; /* Oculto al inicio */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    z-index: 51;

    /* ⭐ Gradient animable por posición */
    background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
    background-size: 230% 300%;

    /* ⭐ Animamos la posición del background + un pelín de escala */
    transition:
        background-position 0.5s ease,
        transform 0.2s ease,
        opacity 0.3s ease-in-out;
}

.btn-subir:hover {
    /* movemos el gradient → aquí está la animación */
    background-position: 100% 0%;
    transform: translateY(-2px);
}
.flex{
    display: flex;
    gap: 2px;
}