/* Footer */
.footer {
  text-align: center;
  padding: 2rem 5%;
  background: #111;
  color: #fff;
  margin-top: 2rem;
}

.footer h2 {
  color: #7f4f24;
  margin-bottom: 1rem;
}

.footer p {
  margin-top: 2rem;
  font-size: 1rem;
}

/* Container do footer */
.footer .container {
  display: flex;
  flex-wrap: wrap; /* permite quebra em telas pequenas */
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem; /* espaçamento entre elementos */
}

.footer .links a {
  text-decoration: none;
  color: #7f4f24;
  margin: 0 1rem 0 0;
  font-size: 1rem;
}

.footer .links a:hover {
  color: #fff;
  border-bottom: #fff solid 1px;
}

.footer .footer-social a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: #7f4f24;
}

.footer .footer-social a:hover {
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .links {
    margin-bottom: 1rem;
  }

  .footer .footer-social {
    margin-bottom: 1rem;
  }
}
