:root{
  --brand:#0d6efd;
  --brand-dark:#084298;
  --surface:#ffffff;
  --muted:#6c757d;
  --soft:#f3f7ff;
}

body{ background:#ffffff; }

.bg-soft-primary{
  background: var(--soft);
}

.rounded-4{
  border-radius: 1rem;
}

.hero-carousel .carousel-item{
  min-height: 600px;
  color:#fff;
  position:relative;
  background-size: cover;
  background-position: center;
}

.hero-carousel .carousel-item > .container{
  min-height: 600px;
  display:flex;
  align-items:center;
}

.hero-carousel .carousel-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(13,110,253,.30), rgba(8,66,152,.30));
}

.hero-carousel .carousel-caption{
  position:relative;
  z-index:1;
  text-align:left;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

@media (max-width: 575.98px){
  .hero-carousel .carousel-item{
    min-height: 420px;
  }

  .hero-carousel .carousel-item > .container{
    min-height: 420px;
  }
}

.section-title{
  border-left:4px solid var(--brand);
  padding-left:12px;
}

.home-highlights .stat-card{
  background: #fff;
  border: 1px solid rgba(13,110,253,.15);
  border-radius: 14px;
  padding: 14px 14px;
  height: 100%;
}

.home-highlights .stat-kpi{
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.home-highlights .stat-label{
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
}

.principal-avatar{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(13,110,253,.18);
  background: #fff;
}

.principal-card{
  max-width: 360px;
}

.icon-circle{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(13,110,253,1), rgba(8,66,152,1));
}

.card-hover{
  transition: transform .15s ease, box-shadow .15s ease;
}

.card-hover:hover{
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

.footer a.btn{ white-space:nowrap; }
