.contato-container {
    max-width: 600px;
    margin: 120px auto 60px;
    padding: 0 20px;
    font-family: "Aleo", "Geologica", sans-serif;
    color: #2A3D4A;
  }
  
  .contato-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .contato-container p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #5D737E;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
  }
  
  button {
    padding: 12px;
    background-color: #43718e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background-color: #12212e;
  }
  