:root{
--brand:#233b8e; /* azul logotipo */
--brand-accent:#2f5be7;
}
body{ background:#f6f8fb; }
.navbar{ background:var(--brand) !important; }
.btn-brand{ background:var(--brand); color:#fff; }
.btn-brand:hover{ background:var(--brand-accent); color:#fff; }
.form-brand legend{ color:var(--brand); }
.card-brand .card-header{ background:var(--brand); color:#fff; }
a{ color:var(--brand); }
a:hover{ color:var(--brand-accent); }

/*MENU DASHBOARD*/
/* Colores corporativos */
:root{
  --brand:#233b8e;
  --brand-accent:#2f5be7;
}

/* Tiles */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  text-align: center;
  border-radius: 1rem;
  min-height: 150px;          /* cuadrado vistoso */
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(35,59,142,.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  overflow: hidden;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(35,59,142,.35);
  filter: brightness(1.08);
}
.tile .tile-icon { font-size: 2.2rem; line-height: 1; }
.tile .tile-title { margin-top: .6rem; font-weight: 600; font-size: .95rem; }

/* Para que toda la tarjeta sea clicable con .stretched-link */
.tile a.stretched-link { color: #fff; text-decoration: none; }
.tile a.stretched-link:focus { outline: none; box-shadow: none; }

/*ESTILOS UNIVERSALES*/
.text-white{
	color:white;
}