/* Estilos para la Vista Campus */

/* Hero Section */
.campus-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #004cb0 100%);
  padding: 6rem 0;
}

/* Features Section */
.feature-card {
  padding: 2rem;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* CTA Section */
.campus-cta {
  border-top: 1px solid #e9ecef;
}

/* Modo Oscuro */
body.theme-dark .campus-features {
  background-color: #1a1d2c;
}
body.theme-dark .feature-card {
  background-color: #23272f;
}
body.theme-dark .campus-cta {
  background-color: #1a1d2c !important;
  border-top: 1px solid #23272f;
}