/* ✅ CFC_FUNC_20_1_GRADUACION_V41 — Estilos overlay graduación */

#graduacion-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.8s ease forwards;
}

#graduacion-overlay.oculto {
  display: none;
}

.grad-card {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.8);
  border-radius: 16px;
  padding: 40px 60px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.grad-card h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 10px;
}

.grad-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.grad-card button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.grad-card button:hover {
  background: #fff;
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
