
/* overrides.css — SEM SCROLL HORIZONTAL, SEM ESTRAGAR */

html, body{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  transform: none;
  zoom: 1;
  overflow-x: hidden; /* mata o scroll horizontal */
}

/* barras em full width, sem 100vw (que cria overflow) */
.ll-top-promo,
header.nav,
.angola-strip,
footer.site-footer{
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  left: auto;
  right: auto;
  position: relative;
  overflow: visible; /* para tooltip poder sair */
}

/* faixa Angola */
.angola-strip{
  display:block;
  height:6px;
  min-height:6px;

  background: linear-gradient(
    90deg,
    #000 0% 33%,
    #fbbf24 33% 66%,
    #dc2626 66% 100%
  );
}

/* tooltip: evita corte sem abrir overflow no body todo */



/* =====================================================
   PÁGINAS CURTAS — EMPURRAR FOOTER PARA BAIXO
   ===================================================== */

.page-wrap{
  min-height: calc(100vh - 320px);
}






/* BOTÃO VOLTAR — padrão global */
.ll-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 10px;

  background: #f5f7f6;
  border: 1px solid #e1e5e3;

  color: #2c3e50;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* hover */
.ll-back-btn:hover {
  background: #e9f2ec;
  border-color: #cfe3d6;
  color: #1f6f4a;
  transform: translateY(-1px);
}

/* ícone */
.ll-back-btn i {
  font-size: 13px;
}

/* mobile */
@media (max-width: 480px) {
  .ll-back-btn {
    width: 100%;
    justify-content: center;
  }
}



@media (min-width: 769px) and (max-width: 992px){
  .nav .navbar-actions.active .lang-dropdown__menu{
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    position: static !important;
    width: 100% !important;
    margin-top: 8px !important;
  }

  .nav .navbar-actions.active .lang-dropdown__toggle{
    pointer-events: none !important;
  }
 }



 






