/* Contato section shared styles (extracted from atendimento.css) */
.contato-atendimento {
  padding: 80px 0;
  background: #f8f9fa;
}

.contato-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contato-card h2 {
  font-size: 2rem;
  color: #1b365d;
  margin-bottom: 32px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
}

.contato-item:last-child {
  border-bottom: none;
}

.contato-item strong {
  color: #1b365d;
  font-weight: 600;
}

.contato-item a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.contato-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contato-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .contato-card {
    padding: 24px;
  }
}
