footer {
  background-color: #8d0801;
  color: #f4d58d;
  width: 100%;
  margin-top: 5rem;
  overflow: visible;
}

footer .container {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* ajuda em telas pequenas */
}

footer .links a {
  margin: 0 1rem;
  color: #f4d58d;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
}

footer .links a:hover {
  color: #001427;
}

.footer-social i {
  margin: 0 1rem;
  color: #f4d58d;
  font-size: 1.5rem;
}

.footer-social i:hover {
  color: #001427;
}

.footer-bottom {
  color: #f4d58d;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

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

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

  footer .links a {
    display: block;
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }

  .footer-social i {
    font-size: 1.3rem;
    margin: 0 0.5rem;
  }
}
