/* Voluntas — estilos comunes */
body {
  font-family: 'Inter', sans-serif;
  background-color: #111827;
  color: #d1d5db;
}
.section-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  transition: all 0.2s ease-in-out;
}
.section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
  border-color: #B8862E;
}
.menu-item {
  background-color: #374151;
  border: 1px solid #4b5563;
  transition: all 0.15s ease-in-out;
}
.menu-item:hover {
  background-color: #4b5563;
  border-color: #B8862E;
}
.module-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  transition: all 0.2s ease-in-out;
}
.module-card:hover {
  transform: translateY(-3px);
  border-color: #4f46e5;
  box-shadow: 0 10px 25px -5px rgba(79,70,229,0.2);
}
.gradient-text {
  background: linear-gradient(90deg,#B8862E 0%,#D4A656 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge-dorado {
  background-color: rgba(184,134,46,0.15);
  color: #D4A656;
  border: 1px solid rgba(184,134,46,0.3);
}
.progress-bar {
  background: linear-gradient(90deg,#B8862E 0%,#D4A656 100%);
}
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background-color: #4b5563; border-radius: 10px; }
