/* Suavizado de tipografía */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Efectos de tarjetas */
.transition {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-top:hover {
  transform: translateY(-8px);
  background-color: #2d3748 !important; /* Un poco más claro al pasar el mouse */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Scrollbar para modo oscuro */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00d2ff;
}

/* Botones con brillo suave */
.btn-primary {
  background-color: #00d2ff;
  border: none;
  color: #0f172a;
  font-weight: 600;
}

/***/
