/* Estilos personalizados para complementar o Tailwind CSS */

/* Variáveis para cores consistentes com o tema */
:root {
  --primary: #3b82f6;
  --accent: #10b981;
  --background: #0f172a;
  --foreground: #f8fafc;
  --muted-foreground: #94a3b8;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Animações */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Glass morphism */
.glass-morphism {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

/* Botões especiais */
.btn-hero {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.5);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.7);
}

.btn-futuristic {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-futuristic:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  z-index: -2;
  transition: all 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.btn-futuristic:hover:after {
  transform: scaleX(1);
}

/* Estilos para cartões */
.card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

/* Efeito de hover para imagens */
.hover-zoom {
  transition: all 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

/* Gradientes de fundo */
.bg-gradient-hero {
  background: linear-gradient(to bottom right, var(--background), rgba(15, 23, 42, 0.8));
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
