/* ===============================
  THEME (vars globais) — LocalLink
 Paleta: Militar + Dourado Seco (CTA) + Neutros sofisticados
   =============================== */
:root{
  /* Tipografia */
  --ll-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Fundos / superfícies */
  --ll-bg: #F6F7F5;            /* off-white ligeiramente quente */
  --ll-surface: #FFFFFF;
  --ll-surface-2: #F1F3EF;     /* cards/áreas suaves */
  --ll-text: #101613;          /* quase preto, não “azulado” */
  --ll-muted: #5E6A64;

  /* Brand (verde militar) */
  --ll-brand: #3E5942;         /* militar principal (o teu) */
  --ll-brand-2: #2F4333;       /* mais escuro p/ hover e footer */

  /* Primary (padrão de botões/links do site) */
  --ll-primary: var(--ll-brand);
  --ll-primary-dark: #2B3D2F;  /* hover forte sem ficar preto */
  --ll-primary-soft: rgba(62,89,66,.14);

  /* CTA (Pesquisar / ações principais) — contraste sofisticado */
  --ll-cta: #B9923B;           /* dourado seco (não é laranja berrante) */
  --ll-cta-dark: #9E7C31;      /* hover */
  --ll-cta-soft: rgba(185,146,59,.18);

  /* PREMIUM / PRO (separação visual sem “carnaval”) */
  --ll-premium: #8F7A3A;       /* premium mais “champagne” */
  --ll-premium-dark: #76632F;

  --ll-pro: #8A5A44;           /* terracota/couro (bem discreto) */
  --ll-pro-dark: #704636;

  /* Estados */
  --ll-success: #2E7D4F;       /* verde sucesso (não WhatsApp) */
  --ll-danger: #B42318;
  --ll-warning: #B7791F;

  /* WhatsApp separado (não mexer) */
  --ll-whatsapp: #25D366;
  --ll-whatsapp-dark: #1DA851;

  /* Bordas / sombras */
  --ll-border: rgba(16,22,19,.10);
  --ll-border-strong: rgba(16,22,19,.18);

  --ll-radius: 16px;
  --ll-radius-sm: 12px;

  --ll-shadow: 0 18px 38px rgba(16,22,19,.10);
  --ll-shadow-sm: 0 10px 22px rgba(16,22,19,.10);

  /* Foco (acessibilidade) — alinhado com CTA */
  --ll-focus: 0 0 0 4px rgba(185,146,59,.22);

  /* NAV / TOPBAR (se quiseres controlar tudo por vars) */
  --ll-topbar-bg: #2A332E;     /* faixa topo (escura e elegante) */
  --ll-topbar-text: #E9EFEA;

  --ll-nav-bg: rgba(255,255,255,.86);
  --ll-nav-border: rgba(16,22,19,.10);

  /* Pills da nav */
  --ll-nav-pill-bg: rgba(62,89,66,.10);
  --ll-nav-pill-text: #26332C;

  --ll-nav-pill-active-bg: var(--ll-brand);
  --ll-nav-pill-active-text: #FFFFFF;

  /* Botão especial “Pesquisar” na nav */
  --ll-nav-search-bg: var(--ll-cta);
  --ll-nav-search-text: #1B1A14;
  --ll-nav-search-hover: var(--ll-cta-dark);

  /* Footer (mantém escuro sofisticado, não “verde fosco”) */
  --ll-footer-bg: #223028;     /* deep olive */
  --ll-footer-bg-2: #1C2621;   /* para gradiente opcional */
  --ll-footer-text: #E7EEE8;
  --ll-footer-muted: rgba(231,238,232,.72);
  --ll-footer-link: #F0E6C6;   /* toque “dourado” discreto */
}

/* ===============================
   BASE LAYOUT
   =============================== */
*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  font-family:var(--ll-font);
  background:var(--ll-bg);
  color:var(--ll-text);
  max-width: 100%;
  overflow-x: hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img,svg,video,canvas{
  max-width:100%;
  height:auto;
}

/* =========================================
   TOP PROMO — PREMIUM MOTION
========================================= */

.ll-top-promo{
  position: relative;
  overflow: hidden;

  height: 44px;

  background:
    linear-gradient(
      90deg,
      #243127 0%,
      #2f4333 50%,
      #243127 100%
    );

  border-bottom: 1px solid rgba(255,255,255,.06);

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,.04),
    0 2px 10px rgba(0,0,0,.14);
}

/* container */
.ll-promo-track{
  position: relative;

  width:100%;
  max-width:1100px;

  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  padding:0 18px;
}

