/* ══════════════════════════════════════════
   iAlmendro — Estilos globales
   ══════════════════════════════════════════ */

html, body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Sidebar */
.sidebar-open {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1050;
}

.sidebar-closed {
    display: none;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

@media (min-width: 768px) {
    .sidebar-open,
    .sidebar-closed {
        display: flex !important;
        position: relative;
    }
    .sidebar-overlay {
        display: none !important;
    }
}

/* Nav links */
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
    border-radius: 0.375rem;
}

/* Operador: espacio para nav inferior */
main {
    padding-bottom: 80px;
}

/* Botones grandes para móvil */
.btn-lg-mobile {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Cards */
.card {
    border-radius: 0.75rem;
}

/* Scrollbar suave */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
