/* === FOOTER === */
footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.container-footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-coluna {
  flex: 1;
  min-width: 200px;
}

.footer-coluna h4 {
  color: #c31919;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-coluna p {
  font-size: 14px;
  color: #fff;
  margin: 5px 0;
}

.footer-redes a {
  margin-right: 10px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-redes a:hover {
  color: #c31919;
}

@media (max-width: 768px) {
  .container-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }
}