/* brilho */
.ll-promo-glow{
  position:absolute;
  top:0;
  left:-20%;

  width:180px;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.16),
      transparent
    );

  transform: skewX(-24deg);

  animation: llPromoGlow 7s linear infinite;

  pointer-events:none;
}

/* texto */
.ll-promo-text{
  position:relative;
  z-index:2;

  color:#fff;

  font-size:14px;
  font-weight:800;
  letter-spacing:.45px;

  white-space:nowrap;

  text-shadow:
    0 1px 0 rgba(0,0,0,.20);

  animation: llPromoText 7s ease-in-out infinite;

  will-change:
    transform,
    opacity;
}

/* brilho movimento */
@keyframes llPromoGlow{
  0%{
    left:-25%;
    opacity:0;
  }

  8%{
    opacity:1;
  }

  45%{
    opacity:1;
  }

  60%{
    opacity:0;
  }

  100%{
    left:120%;
    opacity:0;
  }
}

/* texto motion */
@keyframes llPromoText{

  0%{
    opacity:0;
    transform:
      translateY(10px)
      scale(.985);
  }

  10%{
    opacity:1;
    transform:
      translateY(0)
      scale(1);
  }

  78%{
    opacity:1;
    transform:
      translateY(0)
      scale(1);
  }

  100%{
    opacity:0;
    transform:
      translateY(-8px)
      scale(.985);
  }
}

/* hover suave */
.ll-top-promo:hover .ll-promo-text{
  letter-spacing:.6px;
  transition:letter-spacing .25s ease;
}

