
.main-footer {
  background: #1d1f21;
  color: #fff;
  padding: 60px 0;
}

.footer-grid {
  display: flex;
  justify-content: center;
  gap: 100px; /* ⬅️ aumentar mais o espaço */
  flex-wrap: wrap;
  text-align: left;
}

.main-footer .container {
  max-width: 1280px; /* ⬅️ aumentar só no footer */
}

.footer-col p, 
.footer-col a {
  color: #ccc;
  text-decoration: none;
  /* display: inline-block; */
  line-height: 1.4;
}

.footer-col a:hover {
  color: #0077cc;
  text-decoration: underline;
}

.footer-col .endereco-link {
  margin-top: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  background: #f8f9fa;
  padding: 20px 0;
  width: 100%;
}


.footer-bottom-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-bottom p {
  color: #333;
  font-size: 13px;
}