@charset "UTF-8";
/* ==========================================================================
   BLEND IDEAS — Header e rodapé para as LANDING PAGES existentes
   site-2026/assets/css/blend-nav.css

   POR QUE ESTE ARQUIVO EXISTE, E NÃO O blend.css
   As LPs de segmento já estão no ar, foram feitas à mão e têm CSS inline
   próprio. O blend.css tem reset global (`* { margin: 0 }`, regras em
   body, h1..h4, img, a) que QUEBRARIA o layout delas.

   Este arquivo:
     - não tem reset global
     - não estiliza nenhuma tag solta (nada de `body`, `h2`, `img`, `p`)
     - usa o prefixo `bi-` em toda classe, para não colidir com as classes
       das LPs (que já usam .container, .footer-grid, .btn e afins)
     - declara os próprios tokens dentro de escopo, não no :root

   Tokens idênticos aos da marca. Nenhum valor inventado.
   ========================================================================== */

.bi-header, .bi-footer, .bi-fab, .bi-crumb {
  --bi-red: #CC1A1A;
  --bi-red-bright: #E52020;
  --bi-red-text: #F02B2B;      /* 4,88:1 sobre #060610, passa no WCAG AA */
  --bi-red-deep: #A01414;
  --bi-bg: #060610;
  --bi-surface: #0D0D1E;
  --bi-line: #252545;
  --bi-text: #F0F0F8;
  --bi-muted: #C0C0D0;
  --bi-subtle: #888898;
  --bi-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --bi-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --bi-tap: 44px;
  box-sizing: border-box;
}
.bi-header *, .bi-footer *, .bi-fab * { box-sizing: border-box; }


/* ============================ HEADER ============================ */

.bi-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(6, 6, 16, 0.92);
  border-bottom: 1px solid var(--bi-line);
  font-family: var(--bi-body);
}
@supports (backdrop-filter: blur(12px)) {
  .bi-header { backdrop-filter: blur(12px); }
}

.bi-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.bi-brand {
  display: inline-flex;
  align-items: center;
  min-height: var(--bi-tap);
  text-decoration: none;
  flex: none;
}
.bi-brand img { height: 30px; width: auto; display: block; border: 0; }
@media (min-width: 1024px) { .bi-brand img { height: 36px; } }

/* --- botão hambúrguer: só aparece quando o JS está ativo --- */
.bi-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--bi-tap);
  min-width: var(--bi-tap);
  padding: 0 12px;
  background: none;
  border: 1px solid var(--bi-line);
  border-radius: 9999px;
  color: var(--bi-text);
  font: inherit;
  cursor: pointer;
}
.bi-js .bi-toggle { display: inline-flex; }
.bi-toggle:hover { border-color: var(--bi-subtle); }
.bi-toggle:focus-visible { outline: 3px solid var(--bi-red-bright); outline-offset: 2px; }
.bi-toggle__bars { position: relative; width: 18px; height: 12px; flex: none; }
.bi-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.bi-toggle__bars span:nth-child(1) { top: 0; }
.bi-toggle__bars span:nth-child(2) { top: 5px; }
.bi-toggle__bars span:nth-child(3) { top: 10px; }
.bi-toggle[aria-expanded="true"] .bi-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.bi-toggle[aria-expanded="true"] .bi-toggle__bars span:nth-child(2) { opacity: 0; }
.bi-toggle[aria-expanded="true"] .bi-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* --- lista de navegação ---
   Nasce VISÍVEL. O JS é quem colapsa. Se o JS falhar, nenhum link se perde. */
.bi-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bi-js .bi-nav {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--bi-bg);
  border-bottom: 1px solid var(--bi-line);
  padding: 8px 20px 20px;
}
.bi-js .bi-nav[hidden] { display: none; }

.bi-nav a {
  display: flex;
  align-items: center;
  min-height: var(--bi-tap);
  padding: 4px 0;
  color: var(--bi-muted);
  font-family: var(--bi-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--bi-line);
  transition: color .2s ease;
}
.bi-nav a:hover { color: var(--bi-red-text); }
.bi-nav a:focus-visible { outline: 3px solid var(--bi-red-bright); outline-offset: 2px; }
.bi-nav a[aria-current="page"] { color: var(--bi-red-text); }

