/* Footer */
footer {
  background: #000;
  padding: 80px 50px 30px;
  border-top: 1px solid #222;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: white;
}
.footer-column ul {
  list-style: none;
}
.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.footer-column a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}
.payment-methods {
  display: flex;
  gap: 15px;
}
.payment-icon {
  width: 40px;
  height: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center; /* Centraliza textos */
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo horizontalmente */
  }

  .social-links {
    justify-content: center; /* Centraliza os ícones */
    flex-wrap: wrap; /* Faz os ícones quebrarem linha se necessário */
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