/* MOBILE */
@media (max-width:768px){

  .ll-top-promo{
    height:40px;
  }

  .ll-promo-track{
    padding:0 12px;
  }

  .ll-promo-text{
    font-size:12px;
    letter-spacing:.35px;

    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .ll-promo-glow{
    width:120px;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce){

  .ll-promo-glow,
  .ll-promo-text{
    animation:none;
  }
}




/* ===============================
   NAVBAR
   =============================== */
.nav{
  background:var(--ll-surface);
  color:var(--ll-text);
  padding:10px 0;
  box-shadow:0 2px 8px rgba(15,23,42,.08);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav .container{
  max-width:1180px;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.brand img{
  height:54px;
  border-radius:10px;
  display:block;
  width:auto;
}

.logo img {
  height: 34px;
  display:block;
  width:auto;
}

.navbar-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* ===============================
   BOTÕES (padrão único)
   =============================== */
.nav-btn,
.btn-home{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;

  border:1px solid transparent;
  transition: background .16s ease, transform .12s ease, box-shadow .12s ease, color .16s ease, border-color .16s ease, filter .16s ease;
}

.nav-btn:hover,
.btn-home:hover{
  transform:translateY(-1px);
  box-shadow: var(--ll-shadow-sm);
}

.nav-btn:active,
.btn-home:active{
  transform:translateY(0);
  box-shadow:none;
}

.nav-btn:focus-visible,
.btn-home:focus-visible{
  outline:none;
  box-shadow: var(--ll-focus);
}

/* HOME/CTA */
.btn-home{
  background:var(--ll-primary);
  color:#fff;
  box-shadow: 0 14px 30px rgba(29,78,216,.18);
  border-color: rgba(29,78,216,.45);
}
.btn-home:hover{
  background:var(--ll-primary-dark);
}

/* PREMIUM */
.nav-btn--amber{
  background:var(--ll-accent);
  color:#0B1220;
  border-color: rgba(201,162,76,.55);
  box-shadow: 0 14px 30px rgba(201,162,76,.16);
}
.nav-btn--amber:hover{
  background:var(--ll-accent-dark);
}

/* NEUTRO */
.nav-btn--slate{
  background:#fff;
  color:var(--ll-text);
  border-color: var(--ll-border-strong);
}
.nav-btn--slate:hover{
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.18);
}

/* DANGER */
.nav-btn--danger{
  background:var(--ll-danger);
  color:#fff;
  border-color: rgba(185,28,28,.45);
  box-shadow: 0 14px 30px rgba(185,28,28,.14);
}
.nav-btn--danger:hover{
  filter: brightness(.95);
}

/* JOBS (outline CTA) */
.nav-btn--jobs{
  background:#fff;
  color:var(--ll-primary);
  border-color: rgba(29,78,216,.55);
}
.nav-btn--jobs:hover{
  background: rgba(29,78,216,.10);
}

/* SWITCH DE IDIOMA */
.lang-switch{
  display:flex;
  gap:4px;
  align-items:center;
}

.lang-pill{
  padding:4px 9px;
  border-radius:999px;
  background:#e5e7eb;
  color:#374151;
  font-size:12px;
  font-weight:800;
}

.lang-pill.is-active{
  background: var(--ll-accent);
  color:#0B1220;
}

/* FLASH */
.flash{
  max-width:1180px;
  margin:10px auto;
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  border:1px solid var(--ll-border);
  background: var(--ll-surface);
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
}

.flash-ok{
  border-color: rgba(22,163,74,.25);
  background: rgba(22,163,74,.08);
  color: var(--ll-success);
}

.flash-err{
  border-color: rgba(185,28,28,.25);
  background: rgba(185,28,28,.08);
  color: var(--ll-danger);
}

/* MAIN CONTAINER */
main.container{
  max-width:1200px;
  margin:20px auto 40px;
  padding:0 16px;
  width:100%;
}

/* FOOTER FIX FINAL */

.site-footer{
  background:#2f4333;
  color:#fff;
  padding:34px 0 18px;
}

.footer-main{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:42px;
}

.footer-left,
.footer-center,
.footer-right{
  flex:1;
}

.footer-left img{
  max-width:150px;
  height:auto;
  display:block;
  margin-bottom:14px;
}

.footer-left p{
  max-width:360px;
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.86);
}

.footer-center nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-center a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

.footer-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.f-socials{
  display:flex;
  gap:12px;
}

.f-socials a{
  color:#fff;
}

.footer-map img{
  max-width:120px;
  height:auto;
}

.footer-bottom{
  max-width:1180px;
  margin:26px auto 0;
  padding:18px 24px 0;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.footer-bottom p{
  max-width:760px;
  margin:0 auto 6px;
  font-size:13px;
  line-height:1.65;
  color:rgba(255,255,255,.84);
}

.footer-bottom small{
  display:block;
  margin-bottom:14px;
  font-size:11px;
  color:rgba(255,255,255,.62);
}

.footer-copy{
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:12px;
  color:rgba(255,255,255,.75);
}

@media(max-width:768px){
  .footer-main{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:24px;
  }

  .footer-left p{
    margin:0 auto;
  }

  .footer-center nav{
    align-items:center;
  }

  .footer-bottom{
    margin-top:22px;
  }
}

/* =========================
   TOOLTIP "COMO ANUNCIAR" — SEM ESTOURAR
   ========================= */
.ll-tooltip-wrapper{
  position:relative;
  display:inline-block;
}

.ll-tooltip-card{
  position:absolute;
  left:50%;
  top:calc(100% + 10px);
  transform: translateX(-50%);
  width:320px;
  max-width: calc(100% - 24px);

  border-radius:14px;
  padding:12px 14px;

  background: radial-gradient(circle at top left, rgba(29,78,216,.10) 0, #fff 60%);
  border:1px solid var(--ll-border);
  box-shadow: 0 12px 30px rgba(15,23,42,.18);

  font-size:13px;
  color:#374151;

  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:2000;
}

.ll-tooltip-card::before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%);
  border-width:0 8px 8px 8px;
  border-style:solid;
  border-color:transparent transparent #ffffff transparent;
}

.ll-tooltip-wrapper:hover .ll-tooltip-card,
.ll-tooltip-wrapper:focus-within .ll-tooltip-card{
  opacity:1;
  pointer-events:auto;
  transform: translateX(-50%) translateY(2px);
}

.ll-tooltip-card--right{
  left:50% !important;
  top:calc(100% + 10px) !important;
  right:auto !important;
  transform:translateX(-50%) !important;
}
.ll-tooltip-card--right::before{
  top:-8px !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  border-width:0 8px 8px 8px !important;
  border-color:transparent transparent #ffffff transparent !important;
}

/* Page wrap padrão */
.page-wrap{
  width:100%;
  max-width:1180px;
  margin:20px auto;
  padding:0 16px;
}

/* Full width garantido */
.ll-top-promo,
header.nav,
.angola-strip,
.site-footer{
  width:100%;
  max-width:none;
  margin-left:0;
  margin-right:0;
}







.nav .navbar-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-btn--guide{
  background: #eef3ef;
  color: #1f3d2b;
  border: 1px solid rgba(31, 61, 43, .10);
}

.nav-btn--guide:hover{
  background: #e6eee8;
}

.lang-dropdown{
  position: relative;
  margin-left: 4px;
}

.lang-dropdown__toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, .35);
  background: #fff;
  color: #0f172a;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.lang-dropdown__toggle:hover{
  background: #f8fafc;
}