/* --- CTA de WhatsApp --- */
.bi-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--bi-tap);
  padding: 10px 20px;
  background: var(--bi-red);
  color: #fff;
  font-family: var(--bi-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: 0;
  transition: background .2s ease;
  white-space: nowrap;
}
.bi-cta:hover { background: var(--bi-red-deep); color: #fff; }
.bi-cta:focus-visible { outline: 3px solid var(--bi-red-bright); outline-offset: 2px; }
.bi-nav .bi-cta { margin-top: 16px; width: 100%; border-bottom: 0; }
.bi-header__cta { display: none; }

/* --- desktop: navegação horizontal, sem hambúrguer --- */
@media (min-width: 900px) {
  .bi-js .bi-toggle { display: none; }
  .bi-js .bi-nav,
  .bi-js .bi-nav[hidden] {
    display: block;
    position: static;
    background: none;
    border: 0;
    padding: 0;
  }
  .bi-nav ul { flex-direction: row; align-items: center; gap: 4px; }
  .bi-nav a {
    border-bottom: 0;
    padding: 0 12px;
    font-size: 15px;
    color: var(--bi-text);
  }
  .bi-nav .bi-cta { display: none; }
  .bi-header__cta { display: inline-flex; }
}


/* ============================ RODAPÉ ============================ */

.bi-footer {
  background: var(--bi-bg);
  border-top: 1px solid var(--bi-line);
  color: var(--bi-muted);
  font-family: var(--bi-body);
  font-size: 15px;
  line-height: 1.65;
  padding: 48px 0 32px;
}
.bi-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.bi-footer__top {
  display: grid;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bi-line);
}
@media (min-width: 768px) {
  .bi-footer__top { grid-template-columns: 1fr auto; align-items: center; }
}
.bi-footer__brand img { height: 40px; width: auto; display: block; border: 0; }
.bi-footer__pitch { margin: 12px 0 0; max-width: 34ch; color: var(--bi-muted); }

.bi-footer__cols {
  display: grid;
  gap: 28px;
  padding: 32px 0;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .bi-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bi-footer__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.bi-footer__title {
  margin: 0 0 8px;
  font-family: var(--bi-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bi-text);
}
.bi-footer__cols ul { list-style: none; margin: 0; padding: 0; }
.bi-footer__cols a {
  display: flex;
  align-items: center;
  min-height: var(--bi-tap);
  color: var(--bi-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.bi-footer__cols a:hover { color: var(--bi-red-text); text-decoration: underline; }
.bi-footer__cols a:focus-visible { outline: 3px solid var(--bi-red-bright); outline-offset: 2px; }

.bi-footer__bottom {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--bi-line);
  font-size: 14px;
  color: var(--bi-subtle);
}
.bi-footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.bi-footer__legal a {
  display: inline-flex; align-items: center; min-height: var(--bi-tap);
  color: var(--bi-muted); text-decoration: underline;
}
.bi-footer__legal a:hover { color: var(--bi-red-text); }
.bi-footer__bottom p { margin: 0; }


/* ==================== BOTÃO FLUTUANTE DE WHATSAPP ==================== */

.bi-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  background: var(--bi-red);
  color: #fff;
  font-family: var(--bi-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45), 0 0 16px rgba(204, 26, 26, .4);
  transition: background .2s ease, transform .2s ease;
}
.bi-fab:hover { background: var(--bi-red-deep); color: #fff; transform: translateY(-2px); }
.bi-fab:focus-visible { outline: 3px solid var(--bi-red-bright); outline-offset: 3px; }
.bi-fab svg { width: 24px; height: 24px; fill: currentColor; flex: none; }

/* Acessibilidade */
.bi-vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .bi-header *, .bi-footer *, .bi-fab { transition: none !important; }
  .bi-fab:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   TRILHA DE NAVEGAÇÃO (breadcrumb)

   O HTML do breadcrumb existia em 6 páginas desde a virada, mas nenhuma regra
   de estilo tinha sido escrita para ele. Sem estilo, o navegador desenha a
   lista padrão: "1. Início  2. Serviços  3. ...", numerada e empilhada.
   Aparece em consultoria-seo, contato, criacao-sites, gestao-trafego,
   metodologia e solucoes-de-ia.

   O <nav> fica DENTRO do .container do hero, então aqui não entra nem
   max-width nem padding horizontal: só o espaçamento de baixo.
   -------------------------------------------------------------------------- */
.bi-crumb {
  margin: 0 0 8px;
  font-family: var(--bi-body);
  font-size: 13px;
  line-height: 1.4;
}
.bi-crumb > ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bi-crumb > ol > li {
  display: inline-flex;
  align-items: center;
  /* 44px: mesmo alvo de toque do resto da navegação */
  min-height: var(--bi-tap);
  color: var(--bi-subtle);
}
.bi-crumb > ol > li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--bi-line);
}
.bi-crumb > ol > li > a {
  color: var(--bi-muted);
  text-decoration: none;
}
.bi-crumb > ol > li > a:hover,
.bi-crumb > ol > li > a:focus-visible {
  color: var(--bi-red-text);
  text-decoration: underline;
}
.bi-crumb > ol > li[aria-current="page"] {
  color: var(--bi-subtle);
}
