/* Estilos customizados para a home */

/* Efeitos de transição */
.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* Gradientes e efeitos visuais */
.bg-gradient-glow {
  background-image: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 70%);
}

/* Melhorias em cards e seções */
.card-hover:hover {
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 8px 10px -6px rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}

.section-divider {
  height: 5px;
  width: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 5px;
}

/* Melhorias de tipografia */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
}

/* Animações de entrada */
.animate-fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-in-out;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Melhoria em botões */
.btn-glow:hover {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Personalização para dispositivos móveis */
@media (max-width: 768px) {
  .responsive-hidden {
    display: none;
  }
  
  .responsive-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .responsive-text-center {
    text-align: center;
  }
}

/* Estilos de ícones e elementos decorativos */
.icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Personalização de scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}