/* Tailwind base */
@import 'https://cdn.jsdelivr.net/npm/tailwindcss@3.3.5/base.min.css';

/* Tailwind components */
@import 'https://cdn.jsdelivr.net/npm/tailwindcss@3.3.5/components.min.css';

/* Tailwind utilities */
@import 'https://cdn.jsdelivr.net/npm/tailwindcss@3.3.5/utilities.min.css';

/* Colores personalizados */
.bg-primary { background-color: #3A86FF; }
.text-primary { color: #3A86FF; }
.bg-secondary { background-color: #8338EC; }
.text-secondary { color: #8338EC; }
.bg-accent { background-color: #FF006E; }
.text-accent { color: #FF006E; }
.bg-dark { background-color: #1A1A2E; }
.text-dark { color: #1A1A2E; }
.bg-light { background-color: #F8F9FA; }
.text-light { color: #F8F9FA; }

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Estilos personalizados */
.bike-card {
  transition: all 0.3s ease;
}
.bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Layout */
.min-h-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}