/* =============================
       FOOTER
============================= */
/* ===== FOOTER BASE ===== */
footer {
      background: #111;
      color: #fff;
      padding: 20px;
      text-align: center;
}

.container-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
      flex-wrap: wrap; /* garante que não estoure */
}

.footer-box-dir {
      width: 60%;
      display: flex;
      align-items: center;
      justify-content: space-around;
}

.footer-box-esq {
      width: 40%;
      display: flex;
      align-items: center;
      justify-content: space-around;
}


.footer-box img {
      max-width: 120px;
      height: auto;
}

.p-footer {
      margin-top: 20px;
      font-size: 0.85rem;
      color: #aaa;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
      .container-footer {
            flex-direction: column;
      }

      .footer-box-dir,
      .footer-box-esq {
            flex-direction: column;
            gap: 20px;
      }

      .footer-box img {
            max-width: 90px;
      }

      .p-footer {
            font-size: 0.8rem;
      }
}

@media (max-width: 480px) {
      .footer-box img {
            max-width: 70px;
      }

      .p-footer {
            font-size: 0.75rem;
      }
}

.fabricante {
      background: #000;
      color: var(--light);
      text-align: center;
      font-size: 0.7rem;
      width: 100%;
      height: 15vh;
      padding-top: 40px;
      line-height: 0.3rem;
}

.p-version {
      font-size: 0.6rem;
}