.custom-links-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
}

.custom-title {
  color: #000080;
  font-size: 24px;
  margin-bottom: 10px;
}

.custom-subtitle {
  color: #b36b00;
  font-size: 18px;
  margin-bottom: 40px; /* Aumentamos separación con los botones */
}

.custom-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.custom-button {
  background-color: #285f9a;
  color: white !important; /* Forzamos blanco siempre */
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 220px;
  text-align: center;
}

.custom-button:hover {
  /* Mantiene texto blanco, y aplica un brillo suave */
  background-color: #285f9a; /* mismo color */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4); /* brillo blanco transparente */
  color: white !important;
  cursor: pointer;
}

