/* Lojas Brasil Home — estilos compartilhados (reescrita estática) */
/* Fontes variáveis — apenas latin/latin-ext (pt-BR), servidas como arquivos */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/source-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/source-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

html, body { height: 100%; margin: 0; }
body { background: #FFFFFF; color: #12263F; font-family: 'Source Sans 3', system-ui, sans-serif; }
* { box-sizing: border-box; }
a { color: #0E5C31; text-decoration: none; }
a:hover { color: #12263F; }
img { display: block; max-width: 100%; }

/* Lightbox — overlay de zoom para imagens */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(9, 15, 26, .93);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lb-overlay.lb-open { display: flex; }
.lb-img {
  max-width: 92vw; max-height: 86vh;
  border-radius: 4px; box-shadow: 0 14px 44px rgba(0, 0, 0, .55);
  background: #fff; cursor: zoom-in;
  transition: transform .25s ease;
}
.lb-close, .lb-nav {
  position: absolute; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 14px; right: 18px; width: 46px; height: 46px; border-radius: 50%; font-size: 26px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 68px; border-radius: 10px; font-size: 32px; }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, .28); }
.lb-close:focus-visible, .lb-nav:focus-visible { outline: 2px solid #F2B705; outline-offset: 2px; }
.lb-caption {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  color: rgba(255, 255, 255, .88); font: 16px/1.4 'Source Sans 3', system-ui, sans-serif;
  pointer-events: none;
}
.lb-hint {
  position: absolute; top: 20px; left: 22px;
  color: rgba(255, 255, 255, .55); font: 13px/1.4 'Source Sans 3', system-ui, sans-serif;
  pointer-events: none;
}
