/* Container geral dos cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

/* Card individual */
.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Imagem de perfil */
.profile {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

/* Título e subtítulo */
.title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  margin-bottom: 1rem;
}

/* Ícones sociais */
.icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.icons img:hover {
  transform: scale(1.2);
}

/* Botão personalizado */
.message-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.message-btn:hover {
  background-color: #0056b3;
}
