/* ADN COMERCIAL - Diseño Estratégico */
:root {
    --primario: #0f172a;    /* Azul medianoche (Seriedad) */
    --accent: #f59e0b;      /* Ámbar (Energía/ADN) */
    --fondo: #f8fafc;       /* Gris muy claro (Limpieza) */
    --texto: #334155;
    --blanco: #ffffff;
}

body { font-family: 'Inter', system-ui, sans-serif; background-color: var(--fondo); color: var(--texto); margin: 0; display: flex; }

/* Menú Lateral */
.sidebar { width: 250px; background-color: var(--primario); color: white; height: 100vh; position: fixed; padding: 20px; box-sizing: border-box; }
.sidebar h1 { color: var(--accent); font-size: 1.2rem; margin-bottom: 2rem; border-bottom: 1px solid #334155; padding-bottom: 10px; }
.sidebar a { color: #94a3b8; text-decoration: none; display: block; padding: 12px; border-radius: 8px; margin-bottom: 5px; }
.sidebar a.active, .sidebar a:hover { background: #1e293b; color: white; border-left: 4px solid var(--accent); }

/* Área de Contenido */
.main { margin-left: 250px; padding: 40px; width: 100%; }

/* Tarjetas Estratégicas */
.card { background: var(--blanco); border-radius: 12px; padding: 25px; border: 1px solid #e2e8f0; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-bottom: 20px; }
.card h2 { margin-top: 0; font-size: 1.1rem; color: var(--primario); border-left: 4px solid var(--accent); padding-left: 10px; }

/* Formularios */
label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
select, input { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; margin-bottom: 15px; box-sizing: border-box; font-family: inherit; }
.btn { background: var(--primario); color: white; border: none; padding: 15px 25px; border-radius: 8px; cursor: pointer; font-weight: 700; width: 100%; }
.btn:hover { background: #1e293b; }
/* --- BARRA SUPERIOR (TOP BAR) --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 250px; /* Alineada donde termina el menú lateral */
    right: 0;
    height: 60px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end; /* Botones a la derecha */
    align-items: center;
    padding: 0 30px;
    z-index: 100;
}

.btn-top {
    margin-left: 15px;
    font-size: 13px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 8px;
    background: #f1f5f9;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-top:hover {
    background: #e2e8f0;
    border-color: var(--accent);
}

.btn-salir {
    background: #fef2f2;
    color: #ef4444;
}

.btn-salir:hover {
    background: #fee2e2;
    border-color: #ef4444;
}

/* Ajuste para que el contenido no se pegue al techo */
.main { margin-top: 80px !important; }