.contato-container {
  max-width: 860px;
  margin: 60px auto 80px auto;
  padding: 0 20px;
}

.contato-container h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contato-container .subtitle {
  color: #9b8fb8;
  font-size: 15px;
  margin-bottom: 48px;
}

.contato-cards {
  display: flex;
  justify-content: center;
}

.contato-card {
  background: linear-gradient(135deg, #1a0f2e, #120b22);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 22px;
  padding: 36px 30px;
  transition: 0.3s;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.35);
  border-color: rgba(168, 85, 247, 0.5);
}

.contato-card .icon {
  font-size: 40px;
}

.contato-card h2 {
  font-size: 20px;
  font-weight: 700;
}

.contato-card p {
  font-size: 14px;
  color: #9b8fb8;
  line-height: 1.6;
}

.contato-card .email-pill {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #facc15);
  color: black;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
  align-self: center;
}

.contato-card:hover .email-pill {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.contato-card-single {
  max-width: 480px;
  width: 100%;
  text-align: center;
  align-items: center;
}

.contato-info {
  margin-top: 48px;
  background: linear-gradient(135deg, #1a0f2e, #120b22);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 22px;
  padding: 30px;
  color: #9b8fb8;
  font-size: 14px;
  line-height: 1.8;
}

.contato-info strong {
  color: white;
}

@media (max-width: 600px) {
  .contato-cards {
    grid-template-columns: 1fr;
  }

  .contato-container h1 {
    font-size: 24px;
  }
}
