/* ╔══════════════════════════════════════════════════════════════════════╗
 * ║ FILE: siteFooter.mobile.css                                         ║
 * ║ MODULE: Footer Mobile Responsive                                    ║
 * ║ BH3 Distribuidora | CONSART ERP                                     ║
 * ║ OBJETIVO: Exibir SOMENTE o copyright em dispositivos móveis         ║
 * ╚══════════════════════════════════════════════════════════════════════╝ */

/* ==========================================================
   TABLETS E CELULARES
   ========================================================== */

@media (max-width: 768px) {

  /* ========================================================
     FOOTER GERAL
     ======================================================== */

  .site-footer {
    width: 100%;
    margin-top: 12px !important;
    overflow-x: hidden;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
  }

  /* ========================================================
     ESCONDE TODA A PARTE SUPERIOR
     ======================================================== */

  .site-footer__top,
  .footer-col,
  .footer-logo,
  .footer-description,
  .footer-whatsapp-btn,
  .footer-contact,
  .footer-social-list,
  .footer-security-list,
  .footer-platform-embed,
  .footer-col--social,
  .footer-col--contact {
    display: none !important;
  }

  /* ========================================================
     COPYRIGHT
     ======================================================== */

  .site-footer__bottom {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 44px;

    padding: 12px !important;
    margin: 0 !important;

    text-align: center;
    line-height: 1.5;

    font-size: 12px !important;
    font-weight: 500;

    color: #64748b !important;
    background: #f1f5f9;

    box-sizing: border-box;
  }

  .site-footer__bottom * {
    color: inherit !important;
  }
}

/* ==========================================================
   CELULARES PEQUENOS
   ========================================================== */

@media (max-width: 420px) {

  .site-footer__bottom {
    padding: 10px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
}

/* ==========================================================
   CELULARES MUITO PEQUENOS
   ========================================================== */

@media (max-width: 360px) {

  .site-footer__bottom {
    font-size: 10px !important;
    padding: 8px !important;
  }
}