/**
 * =========================================================================
 * ESTILOS PERSONALIZADOS - PORTAL DE PROFESIONALES (konexia)
 * =========================================================================
 * Diseño Claro, Moderno y Minimalista.
 */

/* 1. Reset & Tipografía General */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-page, #F8FAFC) !important;
    color: var(--text-primary, #0F172A);
    -webkit-font-smoothing: antialiased;
}

/* 2. Barra Lateral Clara */
.bg-sidebar-light {
    background-color: #FFFFFF !important;
    border-right: 1px solid #E2E8F0 !important;
}

/* 3. Personalización de Botón de Sidebar e Iconos */
.brand-icon {
    width: 38px;
    height: 38px;
    box-shadow: 0 4px 6px -1px rgba(30, 123, 242, 0.15);
}

.brand-text {
    letter-spacing: 0.5px;
}

/* 4. Avatares de Usuario */
.avatar-circle-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.avatar-circle-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* 5. Micro-Animaciones y Efectos Hover */
.card {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}
.card:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.06) !important;
}

.info-box {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}
.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08) !important;
}

.btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(1px);
}

/* 6. Menús del Sidebar Claro */
.app-sidebar .sidebar-menu .nav-link {
    border-radius: 8px;
    margin: 2px 8px;
    padding: 10px 12px;
    transition: all 0.2s ease;
    color: #475569;
    font-weight: 500;
}

.app-sidebar .sidebar-menu .nav-link:hover {
    background-color: #F1F5F9;
    color: #1E7BF2;
}

.app-sidebar .sidebar-menu .nav-link.active {
    background-color: #1E7BF2 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(30, 123, 242, 0.25);
}

/* 7. Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-track {
    background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}