.lang-dropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .30);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(2, 6, 23, .16);
  padding: 8px;
  z-index: 10020;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.lang-dropdown.open .lang-dropdown__menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown__item{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}

.lang-dropdown__item:hover{
  background: #f8fafc;
}

.lang-dropdown__item.is-active{
  background: #eef3ef;
  color: #1f3d2b;
}

@media (max-width: 992px){
  .lang-dropdown{
    width: 100%;
    margin-left: 0;
  }

  .lang-dropdown__toggle{
    width: 100%;
    justify-content: space-between;
  }

  .lang-dropdown__menu{
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    transform: none;
    display: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .lang-dropdown.open .lang-dropdown__menu{
    display: block;
  }
}



/* ===========================
   Footer Social + Mapa (FINAL)
   =========================== */

.footer-social-map{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

}

/* Ícones sociais */
.footer-social-icons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-social-icons a{
  color: #ffffff;
  font-size: 18px;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-social-icons a:hover{
  transform: translateY(-2px);
  opacity: .85;
}

/* Bloco do mapa */
.footer-map{
  width: 140px;
  max-width: 140px;
  min-width: 140px;
  flex: 0 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-map img{
  width: 100%;
  height: auto;
  display: block;

  /* ESSENCIAL */
  background: transparent;
  mix-blend-mode: lighten;

  /* acabamento */
  opacity: 0.9;
  
}




 /* COOKIES */

.ll-cookie{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(940px, calc(100% - 24px));
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ll-cookie-left{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.ll-cookie-left i{
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(62,89,66,.10);
  color: #3E5942;
  font-size: 18px;
  margin-top: 2px;
}

.ll-cookie-left p{
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

.ll-cookie-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.ll-btn-cookie{
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all .18s ease;
}

.ll-btn-cookie.accept{
  background: #3E5942;
  color: #fff;
  box-shadow: 0 10px 20px rgba(62,89,66,.18);
}

.ll-btn-cookie.accept:hover{
  background: #2f4333;
}

.ll-btn-cookie.reject{
  background: #f1f5f9;
  color: #111827;
  border: 1px solid rgba(15,23,42,.08);
}

.ll-btn-cookie.reject:hover{
  background: #e5e7eb;
}

.ll-btn-cookie.more{
  background: transparent;
  color: #0F3D4C;
  border: 1px solid rgba(15,61,76,.16);
}

.ll-btn-cookie.more:hover{
  background: rgba(15,61,76,.06);
}

/* Tablet */
@media (max-width: 860px){
  .ll-cookie{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ll-cookie-actions{
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

/* Mobile */
@media (max-width: 560px){
  .ll-cookie{
    padding: 14px;
    bottom: 12px;
    width: calc(100% - 16px);
  }

  .ll-cookie-left{
    align-items: flex-start;
  }

  .ll-cookie-left i{
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 16px;
  }

  .ll-cookie-left p{
    font-size: 12px;
    line-height: 1.45;
  }

  .ll-cookie-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ll-btn-cookie.more{
    grid-column: 1 / -1;
  }

  .ll-btn-cookie{
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }
}


.nav-toggle span{
  transition: 
    transform .35s cubic-bezier(.4,0,.2,1),
    opacity .2s ease,
    width .3s ease;
}

/* efeito "vida" antes do X */
.nav-toggle.active span:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
  opacity: 0;
  transform: scaleX(0.5);
}

.nav-toggle.active span:nth-child(3){
  transform: translateY(-9px) rotate(-45deg);
}
.nav-toggle:active{
  transform: scale(0.92);
  transition: transform .1s ease;
}
.nav-toggle:hover span:nth-child(1){
  transform: translateX(2px);
}

.nav-toggle:hover span:nth-child(3){
  transform: translateX(-2px);
}



/* ===============================
   FOOTER FINAL — PC + MOBILE
   =============================== */

.site-footer{
  padding: 34px 20px 24px !important;
}

.footer-container{
  max-width: 1120px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.1fr .75fr .55fr !important;
  gap: 26px !important;
  align-items: start !important;
}

.footer-left img{
  max-width: 180px !important;
}

.footer-left p{
  max-width: 420px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.footer-center nav a{
  font-size: 13px !important;
  line-height: 1.35 !important;
  margin-bottom: 6px !important;
  overflow-wrap: anywhere !important;
}

.footer-right{
  align-items: center !important;
}

.footer-social-map{
  align-items: center !important;
  gap: 12px !important;
}

.footer-social-icons{
  gap: 12px !important;
}

.footer-map{
  width: 115px !important;
  max-width: 115px !important;
  min-width: 0 !important;
  flex: none !important;
}

.footer-legal{
  grid-column: 1 / -1 !important;
  text-align: center !important;
  margin-top: 10px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: rgba(231,238,232,.72) !important;
}

/* MOBILE */
@media (max-width: 768px){

  .site-footer{
    padding: 34px 24px 30px !important;
  }

  .footer-container{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    text-align: left !important;
  }

  .footer-left img{
    max-width: 420px !important;
    width: 100% !important;
  }

  .footer-left p{
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .footer-center nav a{
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .footer-right,
  .footer-social-map{
    align-items: flex-start !important;
  }

  .footer-social-icons{
    justify-content: flex-start !important;
    font-size: 22px !important;
  }

  .footer-map{
    width: 190px !important;
    max-width: 190px !important;
  }

  .footer-legal{
    text-align: left !important;
    font-size: 14px !important;
    margin-top: 4px !important;
  }
}




@media (min-width: 769px){

  .footer-container{
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr 0.6fr !important;
    align-items: start !important;
  }

  .footer-right{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .footer-social-map{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .footer-map{
    width: 120px !important;
  }

  .footer-map img{
    width: 100%;
    height: auto;
  }

  .footer-legal{
    grid-column: 1 / -1 !important;
    text-align: center !important;
    margin-top: 18px !important;
  }
}




/* FOOTER MOBILE — AJUSTE FINAL */
@media (max-width: 768px){

  .site-footer{
    padding: 28px 22px 24px !important;
  }

  .footer-container{
    gap: 20px !important;
  }

  .footer-left img{
    max-width: 330px !important;
  }

  .footer-left p{
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-top: 14px !important;
  }

  .footer-center nav a{
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .f-socials{
    display: flex !important;
    gap: 22px !important;
    margin-top: 4px !important;
  }

  .f-socials a{
    font-size: 22px !important;
  }

  .footer-map{
    width: 170px !important;
    max-width: 170px !important;
    margin-top: 8px !important;
  }

  .footer-legal{
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-top: 8px !important;
    padding-top: 14px !important;
  }
}



/* ===== FOOTER MOBILE FINAL (override) ===== */
@media (max-width: 768px){

  .footer-container{
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
    gap: 20px !important;
  }

  .footer-left img{
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-left p{
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .footer-center nav a{
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  .f-socials{
    justify-content: flex-start !important;
    gap: 18px !important;
  }

  .f-socials a{
    font-size: 20px !important;
  }

  .footer-map{
    width: 160px !important;
    max-width: 160px !important;
  }

  .footer-legal{
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
  }
}



/* ===== FOOTER MOBILE CENTRALIZADO ===== */
@media (max-width: 768px){

  .footer-center,
  .footer-center nav,
  .footer-right,
  .f-socials,
  .footer-map,
  .footer-legal{
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-center nav a{
    text-align: center !important;
  }

  .f-socials{
    display: flex !important;
  }

  .footer-map{
    display: flex !important;
    width: 170px !important;
    max-width: 170px !important;
  }

  .footer-legal{
    width: 100% !important;
    display: block !important;
  }
}




/* ===============================
   NAV TABLET FIX — iPad / 769px-1100px
   =============================== */
@media (min-width: 769px) and (max-width: 1300px){

  .nav{
    padding: 8px 0 10px !important;
  }

  .nav .container{
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px 12px !important;
  }

  .brand,
  .logo{
    flex: 0 0 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .brand img,
  .logo img{
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
  }

  .navbar-actions{
    flex: 0 0 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    margin-top: 0 !important;
  }

  .nav-btn,
  .btn-home,
  .lang-dropdown__toggle{
    min-height: 34px !important;
    padding: 7px 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .lang-dropdown{
    width: auto !important;
    margin-left: 0 !important;
  }

  .lang-dropdown__menu{
    position: absolute !important;
    right: 0 !important;
    min-width: 180px !important;
  }
}





/* =========================================
   FOOTER — IMAGEM INSTITUCIONAL
========================================= */

.footer-left img{
    display:block;
    width:100%;
    max-width:270px;   /* antes estava ~180/190 */
    height:auto;

    border-radius:14px;
    border:1px solid rgba(255,255,255,.10);

    box-shadow:0 10px 24px rgba(0,0,0,.18);
    transition:.25s ease;
}

.footer-left img:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(0,0,0,.24);
}

/* Apenas desktop */
@media (min-width:769px){
    .footer-left img{
        max-width:250px;
    }
}









