/* ═══════════════════════════════════════════
   FOOTER — footer.css
   ═══════════════════════════════════════════ */

.footer {
  background: #1a2233;
  padding: 44px 20px 32px;
  text-align: center;
}

/* ─── Pagamento ─── */
.payment-section {
  margin-bottom: 32px;
}

.payment-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Cada ícone de bandeira fica num quadro branco */
.payment-icon {
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  overflow: hidden;
  flex-shrink: 0;
}

.payment-icon svg {
  width: 50px;
  height: 30px;
  display: block;
}

/* ─── Links ─── */
.footer-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 2.2;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin: 0 6px;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 2px;
}

/* ─── Mobile ─── */
@media (max-width: 575.98px) {
  .footer {
    padding: 32px 16px 24px;
  }

  .payment-icon {
    width: 46px;
    height: 30px;
  }

  .payment-icon svg,
  .payment-icon img {
    width: 38px;
    height: 24px;
  }

  .footer-links {
    font-size: 11px;
  }

  .footer-links .sep {
    display: none;
  }

  .footer-links a {
    display: inline-block;
    margin: 0 4px;
  }
}