.contato-site {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.contato-container {
  max-width: 600px;
  margin: 0 auto;
}

.contato-site h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.contato-site p {
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
}

.contato-site input,
.contato-site textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s;
}

.contato-site input:focus,
.contato-site textarea:focus {
  border-color: #c3a57b; /* cor suave, pode trocar */
  outline: none;
}

.contato-site button {
  background-color: #c3a57b;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.contato-site button:hover {
  background-color: #b08c64;
}
