/* Ajusta aquí tus colores institucionales */
:root{
  --bs-primary: #ff8c00;     /* primario institucional */
  --bs-dark:    #F28C00;     /* color navbar bg-dark */
  --bs-body-bg: #f8f9fa;     /* fondo general */
  --bs-body-color: #1a1d20;  /* texto base */
}

/* Header fino */
header.site-header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
header.site-header .brand{
  display:flex; align-items:center; gap:.5rem; font-weight:700;
}
header.site-header .brand img{ height:36px; width:auto; }

/* Navbar (id=navigation) ya usa clases de Bootstrap */
#navigation .navbar-brand{ font-weight:700; }


/* Suaviza cards, botones y formularios con Bootstrap */
:root{ --radius:14px; --shadow:0 6px 24px rgba(0,0,0,.06) }
.card{ border-radius:var(--radius); box-shadow:var(--shadow) }
.btn{ border-radius:10px }
.form-control,.form-select{ border-radius:10px }
