/* Estilos personalizados */

/* Gradientes de texto */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.gradient-blue-purple {
  background-image: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.gradient-purple-pink {
  background-image: linear-gradient(to right, #8b5cf6, #ec4899);
}

/* Animações */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Ajustes para o carrossel */
.testimonial-slider {
  transition: transform 0.5s ease-in-out;
}

/* Ajustes para formulários */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
}

/* Botões com gradiente */
.btn-gradient {
  background-image: linear-gradient(to right, #3b82f6, #8b5cf6);
  transition: background-image 0.3s ease;
}

.btn-gradient:hover {
  background-image: linear-gradient(to right, #2563eb, #7c3aed);
}

/* Estilos para os cards de equipe */
.team-card {
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.photo-wrapper {
  position: relative;
  overflow: hidden;
}

.photo-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .photo-wrapper img {
  transform: scale(1.05);
}

.whatsapp-btn {
  transition: all 0.3s ease;
}

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

/* Ajustes para responsividade */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-card .photo-wrapper {
    height: 200px;
  }
}

/* Estilos para redes sociais */
.social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.social-card.facebook {
  background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-card.instagram {
  background: linear-gradient(135deg, #e4405f, #f77737);
}

.social-card.linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-card.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
