/* Seção de Contato */
.contato-section {
  padding: 40px 20px;
  text-align: center;
}

/* Formulário */
#form-contato {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#form-contato label {
  font-weight: bold;
  color: #005599;
  text-align: left;
}

#form-contato input,
#form-contato textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#form-contato textarea {
  height: 150px;
  resize: vertical;
}

#form-contato button {
  background-color: #005599;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

#form-contato button:hover {
  background-color: #003366;
}

/* Informações de contato */
.contato-container {
  margin-top: 40px;
  text-align: center;
}

.contato-info p {
  margin-bottom: 10px;
}

.contato-info a {
  color: #005599;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contato-info a:hover {
  color: #007bff;
}

/* Bloco de redes sociais com QR codes */
.redes-sociais {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.redes-sociais a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  min-height: 220px;
  text-align: center;
  text-decoration: none;
  color: #005599;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.redes-sociais a:hover {
  transform: scale(1.05);
}

.redes-sociais img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.redes-sociais a p {
  margin-top: 8px;
  font-size: 0.95rem;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
  .redes-sociais {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #form-contato button {
    align-self: stretch;
  }
}
