@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

body {
    font-family: "Michroma", sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body.modal-open {
    overflow: hidden;
}

/* Efecto Liquid Glass Avanzado para el Botón */
.liquid-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 12px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25),
        inset 0 0 16px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
}