/* =========================
   FOOTER
   ========================= */
   .site-footer {
    background-color: #343a40;
    color: #adb5bd;
    font-size: 0.9rem;
  }
  .site-footer a {
    color: #adb5bd;
    text-decoration: none;
  }
  .site-footer a:hover {
    color: #e2c57f;
  }
  
  /* FOOTER TOP */
  .footer-top {
    border-bottom: 1px solid #495057;
  }
  .site-footer h5 {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  /* LINKS RÁPIDOS */
  .footer-links li + li {
    margin-top: 0.5rem;
  }
  
  /* CONTACTOS */
  .footer-contact a {
    display: inline-block;
    margin-top: 0.25rem;
  }
  
  /* REDES SOCIAIS */
  .social-icons {
    display: flex;
    align-items: center;
  }
  .social-icons a {
    display: inline-block;
    margin-right: 0.75rem;
  }
  .social-icons a:last-child {
    margin-right: 0;
  }
  .social-icons .social-icon {
    width: 30px;
    height: auto;
    transition: transform 0.2s ease;
  }
  .social-icons .social-icon:hover {
    transform: scale(1.1);
  }
  
  /* PAGAMENTOS */
  .payment-methods img {
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
  }
  .payment-methods img:last-child {
    margin-right: 0;
  }
  
  /* SELECTS */
  .footer-selects .form-select {
    display: inline-block;
    width: auto;
    background-color: #495057;
    color: #f8f9fa;
    border: 1px solid #6c757d;
    padding: 0.25rem 0.5rem;
  }
  .footer-selects .form-select-sm {
    font-size: 0.8rem;
  }
  
  /* FOOTER BOTTOM */
  .footer-bottom {
    background-color: #212529;
    color: #6c757d;
    font-size: 0.85rem;
  }
  
  /* RESPONSIVO */
  @media (max-width: 767px) {
    .footer-top .row > div {
      text-align: center;
    }
    .footer-top .social-icons {
      justify-content: center;
      display: flex;
    }
    .footer-selects,
    .payment-methods {
      justify-content: center;
      display: flex;
    }
  }
  