  footer {
    background-color: var(--cor-psiquiatria);
    color: white;
    padding: 40px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .footer-info, .footer-form {
    flex: 1 1 300px;
  }

  .footer-info h2 {
    font-size: 1.5rem;
    margin: 0 0 10px;
  }

  .footer-info p {
    margin: 5px 0;
    line-height: 1.5;
  }

  .social-icons i {
    margin-right: 15px;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .footer-form input,
  .footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
  }

  .footer-form button {
    background-color: #ffffff;
    color: #0066a4;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .footer-form button:hover {
    background-color: #e0e0e0;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }

    .footer-form {
      width: 100%;
    }
  }
  
ul li {
  margin: 5px;
}