/* ============================================================
   BOMPARC — Identidade base
   ============================================================ */
:root{
  --azul:        #013097;
  --azul-escuro: #04163b;
  --detalhe:     #f82c1f;
  --branco:      #ffffff;

  --grad-inst: linear-gradient(90deg, var(--azul) 0%, var(--azul-escuro) 100%);

  --ff: 'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --logo-w: 60vw;   /* largura da logo na fase 1 (definida em JS) */
}

*,*::before,*::after{ box-sizing:border-box; }

html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family:var(--ff);
  font-weight:400;
  color:var(--branco);
  background:var(--azul-escuro);
  overflow-x:hidden;
  overflow-x:clip;          /* 'hidden' quebraria o position:sticky */
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* trava a rolagem enquanto a abertura roda */
body.is-intro{ overflow:hidden; height:100vh; }
body.is-intro .hero{ pointer-events:none; }

img{ max-width:100%; display:block; }


/* ============================================================
   SESSÃO 01 — ABERTURA / HERO
   ============================================================ */
.hero{
  position:relative;
  width:100%;
  height:100vh;
  height:100svh;
  overflow:hidden;
  isolation:isolate;
  background:var(--azul-escuro);
}

/* ---------- fundo branco da abertura ---------- */
.curtain{
  position:absolute;
  inset:0;
  z-index:1;
  background:var(--branco);
}

/* ---------- vídeo em tela cheia ---------- */
.hero__media{
  position:absolute;
  inset:0;
  z-index:2;
  opacity:0;
  pointer-events:none;
  transform-origin:50% 50%;
  will-change:transform,opacity;
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero__scrim{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(4,22,59,.55) 0%, rgba(4,22,59,.10) 42%, rgba(4,22,59,.78) 100%),
    linear-gradient(90deg, rgba(1,48,151,.42) 0%, rgba(4,22,59,.55) 100%);
}

/* ---------- logo colorida: cresce do centro e entra pelo P ---------- */
.intro-logo{
  position:absolute;
  z-index:3;
  top:50%;
  left:50%;
  width:var(--logo-w);
  height:auto;
  opacity:0;
  transform:translate(-50%,-50%) scale(.24);
  transform-origin:50% 50%;
  will-change:transform,opacity;
  backface-visibility:hidden;
  pointer-events:none;
}

/* ---------- conteúdo central ---------- */
.hero__content{
  position:absolute;
  inset:0;
  z-index:5;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:clamp(1.5rem,4vw,4rem);
  pointer-events:none;
}
.hero__content > *{ pointer-events:auto; }

/* entrada escalonada */
.hero__logo,
.hero__title,
.hero__rule,
.hero__lead,
.scroll-cue{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .9s cubic-bezier(.16,.84,.34,1),
             transform .9s cubic-bezier(.16,.84,.34,1);
}
.hero__content.is-in .hero__logo { opacity:1; transform:none; transition-delay:0s;   }
.hero__content.is-in .hero__title{ opacity:1; transform:none; transition-delay:.14s; }
.hero__content.is-in .hero__rule { opacity:1; transform:none; transition-delay:.28s; }
.hero__content.is-in .hero__lead { opacity:1; transform:none; transition-delay:.40s; }
.hero__content.is-in .scroll-cue{ opacity:1; transform:none; transition-delay:.62s; }

.hero__logo{
  width:clamp(170px,20vw,300px);
  margin-bottom:clamp(1.3rem,3vw,2.3rem);
  filter:drop-shadow(0 6px 30px rgba(0,0,0,.35));
}

.hero__title{
  margin:0;
  max-width:22ch;
  font-size:clamp(1.55rem,3.2vw,2.65rem);   /* ~42px no topo */
  font-weight:900;
  line-height:1.12;
  letter-spacing:-.015em;
  text-wrap:balance;
  text-shadow:0 4px 34px rgba(4,22,59,.55);
}

.hero__rule{
  display:block;
  width:clamp(80px,8vw,120px);
  height:10px;
  margin:clamp(1.3rem,2.6vw,1.9rem) 0;
  background:var(--detalhe);
  border-radius:2px;
}

.hero__lead{
  margin:0;
  max-width:62ch;
  font-size:clamp(.95rem,1.2vw,1.12rem);
  font-weight:300;
  line-height:1.68;
  color:rgba(255,255,255,.9);
  text-wrap:pretty;
  text-shadow:0 2px 18px rgba(4,22,59,.5);
}

/* ---------- indicação de scroll ---------- */
.scroll-cue{
  position:absolute;
  bottom:clamp(1.4rem,3.6vh,2.6rem);
  left:50%;
  transform:translateX(-50%) translateY(26px);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  color:var(--branco);
  text-decoration:none;
}
.hero__content.is-in .scroll-cue{ transform:translateX(-50%); }

.scroll-cue__mouse{
  position:relative;
  display:block;
  width:26px;
  height:42px;
  border:2px solid rgba(255,255,255,.6);
  border-radius:14px;
  transition:border-color .35s ease, background-color .35s ease;
}
.scroll-cue__wheel{
  position:absolute;
  top:8px;
  left:50%;
  width:3px;
  height:8px;
  margin-left:-1.5px;
  border-radius:2px;
  background:var(--branco);
  animation:cue-wheel 2s cubic-bezier(.5,.05,.35,1) infinite;
}
.scroll-cue__arrows{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1px;
  color:var(--detalhe);
}
.scroll-cue__arrows svg{ width:16px; height:8px; opacity:0; animation:cue-arrow 2s ease-in-out infinite; }
.scroll-cue__arrows svg:nth-child(2){ animation-delay:.2s; }

.scroll-cue:hover .scroll-cue__mouse{
  border-color:var(--detalhe);
  background:rgba(248,44,31,.12);
}

@keyframes cue-wheel{
  0%       { transform:translateY(0);    opacity:0; }
  18%      { opacity:1; }
  70%,100% { transform:translateY(15px); opacity:0; }
}
@keyframes cue-arrow{
  0%,100%{ opacity:0; transform:translateY(-3px); }
  45%    { opacity:1; transform:translateY(0); }
  80%    { opacity:0; transform:translateY(3px); }
}


/* ---------- botão pular ---------- */
.skip-intro{
  position:fixed;
  z-index:60;
  right:clamp(1rem,2.5vw,2rem);
  bottom:clamp(1rem,2.5vw,2rem);
  min-height:44px;
  padding:.5rem 1.05rem;
  font-family:var(--ff);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--azul);
  background:transparent;
  border:2px solid rgba(1,48,151,.3);
  border-radius:999px;
  cursor:pointer;
  transition:opacity .4s ease, color .3s ease, border-color .3s ease, background-color .3s ease;
}
.skip-intro:hover{
  color:var(--detalhe);
  border-color:var(--detalhe);
  background:rgba(248,44,31,.06);
}
body:not(.is-intro) .skip-intro{ opacity:0; pointer-events:none; }


/* ============================================================
   TOPO — logo + menu + idiomas (entra na sessão 02)
   ============================================================ */
.topbar{
  position:fixed;
  z-index:50;
  top:0; left:0; right:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:clamp(1rem,3vw,3rem);
  /* +60px de respiro nas laterais (logo à esquerda, bandeiras à direita) */
  padding:clamp(.8rem,1.6vw,1.3rem) clamp(1.1rem,5.7vw,6.75rem);
  opacity:0;
  transform:translateY(-100%);
  pointer-events:none;
  background:transparent;                 /* sempre sobreposto ao vídeo */
  transition:opacity .6s ease, transform .7s cubic-bezier(.16,.84,.34,1);
}
body.admin-bar .topbar{ top:32px; }
@media screen and (max-width:782px){
  body.admin-bar .topbar{ top:46px; }
}
.topbar.is-in{
  opacity:1;
  transform:none;
  pointer-events:auto;
}

.topbar__logo{ position:relative; flex:0 0 auto; display:block; line-height:0; }
.topbar__logo img{
  width:clamp(152px,13vw,206px);
  height:auto;
  transition:opacity .45s ease;
}
.topbar__logo--cor{
  position:absolute;
  top:0; left:0;
  opacity:0;
}
/* sobre a sessão 03 (fundo branco): menu azul e logo colorida */
.topbar.is-light .topbar__logo--br { opacity:0; }
.topbar.is-light .topbar__logo--cor{ opacity:1; }
.topbar.is-light .nav__link{ color:var(--azul); text-shadow:none; }
.topbar.is-light .nav__link:hover{ color:var(--azul-escuro); }
.topbar.is-light .nav__cta{ color:var(--azul); text-shadow:none; }
.topbar.is-light .nav__cta:hover{ color:#fff; }

.nav{
  display:flex;
  align-items:center;
  gap:clamp(.4rem,1.5vw,1.7rem);
}
.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(255,255,255,.48);
  border-radius:8px;
  background:rgba(4,22,59,.24);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:19px;
  height:2px;
  margin:4px auto;
  border-radius:2px;
  background:#fff;
  transition:transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
.topbar.is-light .nav__toggle{ border-color:rgba(1,48,151,.35); background:rgba(255,255,255,.72); }
.topbar.is-light .nav__toggle span{ background:var(--azul); }
.nav__link{
  position:relative;
  color:rgba(255,255,255,.9);
  font-size:.86rem;
  font-weight:700;
  letter-spacing:.01em;
  text-decoration:none;
  padding:.35rem 0;
  text-shadow:0 2px 12px rgba(4,22,59,.55);   /* legível sobre o vídeo */
  transition:color .28s ease;
}
.nav__link::after{
  content:'';
  position:absolute;
  left:0; right:100%; bottom:0;
  height:2px;
  background:var(--detalhe);
  transition:right .32s cubic-bezier(.16,.84,.34,1);
}
.nav__link:hover{ color:#fff; }
.nav__link:hover::after{ right:0; }

.nav__cta{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  justify-content:center;
  padding:.5rem 1.25rem;
  color:#fff;
  font-size:.86rem;
  font-weight:700;
  text-decoration:none;
  border:2px solid var(--detalhe);
  border-radius:999px;
  transition:background-color .3s ease, color .3s ease;
}
.nav__link, .nav__cta{ transition:color .45s ease, background-color .3s ease; }
.nav__cta:hover{ background:var(--detalhe); }

/* botão preenchido: área do cliente */
.nav__client{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  gap:.5rem;
  padding:.55rem 1.15rem;
  color:#fff;
  font-size:.86rem;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  background:var(--detalhe);
  border:2px solid var(--detalhe);
  border-radius:999px;
  box-shadow:0 6px 18px rgba(248,44,31,.28);
  transition:background-color .3s ease, color .3s ease,
             transform .3s ease, box-shadow .3s ease;
}
.nav__client svg{ width:15px; height:15px; flex:0 0 auto; }
.nav__client:hover{
  background:transparent;
  color:var(--detalhe);
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(248,44,31,.18);
}
.topbar.is-light .nav__client:hover{ color:var(--detalhe); }

.lang{ display:flex; align-items:center; gap:3px; flex:0 0 auto; padding:3px; border:1px solid rgba(255,255,255,.34); border-radius:999px; background:rgba(4,22,59,.2); box-shadow:0 3px 12px rgba(0,0,0,.16); }
.lang__btn{
  display:grid;
  min-width:32px; height:28px;
  place-items:center;
  padding:0;
  border:0;
  border-radius:999px;
  background:none;
  color:#fff;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.04em;
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  opacity:.72;
  transition:opacity .3s ease, background-color .3s ease, color .3s ease, transform .3s ease;
}
.lang__btn:hover{ opacity:1; transform:translateY(-1px); }
.lang__btn.is-active{
  opacity:1;
  background:#fff;
  color:var(--azul);
}
.lang__btn.is-disabled{cursor:not-allowed;opacity:.4}
.topbar.is-light .lang{border-color:rgba(1,48,151,.2);background:#f3f6fc}
.topbar.is-light .lang__btn{color:var(--azul)}
.topbar.is-light .lang__btn.is-active{background:var(--azul);color:#fff}

/* A Home compartilha o seletor do cabeçalho interno. Estas regras vêm depois
 * do tema legado para que o idioma ativo mantenha o disco branco em qualquer
 * estado do hero ou da barra fixa. */
#topbar .bomparc-page-language--home{
  display:flex;
  align-items:center;
  gap:3px;
  padding:3px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:99px;
  background:rgba(4,22,59,.2);
  box-shadow:0 3px 12px rgba(0,0,0,.16);
}
#topbar .bomparc-page-language--home .bomparc-page-language__option{
  display:grid;
  min-width:32px;
  height:28px;
  place-items:center;
  border-radius:99px;
  background:transparent;
  color:#fff;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.04em;
  opacity:1;
}
#topbar .bomparc-page-language--home .bomparc-page-language__option.is-active{
  background:#fff;
  color:var(--azul);
}


/* ============================================================
   SESSÃO 02 — SOLUÇÕES (vídeo controlado pelo scroll)
   ============================================================ */
.svc{ position:relative; z-index:1; background:var(--azul-escuro); }
/* O vídeo acompanha o scroll nativo. Nenhum gesto é capturado ou cancelado. */
.svc__track{ height:320vh; }

.svc__sticky{
  position:sticky;
  top:0;
  height:100vh;
  height:100svh;
  overflow:hidden;
}

.svc__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.svc__scrim{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(4,22,59,.78) 0%, rgba(4,22,59,.20) 30%, rgba(4,22,59,.62) 62%, rgba(4,22,59,.90) 100%),
    linear-gradient(90deg, rgba(1,48,151,.30) 0%, rgba(4,22,59,.30) 100%);
}

.svc__inner{ position:absolute; inset:0; }

/* ---------- painéis empilhados ---------- */
.panel{
  position:absolute;
  left:clamp(1.1rem,3.2vw,3rem);
  right:clamp(1.1rem,3.2vw,3rem);
  bottom:clamp(3.2rem,8vh,5rem);
  visibility:hidden;
  transition:visibility 0s linear .8s;    /* só some depois do fade */
}
.panel.is-in{ visibility:visible; transition-delay:0s; }

.panel__title{
  margin:0 0 .85rem;
  font-size:clamp(1rem,1.35vw,1.25rem);
  font-weight:900;
  line-height:1.2;
  letter-spacing:-.01em;
  color:#fff;
  text-shadow:0 4px 30px rgba(4,22,59,.6);
}
.panel__line{
  display:block;
  height:1px;
  background:linear-gradient(90deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.12) 100%);
  margin-bottom:clamp(1rem,2vw,1.6rem);
}

/* entrada escalonada dos elementos do painel */
.panel__title,
.panel__line,
.panel .card{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .75s cubic-bezier(.16,.84,.34,1),
             transform .75s cubic-bezier(.16,.84,.34,1);
}
.panel__line{ transform:scaleX(.2); transform-origin:left center; }

.panel.is-in .panel__title{ opacity:1; transform:none; transition-delay:0s; }
.panel.is-in .panel__line { opacity:1; transform:scaleX(1); transition-delay:.12s; }
.panel.is-in .card:nth-child(1){ opacity:1; transform:none; transition-delay:.22s; }
.panel.is-in .card:nth-child(2){ opacity:1; transform:none; transition-delay:.30s; }
.panel.is-in .card:nth-child(3){ opacity:1; transform:none; transition-delay:.38s; }
.panel.is-in .card:nth-child(4){ opacity:1; transform:none; transition-delay:.46s; }
.panel.is-in .card:nth-child(5){ opacity:1; transform:none; transition-delay:.54s; }

/* ---------- botões cápsula ---------- */
.cards{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:clamp(.9rem,1.4vw,1.35rem);
}

.card{
  --r:13px;                          /* raio dos cantos */
  position:relative;
  display:flex;
  align-items:stretch;               /* azul e branco na mesma altura */
  min-height:56px;
  background:#fff;
  border:1.5px solid rgba(1,48,151,.55);
  border-radius:var(--r);
  text-decoration:none;
  box-shadow:0 8px 24px rgba(4,22,59,.20);
  transition:transform .35s cubic-bezier(.16,.84,.34,1),
             box-shadow .35s ease, border-color .35s ease;
}
.card:hover{
  transform:translateY(-3px);
  border-color:var(--azul);
  box-shadow:0 14px 34px rgba(4,22,59,.32);
}

/* a ponta azul: altura cheia e cantos arredondados dos dois lados,
   de modo que a parte branca pareça sair de dentro dela            */
.card__icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:46px;
  align-self:stretch;
  border-radius:calc(var(--r) - 1.5px);
  background:var(--azul);
}
.card__icon img{ width:52%; height:auto; }

.card__label{
  display:flex;
  align-items:center;
  padding:.5rem 1.4rem .5rem .75rem;
  color:var(--azul-escuro);
  font-size:.84rem;
  font-weight:700;
  line-height:1.22;
  text-align:left;
  letter-spacing:-.005em;
}

.card__go{
  position:absolute;
  right:9px;
  bottom:-8px;
  display:grid;
  place-items:center;
  width:25px;
  height:25px;
  border-radius:50%;
  background:var(--detalhe);
  border:2.5px solid #fff;
  color:#fff;
  transition:transform .35s cubic-bezier(.16,.84,.34,1);
}
.card__go svg{ width:12px; height:12px; }
.card:hover .card__go{ transform:translate(3px,-3px); }

/* ---------- indicador dos três momentos ---------- */
.svc__steps{
  position:absolute;
  right:clamp(1.1rem,3.2vw,3rem);
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:.6rem;
}
.svc__step{
  width:3px;
  height:28px;
  border-radius:2px;
  background:rgba(255,255,255,.25);
  transition:background-color .4s ease, height .4s ease;
}
.svc__step.is-on{ background:var(--detalhe); height:44px; }


/* ============================================================
   SESSÃO 03 — DIFERENCIAIS + NÚMEROS
   ============================================================ */
.why{
  position:relative;
  z-index:2;
  background:#fff;
  /* O corte fica no elemento sticky; aqui ele impediria o sticky de fixar. */
  overflow:visible;
}
.why__track{
  position:relative;
  height:260vh;
}
.why__sticky{
  position:sticky;
  top:0;
  display:flex;
  align-items:center;
  height:100vh;
  height:100svh;
  overflow:hidden;
  padding:clamp(5.5rem,11vh,7rem) clamp(1.1rem,3.2vw,3rem) clamp(2.75rem,7vh,4.5rem);
}

/* ---------- cabo de aço descendo pela lateral ---------- */
.why__rail{
  position:absolute;
  left:clamp(.5rem,2.4vw,3.2rem);
  top:0;
  bottom:0;
  width:clamp(34px,4.2vw,62px);
  pointer-events:none;
}
.why__cable{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;              /* ao terminar de descer, ocupa a sessão toda */
  object-fit:cover;
  object-position:center;
  transform:translateY(-100%);
  will-change:transform;
  filter:drop-shadow(6px 10px 22px rgba(4,22,59,.28));
}

/* ---------- marca d'água na borda direita ---------- */
.why__mark{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:100%;
  /* versão recortada (sem as margens transparentes do PNG original),
     para o B encostar de fato na borda direita; 132% da altura da
     sessão deixa a marca maior que o quadro, sangrando em cima e embaixo */
  background:url('../img/simbol_mark.png') right center / auto 132% no-repeat;
  opacity:.07;
  pointer-events:none;
  z-index:0;
}

.why__grid{
  position:relative;
  z-index:1;                 /* conteúdo acima da marca d'água */
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(2.2rem,5vw,5.5rem);
  align-items:center;
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding-left:clamp(3.4rem,8vw,9rem);   /* espaço para o cabo */
}

/* entrada suave (sessão 04) */
.reveal > *{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s cubic-bezier(.16,.84,.34,1),
             transform .8s cubic-bezier(.16,.84,.34,1);
}
.reveal.is-in > *{ opacity:1; transform:none; }
.reveal.is-in > *:nth-child(2){ transition-delay:.10s; }
.reveal.is-in > *:nth-child(3){ transition-delay:.18s; }

/* sessão 03: a entrada lateral é conduzida pelo scroll (JS) */
.why__title,
.why__rule,
.check,
.stat{
  opacity:0;
  will-change:transform,opacity;
}

/* ---------- coluna esquerda ---------- */
.why__title{
  margin:0;
  font-size:clamp(1.6rem,3vw,2.5rem);
  font-weight:900;
  line-height:1.12;
  letter-spacing:-.02em;
  color:var(--azul-escuro);
}
.why__rule{
  display:block;
  width:100%;
  max-width:420px;
  height:3px;
  margin:clamp(1.1rem,2.2vw,1.6rem) 0 clamp(1.4rem,2.6vw,2rem);
  background:var(--detalhe);
  border-radius:2px;
}

.checks{ list-style:none; margin:0; padding:0; display:grid; gap:clamp(.85rem,1.6vw,1.15rem); }
.check{ display:flex; align-items:flex-start; gap:.85rem; }
.check__box{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  margin-top:1px;
  border-radius:6px;
  background:transparent;               /* vazado: só o contorno */
  border:2px solid var(--detalhe);
  color:var(--detalhe);
}
.check__box svg{ width:15px; height:15px; }
.check__txt{
  color:var(--azul-escuro);
  font-size:clamp(.95rem,1.15vw,1.06rem);
  font-weight:400;
  line-height:1.5;
}

/* ---------- caixas de dados ---------- */
.stats{ display:grid; gap:clamp(1.5rem,2.6vw,2.1rem); }

.stat{
  --icon:88px;
  position:relative;
  display:flex;
  align-items:center;
  min-height:110px;
  padding:1.1rem 1.6rem 1.1rem calc(var(--icon) * .8 + 1.5rem);
  background:var(--azul);
  border:1px solid rgba(255,255,255,.24);
  border-radius:18px;
  box-shadow:0 18px 42px rgba(1,48,151,.20);
  transition:transform .25s ease,box-shadow .25s ease;
}
.stat:hover,.stat:focus-within{transform:translateY(-4px);box-shadow:0 24px 52px rgba(1,48,151,.28)}

/* quadrado vermelho: 80% dele sobre o retângulo azul */
.stat__icon{
  position:absolute;
  left:calc(var(--icon) * -.2);
  top:50%;
  display:grid;
  place-items:center;
  width:var(--icon);
  height:var(--icon);
  margin-top:calc(var(--icon) / -2);
  border-radius:10px;
  background:var(--detalhe);
  color:#fff;
  box-shadow:0 16px 26px rgba(4,22,59,.34);
}
.stat__icon svg{ width:46%; height:46%; }

.stat__body{ flex:1 1 auto; min-width:0; }

.stat__num{
  display:flex;
  align-items:baseline;
  gap:.18em;
  font-size:clamp(1.9rem,3.2vw,2.7rem);
  font-weight:900;
  line-height:1;
  letter-spacing:-.02em;
  color:#fff;
}
.stat__plus{ font-size:.62em; font-weight:700; }

.stat__sep{
  display:block;
  height:1px;
  margin:.65rem 0 .55rem;
  background:rgba(255,255,255,.55);
}
.stat__label{
  font-size:clamp(.82rem,1vw,.95rem);
  font-weight:400;
  color:rgba(255,255,255,.88);
  line-height:1.35;
}


/* ============================================================
   SESSÃO 04 — CLIENTES
   ============================================================ */
.clients{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  min-height:100vh;
  padding:clamp(7rem,15vh,11rem) clamp(1.1rem,3.2vw,3rem) clamp(4rem,9vh,6rem);
  background:#eceff5;             /* branco gelo: separa da sessão 03 */
  overflow:hidden;
}

.clients__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(2rem,4vw,3.8rem);
  align-items:center;
  width:100%;
  max-width:1280px;
  margin:0 auto;
}

/* ---------- painel esquerdo: fundo padronizado + sombra na divisão ---------- */
.clients__panel{
  --wm:clamp(78px,7.5vw,118px);       /* passo da marca d'água */
  position:relative;
  z-index:0;
  display:grid;
  grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr);
  align-items:center;
  gap:clamp(2rem,5vw,5rem);
  /* topo bem maior e base zerada: o bloco desce inteiro sem que a
     coluna cresça e volte a se recentralizar no grid              */
  padding:clamp(2rem,4vw,3.5rem);
  border:1px solid rgba(1,48,151,.10);
  background:rgba(255,255,255,.62);
  box-shadow:0 24px 60px rgba(4,22,59,.10);
}

/* o painel sangra até a borda esquerda e por toda a altura da sessão */
.clients__panel::before,
.clients__panel::after{
  content:'';
  position:absolute;
  top:-100vh;
  bottom:-100vh;
  right:0;
  left:-100vw;
  pointer-events:none;
}
/* marca d'água repetida, em xadrez, bem fraca */
.clients__panel::before{
  display:none;
}
/* o lado direito passa por cima: sombra na divisão */
.clients__panel::after{
  display:none;
}

/* título da sessão */
.clients__head{ text-align:left; }
.clients__title{
  margin:0;
  font-size:clamp(1.5rem,2.7vw,2.25rem);
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.02em;
  color:var(--azul-escuro);
}
.clients__rule{
  display:block;
  width:clamp(80px,8vw,120px);
  height:10px;
  margin:clamp(.9rem,1.8vw,1.3rem) 0 0;
  background:var(--detalhe);
  border-radius:2px;
}

/* ---------- logos subindo ---------- */
.vroll__stage{
  position:relative;
  width:100%;
  height:clamp(310px,45vh,440px);
  /* as logos somem ao se afastar do centro */
  -webkit-mask-image:linear-gradient(180deg,
      transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image:linear-gradient(180deg,
      transparent 0, #000 12%, #000 88%, transparent 100%);
}

/* moldura fixa no centro */
.vroll__frame{
  position:absolute;
  z-index:1;
  left:50%;
  top:50%;
  width:clamp(270px,29vw,370px);
  height:clamp(108px,12vh,140px);
  border:1px dashed var(--detalhe);
  border-radius:18px;
  background:transparent;
  transform:translate(-50%,-50%);
  pointer-events:none;
  transition:background-color .5s ease, box-shadow .5s ease;
}
/* a logo acomodou no centro: o quadro ganha fundo */
.vroll__stage.is-settled .vroll__frame{
  background:#f7fafd;
  box-shadow:0 10px 30px rgba(4,22,59,.07);
}

/* 5 estrelinhas: surgem uma a uma quando a logo acomoda */
.vroll__stars{
  position:absolute;
  right:16px;
  bottom:-9px;
  display:flex;
  gap:2px;
  padding:0 6px;
  background:#f7fafd;             /* abre um vão no tracejado */
  opacity:0;
  transition:opacity .25s ease;
}
.vroll__stage.is-settled .vroll__stars{ opacity:1; }

.vroll__stars svg{
  width:12px;
  height:12px;
  fill:#ffc107;
  opacity:0;
  transform:scale(.3) translateY(5px);
  transition:opacity .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.vroll__stage.is-settled .vroll__stars svg{ opacity:1; transform:none; }
.vroll__stage.is-settled .vroll__stars svg:nth-child(1){ transition-delay:.06s; }
.vroll__stage.is-settled .vroll__stars svg:nth-child(2){ transition-delay:.19s; }
.vroll__stage.is-settled .vroll__stars svg:nth-child(3){ transition-delay:.32s; }
.vroll__stage.is-settled .vroll__stars svg:nth-child(4){ transition-delay:.45s; }
.vroll__stage.is-settled .vroll__stars svg:nth-child(5){ transition-delay:.58s; }

/* cada logo */
.vroll__item{
  position:absolute;
  left:50%;
  top:50%;
  opacity:0;
  transform:translate(-50%,-50%);
  will-change:transform,opacity;
  transition:transform .85s cubic-bezier(.32,.86,.36,1),
             opacity .85s ease;
}
.vroll__item img{
  display:block;
  width:clamp(205px,22vw,285px);   /* a do centro em destaque */
  height:auto;
}

/* ---------- lado direito: símbolo com a frase girando ---------- */
.clients__side{ display:flex; order:-1; justify-content:center; }

.brandmark{
  position:relative;
  width:clamp(220px,24vw,340px);
  aspect-ratio:1;
}
.brandmark__ring{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  animation:brand-spin 34s linear infinite;
}
.brandmark__ring text{
  fill:var(--detalhe);
  font-family:var(--ff);
  font-size:9px;
  font-weight:300;
  /* anula a largura natural do espaço: com o textLength distribuindo
     o resto por igual, todos os vãos ficam do mesmo tamanho          */
  word-spacing:-0.3em;
}
.brandmark:hover .brandmark__ring{ animation-play-state:paused; }

@keyframes brand-spin{
  from{ transform:rotate(0deg); }
  to  { transform:rotate(360deg); }
}

.brandmark__core{
  position:absolute;
  left:50%;
  top:50%;
  width:52%;
  transform:translate(-50%,-50%);
  filter:drop-shadow(0 18px 40px rgba(1,48,151,.20));
}

/* 0.5.0 — assinatura acima e logos em trilho horizontal. */
.clients{min-height:auto;padding-block:clamp(5rem,10vh,8rem);background:linear-gradient(180deg,#f4f7fc 0%,#e8eef8 100%)}
.clients__grid{grid-template-columns:minmax(0,1fr);min-width:0;gap:clamp(1.5rem,3vw,2.5rem)}
.clients__side{order:0}
.brandmark{width:clamp(170px,18vw,245px)}
.clients__panel{display:block;width:100%;min-width:0;overflow:hidden;padding:clamp(1.6rem,4vw,3rem);border-radius:24px;background:rgba(255,255,255,.88);backdrop-filter:blur(10px)}
.clients__head{display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;margin-bottom:clamp(1.5rem,3vw,2.5rem)}
.clients__controls{display:flex;gap:.65rem}
.clients__controls button{display:grid;width:46px;height:46px;place-items:center;border:1px solid rgba(1,48,151,.2);border-radius:50%;background:#fff;color:var(--azul);font:700 1.15rem/1 var(--ff);cursor:pointer;transition:background-color .2s ease,color .2s ease,transform .2s ease}
.clients__controls button:hover,.clients__controls button:focus-visible{background:var(--azul);color:#fff;transform:translateY(-2px)}
.clients-carousel{width:100%;max-width:100%;min-width:0;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scrollbar-width:thin;scrollbar-color:rgba(1,48,151,.35) transparent;scrollbar-gutter:stable;padding:6px 2px 16px}
.clients-carousel::-webkit-scrollbar{height:6px}
.clients-carousel::-webkit-scrollbar-track{background:transparent}
.clients-carousel::-webkit-scrollbar-thumb{border-radius:99px;background:rgba(1,48,151,.35)}
.clients-carousel__track{display:flex;gap:clamp(1rem,2vw,1.5rem);width:max-content}
.clients-carousel__item{display:grid;width:clamp(220px,26vw,310px);min-height:142px;flex:0 0 auto;place-items:center;padding:24px;border:1px solid rgba(1,48,151,.1);border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(4,22,59,.08);scroll-snap-align:start;transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}
.clients-carousel__item:hover,.clients-carousel__item:focus-within{transform:translateY(-4px);border-color:rgba(248,44,31,.55);box-shadow:0 18px 38px rgba(4,22,59,.13)}
.clients-carousel__item a{display:grid;width:100%;height:100%;place-items:center}
.clients-carousel__item img{display:block;width:min(100%,220px);max-height:78px;object-fit:contain}


/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width:980px){
  .clients{padding-inline:clamp(1rem,4vw,2rem)}
  .clients__panel{grid-template-columns:1fr;gap:1rem;padding:clamp(1.4rem,5vw,2.2rem)}
  .clients__head{text-align:center}
  .clients__rule{margin-inline:auto}
  .vroll__stage{height:clamp(300px,54vh,420px)}
  .why__track{ height:auto; }
  .why__sticky{
    position:relative;
    height:auto;
    min-height:0;
    overflow:visible;
    padding:clamp(6.5rem,16vw,8rem) clamp(1.1rem,5vw,2rem) clamp(3.5rem,10vw,5rem);
  }
  .why__grid{ grid-template-columns:1fr; gap:2.6rem; }
  .why__title,.why__rule,.check,.stat{ opacity:1; transform:none !important; }
  .why__cable{ transform:none !important; }
}

@media (max-width:1180px){
  .cards{ grid-template-columns:repeat(3,1fr); }
  .card__label{ font-size:.8rem; }
}

/* o menu ganhou o botão de cliente: aperta antes de sumir */
@media (max-width:1320px){
  .topbar{ padding-inline:clamp(1rem,3vw,2.6rem); gap:1.2rem; }
  .nav{ gap:clamp(.5rem,1.1vw,1.1rem); }
  .nav__link{ font-size:.8rem; }
  .nav__cta,.nav__client{ font-size:.8rem; padding:.45rem .95rem; }
}
@media (max-width:1120px){
  .nav__client span{ display:none; }      /* fica só o cadeado */
  .nav__client{ padding:.5rem .65rem; }
  .nav__client svg{ width:16px; height:16px; }
}

@media (max-width:860px){
  .topbar{ gap:.75rem; }
  .nav__toggle{ display:block; margin-left:auto; }
  .nav{
    position:absolute;
    top:calc(100% + .55rem);
    right:clamp(.8rem,3vw,1.5rem);
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width:min(286px,calc(100vw - 1.6rem));
    gap:.15rem;
    padding:.75rem;
    border:1px solid rgba(255,255,255,.16);
    border-radius:12px;
    background:rgba(4,22,59,.97);
    box-shadow:0 18px 42px rgba(4,22,59,.34);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .nav.is-open{
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    transition-delay:0s;
  }
  .nav__link,.nav__cta,.nav__client{
    display:block;
    width:100%;
    padding:.72rem .85rem;
    border-radius:7px;
    color:#fff;
    font-size:.88rem;
    text-shadow:none;
  }
  .nav__link::after{ display:none; }
  .nav__link:hover{ background:rgba(255,255,255,.09); color:#fff; }
  .nav__cta{ border-width:1px; text-align:center; }
  .nav__client{ text-align:center; }
  .topbar.is-light .nav__link,.topbar.is-light .nav__cta{ color:#fff; }
}

@media (max-width:760px){
  .hero__title{ font-size:clamp(1.4rem,6.2vw,1.9rem); }
  .hero__rule { height:8px; }
  .scroll-cue__mouse{ width:23px; height:38px; }

  .panel{ bottom:calc(6.5rem + env(safe-area-inset-bottom)); }
  .cards{ grid-template-columns:repeat(2,1fr); gap:.8rem; }
  .card{ --r:11px; min-height:50px; }
  .card__icon{ width:40px; }
  .card__label{ font-size:.74rem; padding:.45rem .9rem .45rem .6rem; }
  .card__go{ width:22px; height:22px; right:8px; bottom:-7px; border-width:2px; }
  .card__go svg{ width:11px; height:11px; }
  .svc__steps{ display:none; }
  .svc__track{ height:280vh; }

  .clients__head{ align-items:flex-start; text-align:left; }
  .clients__rule{ margin-inline:0; }
  .clients__title{ max-width:12ch; }
  .clients-carousel__item{ width:min(78vw,280px); }

  .stat{ --icon:64px; min-height:88px; padding:.9rem 1.1rem .9rem calc(64px * .8 + 1rem); }
  .stat__sep{ margin:.5rem 0 .4rem; }
  .check__box{ width:23px; height:23px; border-radius:5px; }
  .check__box svg{ width:13px; height:13px; }
}

@media (max-width:460px){
  .cards{ grid-template-columns:1fr; }
}

/* ============================================================
   Acessibilidade — sem animação
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .scroll-cue__wheel,
  .scroll-cue__arrows svg{ animation:none; opacity:1; }
  .hero__logo,.hero__title,.hero__rule,.hero__lead,.scroll-cue{ transition-duration:.01ms; }
  .why__track{ height:auto; }
  .why__sticky{ position:relative; height:auto; min-height:0; overflow:visible; }
  .why__title,.why__rule,.check,.stat{ opacity:1; transform:none !important; }
  .why__cable{ transform:none !important; }
}

/* 0.5.2 — modo de edição: preserva o site público e transforma as histórias
   de scroll em uma composição estática, navegável e fácil de selecionar. */
html.elementor-html{scroll-behavior:auto}
body.elementor-editor-active.bomparc-site,
body.bomparc-elementor-preview.bomparc-site{height:auto!important;overflow-x:clip!important;overflow-y:auto!important}
body.bomparc-template-preview #yasmalia-content{min-height:0!important}
body.bomparc-template-preview .topbar,
body.bomparc-template-preview .bomparc-page-overlay-header{position:relative!important;top:auto!important;right:auto!important;left:auto!important}
body.bomparc-template-preview .topbar{background:var(--azul-escuro)}
body.bomparc-template-preview .bomparc-page-overlay-header{min-height:112px;padding-bottom:28px}
body.elementor-editor-active.bomparc-site #curtain,
body.elementor-editor-active.bomparc-site #introLogo,
body.elementor-editor-active.bomparc-site #skipIntro{display:none!important}
body.elementor-editor-active.bomparc-site #heroMedia{opacity:1!important;transform:none!important}
body.elementor-editor-active.bomparc-site #heroScrim{opacity:1!important}
body.elementor-editor-active.bomparc-site #heroContent{opacity:1!important;visibility:visible!important}
body.elementor-editor-active.bomparc-site #heroContent .hero__logo,
body.elementor-editor-active.bomparc-site #heroContent .hero__title,
body.elementor-editor-active.bomparc-site #heroContent .hero__rule,
body.elementor-editor-active.bomparc-site #heroContent .hero__lead,
body.elementor-editor-active.bomparc-site #heroContent .scroll-cue{opacity:1!important;visibility:visible!important;transform:none!important}
body.elementor-editor-active.bomparc-site #topbar{opacity:1!important;visibility:visible!important;transform:none!important}

body.elementor-editor-active.bomparc-site .svc__track{height:auto!important}
body.elementor-editor-active.bomparc-site .svc__sticky{position:relative!important;top:auto!important;height:auto!important;min-height:0!important;overflow:visible!important}
body.elementor-editor-active.bomparc-site .svc__video{height:100%!important;min-height:100%;object-fit:cover}
body.elementor-editor-active.bomparc-site .svc__inner{position:relative!important;z-index:2;display:grid;gap:22px;padding:clamp(110px,12vw,150px) clamp(24px,4vw,52px) clamp(52px,7vw,82px)}
body.elementor-editor-active.bomparc-site .panel{position:relative!important;right:auto!important;bottom:auto!important;left:auto!important;visibility:visible!important;padding:24px;border:1px solid rgba(255,255,255,.2);border-radius:20px;background:rgba(4,22,59,.72);backdrop-filter:blur(8px)}
body.elementor-editor-active.bomparc-site .panel__title,
body.elementor-editor-active.bomparc-site .panel__line,
body.elementor-editor-active.bomparc-site .panel .card{opacity:1!important;visibility:visible!important;transform:none!important;transition:none!important}
body.elementor-editor-active.bomparc-site .svc__steps{display:none!important}

body.elementor-editor-active.bomparc-site .why__track{height:auto!important}
body.elementor-editor-active.bomparc-site .why__sticky{position:relative!important;top:auto!important;height:auto!important;min-height:0!important;overflow:visible!important;padding-block:clamp(76px,9vw,118px)}
body.elementor-editor-active.bomparc-site .why__cable{transform:none!important}
body.elementor-editor-active.bomparc-site .why__title,
body.elementor-editor-active.bomparc-site .why__rule,
body.elementor-editor-active.bomparc-site .check,
body.elementor-editor-active.bomparc-site .stat,
body.elementor-editor-active.bomparc-site .reveal > *{opacity:1!important;visibility:visible!important;transform:none!important}
body.elementor-editor-active.bomparc-site .clients__head{align-items:flex-start;flex-direction:column}
body.elementor-editor-active.bomparc-site [data-clients-toggle]:disabled{width:auto;min-width:116px;padding-inline:14px;border-radius:999px;cursor:default;opacity:.72}

@media (max-width:1180px){
  body.elementor-editor-active.bomparc-site .cards{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:760px){
  body.elementor-editor-active.bomparc-site .svc__inner{padding-inline:18px}
  body.elementor-editor-active.bomparc-site .cards{grid-template-columns:1fr}
}


/* ============================================================
   RODAPÉ
   ============================================================ */
.foot{
  position:relative;
  z-index:2;
  background:var(--azul);
  color:#fff;
  overflow:hidden;
}

/* símbolo na altura exata do rodapé, colado à esquerda */
.foot::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  background:url('../img/simbol_br_mark.png') left center / auto 100% no-repeat;
  opacity:.06;
  pointer-events:none;
}

.foot__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.15fr .85fr 1fr;
  gap:clamp(2rem,4.5vw,4.5rem);
  max-width:1280px;
  margin:0 auto;
  padding:clamp(3.2rem,7vh,5rem) clamp(1.2rem,3.2vw,3rem) clamp(2.6rem,5vh,3.5rem);
}

/* ---------- coluna 1: marca ---------- */
.foot__logo{
  width:clamp(150px,14vw,205px);
  margin-bottom:clamp(1.1rem,2.4vw,1.6rem);
}
.foot__about{
  margin:0;
  max-width:38ch;
  font-size:clamp(.88rem,1.05vw,.98rem);
  font-weight:300;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

/* ---------- títulos das colunas ---------- */
.foot__title{
  position:relative;
  margin:0 0 clamp(1.1rem,2.2vw,1.6rem);
  padding-bottom:.7rem;
  font-size:clamp(1.02rem,1.35vw,1.22rem);
  font-weight:900;
  letter-spacing:-.01em;
  color:#fff;
}
.foot__title::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:42px;
  height:3px;
  background:var(--detalhe);
  border-radius:2px;
}

/* ---------- coluna 2: lista ---------- */
.foot__list{ list-style:none; margin:0; padding:0; display:grid; gap:.72rem; }
.foot__list a{
  position:relative;
  display:inline-block;
  padding-left:1rem;
  color:rgba(255,255,255,.82);
  font-size:clamp(.86rem,1vw,.95rem);
  font-weight:400;
  text-decoration:none;
  transition:color .3s ease, transform .3s ease;
}
.foot__list a::before{
  content:'';
  position:absolute;
  left:0;
  top:.62em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--detalhe);
  transition:transform .3s ease;
}
.foot__list a:hover{ color:#fff; transform:translateX(3px); }
.foot__list a:hover::before{ transform:scale(1.5); }

/* ---------- coluna 3: contato ---------- */
.foot__addr{
  margin:0 0 clamp(1.4rem,2.8vw,2rem);
  font-style:normal;
  font-size:clamp(.86rem,1vw,.95rem);
  font-weight:300;
  line-height:1.85;
  color:rgba(255,255,255,.82);
}
.foot__addr a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:color .3s ease;
}
.foot__addr a:hover{ color:var(--detalhe); }

.foot__follow{
  display:block;
  margin-bottom:.9rem;
  font-size:clamp(.8rem,.95vw,.9rem);
  font-weight:700;
  letter-spacing:.04em;
  color:#fff;
  animation:none;
}
@keyframes foot-blink{
  0%,100%{ opacity:1;   }
  50%    { opacity:.25; }
}

.foot__social{ display:flex; gap:.6rem; }
.foot__soc{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1.5px solid rgba(255,255,255,.35);
  border-radius:50%;
  color:#fff;
  transition:background-color .3s ease, border-color .3s ease, transform .3s ease;
}
.foot__soc svg{ width:18px; height:18px; }
.foot__soc:hover{
  background:var(--detalhe);
  border-color:var(--detalhe);
  transform:translateY(-3px);
}

/* ---------- barra inferior ---------- */
.foot__bar{
  position:relative;
  z-index:1;
  border-top:2px solid var(--detalhe);
}
.foot__legal{
  max-width:1280px;
  margin:0 auto;
  padding:1.1rem clamp(1.2rem,3.2vw,3rem);
  text-align:center;
  font-size:clamp(.75rem,.9vw,.84rem);
  font-weight:300;
  color:rgba(255,255,255,.7);
}
.foot__sep{ margin:0 .5rem; color:rgba(255,255,255,.35); }
.foot__legal a{
  color:#fff;
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:rgba(248,44,31,.7);
  text-underline-offset:3px;
  text-decoration-thickness:1.5px;
  transition:color .3s ease, text-decoration-color .3s ease;
}
.foot__legal a:hover{
  color:var(--detalhe);
  text-decoration-color:var(--detalhe);
}
.foot__developer{position:relative;display:inline-flex;align-items:center;min-width:7.4rem;overflow:visible}
.foot__developer>span{position:relative;z-index:1}
.foot__whale{position:absolute;top:-18px;left:-74px;width:72px;height:28px;opacity:0;pointer-events:none;filter:drop-shadow(0 2px 4px rgba(4,22,59,.35))}
.foot.is-visible .foot__whale,.foot__developer:hover .foot__whale,.foot__developer:focus-visible .foot__whale{animation:foot-whale-swim 6.8s ease-in-out 1 both}
.foot.is-visible .foot__whale-body,.foot__developer:hover .foot__whale-body,.foot__developer:focus-visible .foot__whale-body{transform-origin:350px 180px;animation:foot-whale-wave 1.7s ease-in-out 4}
.foot.is-visible .foot__whale-tail,.foot__developer:hover .foot__whale-tail,.foot__developer:focus-visible .foot__whale-tail{transform-origin:700px 150px;animation:foot-whale-tail 1.1s ease-in-out 6}
.foot.is-visible .foot__whale-fin,.foot__developer:hover .foot__whale-fin,.foot__developer:focus-visible .foot__whale-fin{transform-origin:500px 210px;animation:foot-whale-fin 1.7s ease-in-out 4}
@keyframes foot-whale-swim{0%,8%{opacity:0;left:-74px;transform:translateY(0) scaleX(-.92) rotate(-3deg)}14%{opacity:1}32%{left:12%;transform:translateY(-6px) scaleX(-1) rotate(-7deg)}52%{left:48%;transform:translateY(3px) scaleX(-1) rotate(5deg)}74%{left:84%;transform:translateY(-4px) scaleX(-1) rotate(-5deg)}88%,100%{opacity:0;left:105%;transform:translateY(0) scaleX(-.92) rotate(-2deg)}}
@keyframes foot-whale-wave{50%{transform:translateY(-6px) rotate(1deg)}}
@keyframes foot-whale-tail{50%{transform:rotate(18deg)}}
@keyframes foot-whale-fin{50%{transform:rotate(-14deg)}}

@media (max-width:900px){
  .foot__grid{ grid-template-columns:1fr 1fr; }
  .foot__brand{ grid-column:1 / -1; }
}
@media (max-width:560px){
  .foot__grid{ grid-template-columns:1fr; }
  .foot__legal{ line-height:1.9; }
}

@media (prefers-reduced-motion:reduce){
  .foot__follow{ animation:none; }
  .foot__whale,.foot__whale-body,.foot__whale-tail,.foot__whale-fin{animation:none!important;opacity:0!important}
}


/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa{
  position:fixed;
  z-index:55;
  right:clamp(1rem,2.2vw,1.75rem);
  bottom:clamp(1rem,2.2vw,1.75rem);
  display:grid;
  place-items:center;
  width:clamp(52px,4.4vw,60px);
  aspect-ratio:1;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  box-shadow:0 10px 26px rgba(37,211,102,.42), 0 3px 10px rgba(4,22,59,.22);
  /* entra depois da abertura */
  opacity:0;
  transform:scale(.4) translateY(14px);
  pointer-events:none;
  transition:opacity .5s ease, transform .55s cubic-bezier(.34,1.4,.64,1),
             background-color .3s ease;
}
body:not(.is-intro) .wa{
  opacity:1;
  transform:none;
  pointer-events:auto;
  /* a tremida só começa depois de entrar */
  animation:wa-shake 6s ease-in-out 1.4s infinite;
}
.wa svg{ width:56%; height:56%; position:relative; z-index:1; }
.wa:hover{ background:#1ebe5b; }

/* halo pulsando por trás */
.wa__pulse{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:#25d366;
  opacity:.55;
  animation:wa-pulse 2.6s ease-out infinite;
}

@keyframes wa-shake{
  0%,86%,100%{ transform:rotate(0deg) scale(1); }
  87%{ transform:rotate(-11deg) scale(1.06); }
  89%{ transform:rotate(10deg)  scale(1.06); }
  91%{ transform:rotate(-8deg)  scale(1.04); }
  93%{ transform:rotate(7deg)   scale(1.04); }
  95%{ transform:rotate(-4deg)  scale(1.02); }
  97%{ transform:rotate(3deg)   scale(1.01); }
}
@keyframes wa-pulse{
  0%  { transform:scale(1);    opacity:.5; }
  70% { transform:scale(1.75); opacity:0;  }
  100%{ transform:scale(1.75); opacity:0;  }
}

@media (prefers-reduced-motion:reduce){
  body:not(.is-intro) .wa{ animation:none; }
  .wa__pulse{ animation:none; opacity:0; }
}

/* 0.5.1 — segunda rodada visual: diferenciais, clientes e rodapé. */
.why__col{
  padding:clamp(1.7rem,3vw,2.7rem);
  border:1px solid rgba(1,48,151,.1);
  border-left:5px solid var(--detalhe);
  border-radius:0 24px 24px 0;
  background:rgba(255,255,255,.9);
  box-shadow:0 24px 60px rgba(4,22,59,.09);
  backdrop-filter:blur(10px);
}
.checks{gap:0}
.check{padding:.88rem 0;border-bottom:1px solid rgba(1,48,151,.1)}
.check:first-child{padding-top:0}
.check:last-child{padding-bottom:0;border-bottom:0}
.stat:nth-child(2){transform:translateX(clamp(0px,2vw,24px))}
.stat:nth-child(3){transform:translateX(clamp(0px,1vw,12px))}
.stat:hover,.stat:focus-within{transform:translateY(-4px) translateX(var(--stat-shift,0))}

.clients__side{
  width:100%;
  min-height:clamp(220px,28vw,310px);
  align-items:center;
  justify-content:center;
  place-self:center;
}
.brandmark{margin-inline:auto}
.clients__controls{align-items:center;flex-wrap:wrap;justify-content:flex-end}
.clients__controls .clients__toggle{
  width:auto;
  min-width:76px;
  padding:0 16px;
  border-radius:99px;
  font-size:.72rem;
  letter-spacing:.03em;
}
.clients__dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:32px;
  margin-top:16px;
}
.clients__dots button{
  position:relative;
  width:32px;
  height:32px;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  transition:width .25s ease;
}
.clients__dots button::before{content:"";position:absolute;top:50%;left:50%;width:10px;height:10px;border-radius:99px;background:rgba(1,48,151,.22);transform:translate(-50%,-50%);transition:width .25s ease,background-color .25s ease,transform .25s ease}
.clients__dots button:hover::before,.clients__dots button:focus-visible::before{background:rgba(1,48,151,.6);transform:translate(-50%,-50%) scale(1.12)}
.clients__dots button[aria-current="true"]{width:42px}
.clients__dots button[aria-current="true"]::before{width:34px;background:var(--detalhe)}

.foot__list a{display:flex;align-items:center;gap:.65rem;padding-left:0}
.foot__list a::before{display:none}
.foot__list-mark{width:18px;height:18px;flex:0 0 auto;object-fit:contain;opacity:.72;transition:opacity .25s ease,transform .25s ease}
.foot__list a:hover .foot__list-mark,.foot__list a:focus-visible .foot__list-mark{opacity:1;transform:translateX(2px)}

@media (max-width:640px){
  .why__col{padding:1.35rem;border-radius:0 18px 18px 0}
  .stat:nth-child(2),.stat:nth-child(3){transform:none}
  .clients__side{min-height:190px}
  .clients__head{align-items:flex-start;flex-direction:column}
  .clients__controls{width:100%;justify-content:flex-start}
  .clients__controls .clients__toggle{margin-right:auto}
}

@media (prefers-reduced-motion:reduce){
  .clients__dots button,.foot__list-mark{transition:none}
  .stat:nth-child(2),.stat:nth-child(3){transform:none}
}

/* ============================================================
   0.6.0 — navegação de serviços e prova operacional
   ============================================================ */
.bomparc-services-menu{position:relative;display:flex;align-items:center}
.bomparc-services-menu__trigger{display:inline-flex;align-items:center;gap:.42rem;padding:0;border:0;background:transparent;color:inherit;font:inherit;cursor:pointer}
.bomparc-services-menu__trigger svg{width:10px;height:7px;transition:transform .22s ease}
.bomparc-services-menu.is-open .bomparc-services-menu__trigger svg{transform:rotate(180deg)}
.topbar .bomparc-services-menu__trigger{position:relative;color:#fff;font-family:var(--ff);font-size:.88rem;font-weight:700;text-shadow:0 1px 14px rgba(0,0,0,.35)}
.topbar.is-light .bomparc-services-menu__trigger{color:var(--azul);text-shadow:none}
.bomparc-services-menu__panel{position:absolute;z-index:120;top:calc(100% + 18px);left:50%;width:min(760px,calc(100vw - 48px));padding:22px;border:1px solid rgba(1,48,151,.12);border-radius:20px;background:rgba(255,255,255,.98);box-shadow:0 24px 70px rgba(4,22,59,.24);opacity:0;visibility:hidden;transform:translate(-50%,10px);transition:opacity .2s ease,visibility .2s ease,transform .2s ease}
.bomparc-services-menu__panel::before{position:absolute;right:0;bottom:0;width:180px;height:180px;background:url('../img/simbol_mark.png') right bottom/contain no-repeat;content:"";opacity:.045;pointer-events:none}
.bomparc-services-menu__panel>p{margin:0 0 14px;color:var(--detalhe);font-size:.68rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase}
.bomparc-services-menu__panel>div{position:relative;z-index:1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:3px 22px}
.bomparc-services-menu__panel a{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:42px;padding:8px 10px;border-bottom:1px solid rgba(1,48,151,.08);color:var(--azul-escuro)!important;font-size:.79rem;font-weight:700;line-height:1.25;text-decoration:none!important;text-shadow:none!important;transition:color .18s ease,background-color .18s ease,padding-left .18s ease}
.bomparc-services-menu__panel a span{color:var(--detalhe)}
.bomparc-services-menu__panel a:hover,.bomparc-services-menu__panel a:focus-visible{padding-left:14px;background:#f3f6fc;color:var(--detalhe)!important}
.bomparc-services-menu.is-open .bomparc-services-menu__panel,.bomparc-services-menu:hover .bomparc-services-menu__panel{opacity:1;visibility:visible;transform:translate(-50%,0)}

.bomparc-proof{position:relative;z-index:2;padding:clamp(5.5rem,10vw,9rem) clamp(1.1rem,3.2vw,3rem);overflow:hidden;background:radial-gradient(circle at 12% 8%,rgba(1,48,151,.72),transparent 35%),radial-gradient(circle at 92% 95%,rgba(248,44,31,.13),transparent 28%),#04163b;color:#fff;isolation:isolate}
.bomparc-proof::before{position:absolute;z-index:-1;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:44px 44px;content:"";mask-image:linear-gradient(180deg,#000,transparent)}
.bomparc-proof__shell{width:min(1280px,100%);margin:0 auto}
.bomparc-proof__head{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.65fr);align-items:end;gap:clamp(2rem,7vw,7rem);padding-bottom:clamp(2.5rem,5vw,4.5rem);border-bottom:1px solid rgba(255,255,255,.14)}
.bomparc-proof__eyebrow{margin:0 0 14px;color:#ff5a50;font-size:.72rem;font-weight:900;letter-spacing:.17em;text-transform:uppercase}
.bomparc-proof__head h2{max-width:820px;margin:0;color:#fff;font-size:clamp(2.6rem,5.6vw,5.8rem);font-weight:900;letter-spacing:-.07em;line-height:.92}
.bomparc-proof__intro{margin:0;padding-left:22px;border-left:4px solid var(--detalhe);color:rgba(255,255,255,.76);font-size:clamp(1rem,1.3vw,1.18rem);line-height:1.65}
.bomparc-proof__composition{display:grid;grid-template-columns:minmax(280px,.68fr) minmax(0,1.32fr);align-items:center;gap:clamp(2.5rem,7vw,7rem);padding:clamp(3.5rem,6vw,6rem) 0}
.bomparc-proof__core{position:relative;display:grid;width:min(100%,390px);aspect-ratio:1;margin:auto;place-items:center;border:1px solid rgba(255,255,255,.17);border-radius:50%;background:radial-gradient(circle,rgba(1,48,151,.82) 0 42%,rgba(1,48,151,.2) 43% 58%,transparent 59%);box-shadow:0 0 0 24px rgba(255,255,255,.025),0 28px 80px rgba(0,0,0,.32);text-align:center}
.bomparc-proof__core::before,.bomparc-proof__core::after{position:absolute;border-radius:50%;content:"";pointer-events:none}
.bomparc-proof__core::before{inset:8%;border:1px dashed rgba(255,255,255,.24);animation:bomparc-proof-spin 36s linear infinite}
.bomparc-proof__core::after{inset:-1px;border-top:3px solid var(--detalhe);border-right:3px solid transparent;transform:rotate(28deg)}
.bomparc-proof__core svg{position:absolute;width:72%;height:72%;color:rgba(255,255,255,.11)}
.bomparc-proof__core svg circle,.bomparc-proof__core svg path{fill:none;stroke:currentColor;stroke-width:2}
.bomparc-proof__core svg path{stroke-width:5}
.bomparc-proof__core svg .bomparc-proof__loadcell{fill:var(--detalhe);stroke:none}
.bomparc-proof__core strong{position:relative;z-index:1;color:#fff;font-size:clamp(3rem,6vw,5.4rem);font-weight:900;letter-spacing:-.07em;line-height:.85}
.bomparc-proof__core>span{position:absolute;z-index:1;bottom:25%;width:54%;color:rgba(255,255,255,.72);font-size:.74rem;font-weight:800;line-height:1.35;text-transform:uppercase}
@keyframes bomparc-proof-spin{to{transform:rotate(360deg)}}
.bomparc-proof__features{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:0;padding:0;list-style:none;counter-reset:proof}
.bomparc-proof__features li{position:relative;display:grid;grid-template-columns:auto 1fr;gap:15px;min-height:138px;padding:22px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.045);box-shadow:0 18px 42px rgba(0,0,0,.12);transition:border-color .22s ease,background-color .22s ease,transform .22s ease}
.bomparc-proof__features li:last-child:nth-child(odd){grid-column:1/-1;min-height:118px}
.bomparc-proof__features li:hover{border-color:rgba(248,44,31,.62);background:rgba(255,255,255,.075);transform:translateY(-4px)}
.bomparc-proof__feature-index{display:grid;width:38px;height:38px;place-items:center;border:1px solid rgba(255,255,255,.23);border-radius:50%;color:#ff5a50;font-size:.66rem;font-weight:900;letter-spacing:.05em}
.bomparc-proof__features h3{margin:2px 0 8px;color:#fff;font-size:clamp(1rem,1.35vw,1.22rem);font-weight:900;line-height:1.15}
.bomparc-proof__features p{margin:0;color:rgba(255,255,255,.66);font-size:.88rem;line-height:1.55}
.bomparc-proof__stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px solid rgba(255,255,255,.14);border-bottom:1px solid rgba(255,255,255,.14)}
.bomparc-proof__stat{display:flex;align-items:center;gap:18px;min-width:0;padding:clamp(1.4rem,3vw,2.2rem);border-right:1px solid rgba(255,255,255,.14)}
.bomparc-proof__stat:last-child{border-right:0}
.bomparc-proof__stat-icon{display:grid;width:46px;height:46px;flex:0 0 auto;place-items:center;border-radius:12px;background:var(--detalhe);color:#fff;box-shadow:0 12px 28px rgba(248,44,31,.2)}
.bomparc-proof__stat-icon svg{width:23px;height:23px}
.bomparc-proof__stat strong{display:flex;align-items:baseline;gap:.12em;color:#fff;font-size:clamp(1.8rem,3vw,3rem);font-weight:900;letter-spacing:-.045em;line-height:1}
.bomparc-proof__stat strong>span:first-child{font-size:.58em;color:#ff5a50}
.bomparc-proof__stat p{margin:7px 0 0;color:rgba(255,255,255,.65);font-size:.78rem;line-height:1.3}

.clients__hint{max-width:360px;margin:0;color:#5b6c89;font-size:.86rem;line-height:1.5;text-align:right}
.clients__controls{display:none!important}

@media (prefers-reduced-motion:no-preference){
  body:not(.elementor-editor-active) .bomparc-proof:not(.is-visible) .bomparc-proof__head>*{opacity:0;transform:translateY(24px)}
  body:not(.elementor-editor-active) .bomparc-proof:not(.is-visible) .bomparc-proof__core{opacity:0;transform:scale(.82) rotate(-8deg)}
  body:not(.elementor-editor-active) .bomparc-proof:not(.is-visible) .bomparc-proof__features li{opacity:0;transform:translateY(22px)}
  body:not(.elementor-editor-active) .bomparc-proof:not(.is-visible) .bomparc-proof__stat{opacity:0;transform:translateY(18px)}
  .bomparc-proof__head>*,.bomparc-proof__core,.bomparc-proof__features li,.bomparc-proof__stat{transition:opacity .72s ease,transform .72s cubic-bezier(.16,.84,.34,1)}
  .bomparc-proof__features li:nth-child(2){transition-delay:.06s}.bomparc-proof__features li:nth-child(3){transition-delay:.12s}.bomparc-proof__features li:nth-child(4){transition-delay:.18s}.bomparc-proof__features li:nth-child(5){transition-delay:.24s}
  .bomparc-proof__stat:nth-child(2){transition-delay:.08s}.bomparc-proof__stat:nth-child(3){transition-delay:.16s}
}

@media (max-width:980px){
  .bomparc-proof__head,.bomparc-proof__composition{grid-template-columns:1fr}
  .bomparc-proof__intro{max-width:720px}
  .bomparc-proof__core{width:min(64vw,350px)}
  .bomparc-proof__features{grid-template-columns:repeat(2,minmax(0,1fr))}
  .clients__hint{text-align:left}
}

@media (max-width:860px){
  .bomparc-services-menu{display:block;width:100%}
  .topbar .bomparc-services-menu__trigger{width:100%;justify-content:space-between;padding:.75rem .9rem;font-size:1.05rem;text-align:left}
  .bomparc-services-menu__panel{position:relative;top:auto;left:auto;display:none;width:100%;max-height:52vh;margin:4px 0 8px;padding:13px;border-radius:13px;box-shadow:none;opacity:1;visibility:visible;overflow:auto;scrollbar-width:thin;scrollbar-color:rgba(1,48,151,.35) transparent;transform:none!important}
  .bomparc-services-menu__panel>div{grid-template-columns:1fr}
  .bomparc-services-menu__panel a{min-height:40px;font-size:.84rem}
  .bomparc-services-menu.is-open .bomparc-services-menu__panel{display:block}
}

@media (max-width:640px){
  .bomparc-proof{padding-inline:16px}
  .bomparc-proof__head h2{font-size:clamp(2.55rem,13vw,4rem)}
  .bomparc-proof__features{grid-template-columns:1fr}
  .bomparc-proof__features li:last-child:nth-child(odd){grid-column:auto}
  .bomparc-proof__stats{grid-template-columns:1fr}
  .bomparc-proof__stat{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}
  .bomparc-proof__stat:last-child{border-bottom:0}
  .clients__head{gap:.8rem}
}

@media (prefers-reduced-motion:reduce){
  .bomparc-proof__core::before{animation:none}
}

/* ============================================================
   0.7.0 — três direções editáveis para a prova operacional
   ============================================================ */
.bomparc-proof--load-path{background:#fff;color:var(--azul-escuro)}
.bomparc-proof--load-path::before{background:url('../img/simbol_mark.png') 92% 44%/min(48vw,620px) no-repeat;opacity:.045;mask-image:none}
.bomparc-proof--load-path .bomparc-proof__head{border-color:rgba(1,48,151,.14)}
.bomparc-proof--load-path .bomparc-proof__eyebrow{color:var(--detalhe)}
.bomparc-proof--load-path .bomparc-proof__head h2{color:var(--azul)}
.bomparc-proof--load-path .bomparc-proof__intro{border-color:var(--detalhe);color:#435b80}
.bomparc-proof--load-path .bomparc-proof__composition{grid-template-columns:minmax(250px,.62fr) minmax(0,1.38fr)}
.bomparc-proof--load-path .bomparc-proof__core{width:min(100%,340px);height:470px;aspect-ratio:auto;border:0;border-radius:0;background:transparent;box-shadow:none}
.bomparc-proof--load-path .bomparc-proof__core::before{inset:0 auto 0 50%;width:5px;border:0;border-radius:99px;background:repeating-linear-gradient(135deg,#173a71 0 3px,#d3dceb 3px 6px);animation:none;transform:translateX(-50%)}
.bomparc-proof--load-path .bomparc-proof__core::after{inset:auto 14% 38px;height:4px;border:0;border-radius:99px;background:linear-gradient(90deg,transparent,var(--detalhe) 18% 82%,transparent);transform:none}
.bomparc-proof--load-path .bomparc-proof__core svg{top:58px;width:170px;height:220px;color:var(--azul)}
.bomparc-proof--load-path .bomparc-proof__core svg>circle:first-child{display:none}
.bomparc-proof--load-path .bomparc-proof__core svg path{stroke-width:7}
.bomparc-proof--load-path .bomparc-proof__core strong{position:absolute;bottom:88px;color:var(--azul);font-size:clamp(3.6rem,6vw,5.8rem)}
.bomparc-proof--load-path .bomparc-proof__core>span{bottom:51px;width:76%;color:#52698e}
.bomparc-proof--load-path .bomparc-proof__features{grid-template-columns:1fr;gap:0;border-top:1px solid rgba(1,48,151,.16)}
.bomparc-proof--load-path .bomparc-proof__features li,.bomparc-proof--load-path .bomparc-proof__features li:last-child:nth-child(odd){grid-column:auto;min-height:0;padding:22px 4px;border:0;border-bottom:1px solid rgba(1,48,151,.16);border-radius:0;background:transparent;box-shadow:none}
.bomparc-proof--load-path .bomparc-proof__features li:hover{padding-left:12px;border-color:rgba(1,48,151,.22);background:linear-gradient(90deg,rgba(248,44,31,.06),transparent);transform:none}
.bomparc-proof--load-path .bomparc-proof__feature-index{border-color:rgba(248,44,31,.38);border-radius:10px;background:#fff;color:var(--detalhe);box-shadow:0 8px 20px rgba(4,22,59,.08)}
.bomparc-proof--load-path .bomparc-proof__features h3{color:var(--azul)}
.bomparc-proof--load-path .bomparc-proof__features p{color:#52698e}
.bomparc-proof--load-path .bomparc-proof__stats{overflow:hidden;border:0;border-radius:22px;background:var(--azul);box-shadow:0 24px 64px rgba(1,48,151,.2)}
.bomparc-proof--load-path .bomparc-proof__stat{border-color:rgba(255,255,255,.16)}

.bomparc-proof--blueprint{background:radial-gradient(circle at 82% 12%,rgba(1,48,151,.88),transparent 36%),#031433}
.bomparc-proof--blueprint .bomparc-proof__composition{grid-template-columns:minmax(250px,.55fr) minmax(0,1.45fr)}
.bomparc-proof--blueprint .bomparc-proof__core{width:min(100%,330px);border-color:rgba(255,255,255,.28);background:radial-gradient(circle,rgba(1,48,151,.7) 0 42%,transparent 43%);box-shadow:0 0 0 1px rgba(255,255,255,.06),0 0 70px rgba(1,48,151,.38)}
.bomparc-proof--blueprint .bomparc-proof__features{grid-template-columns:1fr 1fr;gap:0 32px}
.bomparc-proof--blueprint .bomparc-proof__features li,.bomparc-proof--blueprint .bomparc-proof__features li:last-child:nth-child(odd){grid-column:auto;min-height:132px;padding:26px 0;border:0;border-bottom:1px solid rgba(255,255,255,.16);border-radius:0;background:transparent;box-shadow:none}
.bomparc-proof--blueprint .bomparc-proof__features li:last-child:nth-child(odd){grid-column:1/-1}
.bomparc-proof--blueprint .bomparc-proof__features li:hover{background:transparent;transform:translateX(7px)}
.bomparc-proof--blueprint .bomparc-proof__feature-index{border-radius:4px;background:rgba(248,44,31,.12)}

.bomparc-proof--editorial{background:#fff;color:var(--azul-escuro)}
.bomparc-proof--editorial::before{background:linear-gradient(90deg,rgba(248,44,31,.055) 0 28%,transparent 28%),url('../img/simbol_mark.png') 93% 20%/520px no-repeat;opacity:1;mask-image:none}
.bomparc-proof--editorial .bomparc-proof__head{grid-template-columns:minmax(0,1.45fr) minmax(260px,.55fr);border-color:rgba(1,48,151,.16)}
.bomparc-proof--editorial .bomparc-proof__head h2{color:var(--azul)}
.bomparc-proof--editorial .bomparc-proof__intro{color:#4e6488}
.bomparc-proof--editorial .bomparc-proof__composition{grid-template-columns:minmax(230px,.45fr) minmax(0,1.55fr)}
.bomparc-proof--editorial .bomparc-proof__core{width:100%;height:360px;aspect-ratio:auto;border:0;border-radius:0;background:transparent;box-shadow:none;place-items:start}
.bomparc-proof--editorial .bomparc-proof__core::before,.bomparc-proof--editorial .bomparc-proof__core::after{display:none}
.bomparc-proof--editorial .bomparc-proof__core svg{right:0;bottom:0;width:210px;height:260px;color:rgba(1,48,151,.12)}
.bomparc-proof--editorial .bomparc-proof__core strong{color:var(--azul);font-size:clamp(4.6rem,9vw,8.5rem)}
.bomparc-proof--editorial .bomparc-proof__core>span{position:relative;bottom:auto;width:70%;margin-top:22px;color:#52698e;text-align:left}
.bomparc-proof--editorial .bomparc-proof__features{grid-template-columns:repeat(2,minmax(0,1fr));gap:0 34px}
.bomparc-proof--editorial .bomparc-proof__features li,.bomparc-proof--editorial .bomparc-proof__features li:last-child:nth-child(odd){grid-column:auto;min-height:142px;padding:26px 0;border:0;border-top:4px solid var(--detalhe);border-radius:0;background:transparent;box-shadow:none}
.bomparc-proof--editorial .bomparc-proof__features li:last-child:nth-child(odd){grid-column:1/-1}
.bomparc-proof--editorial .bomparc-proof__features li:hover{background:transparent;transform:translateY(-4px)}
.bomparc-proof--editorial .bomparc-proof__feature-index{border:0;border-radius:0;background:transparent;color:var(--detalhe);font-size:.76rem}
.bomparc-proof--editorial .bomparc-proof__features h3{color:var(--azul)}
.bomparc-proof--editorial .bomparc-proof__features p{color:#52698e}
.bomparc-proof--editorial .bomparc-proof__stats{border-color:rgba(1,48,151,.16)}
.bomparc-proof--editorial .bomparc-proof__stat{border-color:rgba(1,48,151,.16)}
.bomparc-proof--editorial .bomparc-proof__stat strong{color:var(--azul)}
.bomparc-proof--editorial .bomparc-proof__stat p{color:#52698e}

@media (max-width:980px){
  .bomparc-proof--load-path .bomparc-proof__composition,.bomparc-proof--blueprint .bomparc-proof__composition,.bomparc-proof--editorial .bomparc-proof__composition{grid-template-columns:1fr}
  .bomparc-proof--load-path .bomparc-proof__core{height:390px}
  .bomparc-proof--editorial .bomparc-proof__core{height:auto;min-height:220px}
}
@media (max-width:640px){
  .bomparc-proof--blueprint .bomparc-proof__features,.bomparc-proof--editorial .bomparc-proof__features{grid-template-columns:1fr}
  .bomparc-proof--load-path .bomparc-proof__core{height:330px}.bomparc-proof--load-path .bomparc-proof__core svg{top:30px;width:130px;height:170px}.bomparc-proof--load-path .bomparc-proof__core strong{bottom:76px}.bomparc-proof--load-path .bomparc-proof__core>span{bottom:38px}
  .bomparc-proof--editorial .bomparc-proof__head{grid-template-columns:1fr}
}

/* ============================================================
   0.7.5 — percurso horizontal da carga, sem captura de scroll
   ============================================================ */
.bomparc-proof--load-path .bomparc-proof__head{grid-template-columns:minmax(0,1fr);max-width:960px;padding-bottom:clamp(2rem,4vw,3.2rem)}
.bomparc-proof--load-path .bomparc-proof__head h2{max-width:12ch}
.bomparc-proof__journey{position:relative;min-width:0}
.bomparc-proof__viewport{width:100%;padding:18px 4px 28px;overflow-x:auto;overflow-y:hidden;scrollbar-gutter:stable;scrollbar-width:thin;scrollbar-color:rgba(1,48,151,.32) transparent;scroll-snap-type:x mandatory;overscroll-behavior-inline:contain}
.bomparc-proof__viewport::-webkit-scrollbar{height:7px}.bomparc-proof__viewport::-webkit-scrollbar-track{background:transparent}.bomparc-proof__viewport::-webkit-scrollbar-thumb{border-radius:99px;background:rgba(1,48,151,.3)}
.bomparc-proof__track{display:flex;width:max-content;gap:18px;padding:0 2px}
.bomparc-proof__journey-card{position:relative;display:flex;width:clamp(285px,29vw,372px);min-height:286px;flex:0 0 auto;flex-direction:column;padding:30px;border:1px solid rgba(1,48,151,.14);border-radius:24px 24px 64px 24px;background:rgba(255,255,255,.92);box-shadow:0 20px 48px rgba(4,22,59,.1);scroll-snap-align:start;scroll-snap-stop:always;transition:border-color .25s ease,box-shadow .25s ease,transform .25s ease}
.bomparc-proof__journey-card::before{position:absolute;top:0;right:30px;left:30px;height:5px;border-radius:0 0 99px 99px;background:var(--detalhe);content:""}
.bomparc-proof__journey-card:hover{border-color:rgba(248,44,31,.38);box-shadow:0 26px 58px rgba(4,22,59,.16);transform:translateY(-5px)}
.bomparc-proof__journey-index{display:grid;width:46px;height:46px;margin-bottom:auto;place-items:center;border:1px solid rgba(248,44,31,.38);border-radius:14px;background:#fff;color:var(--detalhe);font-size:.72rem;font-weight:900;box-shadow:0 10px 22px rgba(4,22,59,.08)}
.bomparc-proof__journey-kicker{margin:34px 0 10px;color:var(--detalhe)!important;font-size:.68rem!important;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.bomparc-proof__journey-card h3{margin:0 0 13px;color:var(--azul);font-size:clamp(1.45rem,2.2vw,2.05rem);font-weight:900;letter-spacing:-.04em;line-height:1.02}
.bomparc-proof__journey-card>p:last-child{margin:0;color:#52698e;font-size:.96rem;line-height:1.55}
.bomparc-proof__journey-card--stat{justify-content:flex-end;background:linear-gradient(145deg,#063baf,#01277a);color:#fff}
.bomparc-proof__journey-card--stat::before{background:rgba(255,255,255,.34)}
.bomparc-proof__journey-card--stat .bomparc-proof__stat-icon{position:absolute;top:30px;left:30px}
.bomparc-proof__journey-card--stat .bomparc-proof__journey-kicker{margin-top:auto;color:#ff8b83!important}
.bomparc-proof__journey-card--stat strong{display:flex;align-items:baseline;gap:.12em;color:#fff;font-size:clamp(2.8rem,4vw,4.4rem);font-weight:900;letter-spacing:-.06em;line-height:.92}
.bomparc-proof__journey-card--stat strong>span:first-child{color:#ff6a61;font-size:.55em}
.bomparc-proof__journey-card--stat>p:last-child{color:rgba(255,255,255,.74)}
.bomparc-proof__journey-card--arrival{justify-content:flex-end;border-color:rgba(248,44,31,.35);background:linear-gradient(145deg,#f82c1f,#c91c13);color:#fff}
.bomparc-proof__journey-card--arrival::before{background:#fff}
.bomparc-proof__journey-card--arrival .bomparc-proof__journey-kicker,.bomparc-proof__journey-card--arrival h3,.bomparc-proof__journey-card--arrival>p:last-child{color:#fff!important}
.bomparc-proof__journey-card--arrival h3{max-width:10ch;font-size:clamp(2rem,3vw,3rem)}
.bomparc-proof__route{position:relative;height:220px;margin:18px 4px 0;--proof-carrier-x:0px}
.bomparc-proof__route-line{position:absolute;top:25px;right:0;left:0;height:5px;border-radius:99px;background:repeating-linear-gradient(135deg,#173a71 0 3px,#d3dceb 3px 6px)}
.bomparc-proof__route-line::after{position:absolute;top:50%;right:0;width:18px;height:18px;border:5px solid var(--detalhe);border-radius:50%;background:#fff;content:"";transform:translate(2px,-50%);box-shadow:0 0 0 8px rgba(248,44,31,.12)}
.bomparc-proof__carrier{position:absolute;z-index:2;top:0;left:0;display:block;width:124px;height:188px;color:var(--azul);transform:translate3d(var(--proof-carrier-x),0,0);transition:transform .8s cubic-bezier(.22,.72,.2,1);will-change:transform}
.bomparc-proof__carrier::before{position:absolute;top:20px;left:50%;width:4px;height:28px;border-radius:99px;background:var(--detalhe);content:"";transform:translateX(-50%)}
.bomparc-proof__carrier-load{position:absolute;top:101px;left:50%;display:block;width:88px;height:88px;padding:5px;overflow:hidden;border:3px solid #fff;border-radius:50%;background:#fff;box-shadow:0 18px 34px rgba(4,22,59,.25);transform:translateX(-50%)}
.bomparc-proof__carrier-load img{width:100%;height:100%;border-radius:50%;object-fit:cover;object-position:50% 68%}
.bomparc-proof__route-end{position:absolute;right:0;bottom:0;max-width:250px;color:var(--azul);font-size:.67rem;font-weight:900;letter-spacing:.13em;text-align:right;text-transform:uppercase}
.clients__head{grid-template-columns:1fr}

@media (max-width:720px){
  .bomparc-proof__journey-card{width:min(82vw,330px);min-height:268px;padding:25px}
  .bomparc-proof__route{height:190px}
  .bomparc-proof__carrier{width:102px;height:164px}
  .bomparc-proof__carrier-load{top:90px;width:72px;height:72px}
  .bomparc-proof__route-end{max-width:190px;font-size:.61rem}
}
@media (prefers-reduced-motion:reduce){
  .bomparc-proof__carrier,.bomparc-proof__journey-card{transition:none}
}

/* ============================================================
   0.7.6 — percurso compacto, carga vetorial e Clientes integrados
   ============================================================ */
.bomparc-test-load{display:block;width:100%;height:100%;overflow:visible;filter:drop-shadow(0 14px 18px rgba(4,22,59,.24))}
.bomparc-test-load__shackle{fill:#0a3a9f}
.bomparc-test-load__sling{fill:none;stroke:#173a71;stroke-width:6;stroke-linecap:round;stroke-linejoin:round}
.bomparc-test-load__bag{fill:#f4512d;stroke:#b81d17;stroke-width:3}
.bomparc-test-load__panel{fill:none;stroke:rgba(255,255,255,.62);stroke-width:2.2;stroke-linecap:round}
.bomparc-test-load__base{fill:#b81d17}
.bomparc-test-load__plate{fill:#04163b;stroke:#fff;stroke-width:2}
.bomparc-test-load__plate-mark{fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round}

.bomparc-proof--load-path{padding-block:clamp(4.6rem,7vw,6.8rem)}
.bomparc-proof--load-path .bomparc-proof__head{max-width:none;padding-bottom:clamp(1.4rem,2.6vw,2rem);border-bottom:0}
.bomparc-proof--load-path .bomparc-proof__eyebrow{display:none}
.bomparc-proof--load-path .bomparc-proof__head h2{max-width:none;font-size:clamp(2.3rem,4.15vw,4.25rem);line-height:.98}
.bomparc-proof__metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin-bottom:18px;border-block:1px solid rgba(1,48,151,.16)}
.bomparc-proof__metric{display:grid;grid-template-columns:40px auto 1fr;align-items:center;gap:12px;min-width:0;padding:14px clamp(14px,2vw,24px);border-right:1px solid rgba(1,48,151,.14)}
.bomparc-proof__metric:last-child{border-right:0}
.bomparc-proof__metric-icon{display:grid;width:38px;height:38px;place-items:center;border-radius:10px;background:var(--detalhe);color:#fff;box-shadow:0 10px 22px rgba(248,44,31,.18)}
.bomparc-proof__metric-icon svg{width:19px;height:19px}
.bomparc-proof__metric strong{display:flex;align-items:baseline;gap:2px;color:var(--azul);font-size:clamp(1.65rem,2.5vw,2.55rem);font-weight:900;letter-spacing:-.055em;line-height:1}
.bomparc-proof__metric strong>span:first-child{color:var(--detalhe);font-size:.56em}
.bomparc-proof__metric>span:last-child{color:#52698e;font-size:.74rem;line-height:1.25}
.bomparc-proof__viewport{padding:10px 4px 20px}
.bomparc-proof__track{gap:14px}
.bomparc-proof__journey-card{width:clamp(248px,23vw,304px);min-height:218px;padding:24px;border-radius:20px 20px 48px 20px}
.bomparc-proof__journey-card::before{right:24px;left:24px;height:4px}
.bomparc-proof__journey-index{width:39px;height:39px;margin-bottom:24px;border-radius:11px}
.bomparc-proof__journey-kicker{margin:0 0 8px;font-size:.61rem!important}
.bomparc-proof__journey-card h3{margin-bottom:10px;font-size:clamp(1.25rem,1.65vw,1.65rem)}
.bomparc-proof__journey-card>p:last-child{font-size:.87rem;line-height:1.45}
.bomparc-proof__journey-card--stat,.bomparc-proof__journey-card--arrival{display:none}
.bomparc-proof__route{height:148px;margin-top:10px}
.bomparc-proof__route-line{top:20px;height:4px}
.bomparc-proof__route-line::after{display:none}
.bomparc-proof__carrier{width:88px;height:132px}
.bomparc-proof__carrier::before{top:16px;height:20px}
.bomparc-proof__carrier-load{position:absolute;top:69px;left:50%;display:block;width:58px;height:71px;transform:translateX(-50%)}
.bomparc-proof__carrier-load-svg{width:100%;height:100%}
.bomparc-proof__route-end{right:0;bottom:0;display:grid;max-width:260px;padding:10px 14px 11px;border-radius:12px 0 0 12px;background:var(--detalhe);color:#fff;text-align:left;box-shadow:0 13px 28px rgba(248,44,31,.2)}
.bomparc-proof__route-end small{margin-bottom:3px;color:rgba(255,255,255,.72);font-size:.52rem;letter-spacing:.14em}
.bomparc-proof__route-end strong{font-size:.74rem;line-height:1.25;letter-spacing:.08em}

.clients{background:radial-gradient(circle at 50% 42%,rgba(255,255,255,.88),transparent 46%),linear-gradient(180deg,#eef3fb,#e3ebf7)}
.clients__grid{position:relative;isolation:isolate}
.clients__side{position:absolute;z-index:0;inset:50% auto auto 50%;display:grid;width:min(76vw,780px);place-items:center;opacity:.15;pointer-events:none;transform:translate(-50%,-50%)}
.clients__side .brandmark{width:min(58vw,520px);max-width:none;flex:0 0 auto}
.clients__panel{position:relative;z-index:1;padding:clamp(1rem,2vw,1.8rem) 0;border:0;border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none}
.clients-carousel__item{border-color:rgba(1,48,151,.12);background:rgba(255,255,255,.72);box-shadow:0 12px 30px rgba(4,22,59,.07);backdrop-filter:blur(8px)}

@media (min-width:921px){
  .bomparc-proof--load-path .bomparc-proof__head h2{white-space:nowrap}
}
@media (max-width:720px){
  .bomparc-proof--load-path{padding-block:4.2rem}
  .bomparc-proof--load-path .bomparc-proof__head h2{font-size:clamp(2.15rem,11vw,3.35rem)}
  .bomparc-proof__metrics{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:thin}
  .bomparc-proof__metric{min-width:172px;flex:0 0 auto;scroll-snap-align:start}
  .bomparc-proof__journey-card{width:min(76vw,290px);min-height:214px}
  .bomparc-proof__route{height:140px}
  .bomparc-proof__route-end{max-width:168px;padding-inline:10px}
  .bomparc-proof__route-end strong{font-size:.62rem}
  .clients__side{width:min(116vw,560px);opacity:.12}
}

/* ============================================================
   0.7.7 — contraste do Header, rota limpa e assinatura em destaque
   ============================================================ */
.topbar{
  border-bottom:1px solid transparent;
  transition:opacity .6s ease,transform .7s cubic-bezier(.16,.84,.34,1),background-color .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.topbar.has-surface{
  border-bottom-color:rgba(255,255,255,.13);
  background:rgba(4,22,59,.92);
  box-shadow:0 16px 36px rgba(4,22,59,.2);
  -webkit-backdrop-filter:blur(16px) saturate(1.15);
  backdrop-filter:blur(16px) saturate(1.15);
}
.topbar.has-surface .topbar__logo--br{opacity:1}
.topbar.has-surface .topbar__logo--cor{opacity:0}
.topbar.has-surface .nav__link,.topbar.has-surface .nav__cta{color:#fff;text-shadow:none}
.topbar.has-surface .nav__link:hover{color:#fff}
.topbar.has-surface .nav__toggle{border-color:rgba(255,255,255,.48);background:rgba(255,255,255,.08)}
.topbar.has-surface .nav__toggle span{background:#fff}
.topbar.has-surface .lang{border-color:rgba(255,255,255,.34);background:rgba(255,255,255,.08)}
.topbar.has-surface .lang__btn{color:#fff}
.topbar.has-surface .lang__btn.is-active{background:#fff;color:var(--azul)}

.bomparc-proof__route{height:154px;padding-bottom:58px}
.bomparc-proof__carrier{width:86px;height:102px}
.bomparc-proof__carrier::before{top:16px;height:18px}
.bomparc-proof__carrier-load{
  top:29px;
  width:72px;
  height:88px;
  padding:0;
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.bomparc-proof__carrier-load-svg{transform:rotate(var(--proof-carrier-rotation,0deg));transform-origin:50% 0;transition:transform .8s cubic-bezier(.22,.72,.2,1);will-change:transform}
.bomparc-proof__carrier:hover .bomparc-proof__carrier-load-svg{animation:bomparc-proof-load-swing 1.45s ease-in-out infinite alternate}
@keyframes bomparc-proof-load-swing{from{transform:rotate(-5deg)}to{transform:rotate(5deg)}}
.bomparc-proof__route-end{display:none}

/* Trilho contínuo: o primeiro card ocupa o início, o último atinge o fim. */
.bomparc-proof__track{width:max(100%,calc(100% + 2px));justify-content:space-between;gap:clamp(18px,2vw,34px);padding:0 2px}
.bomparc-proof__journey-card{width:clamp(330px,31vw,450px);min-height:196px;justify-content:center;padding:28px 30px}
.bomparc-proof__journey-index,.bomparc-proof__journey-kicker{display:none}
.bomparc-proof__journey-card h3{margin-bottom:10px}

.clients{padding-top:clamp(3.8rem,7vh,5.6rem)}
.clients__grid{gap:0}
.clients__side{
  position:relative;
  z-index:2;
  inset:auto;
  width:100%;
  min-height:0;
  margin:0 auto clamp(.6rem,1.5vw,1.2rem);
  opacity:1;
  transform:none;
}
.clients__side .brandmark{width:clamp(150px,17vw,220px);max-width:220px}
.clients__panel{padding-top:0}

@media (max-width:720px){
  .bomparc-proof__route{height:150px;padding-bottom:62px}
  .bomparc-proof__carrier{width:72px;height:94px}
  .bomparc-proof__carrier-load{top:27px;width:62px;height:76px}
  .bomparc-proof__track{gap:16px;justify-content:flex-start}
  .bomparc-proof__journey-card{width:min(84vw,330px);min-height:190px;padding:25px}
  .clients__side{width:100%;opacity:1}
  .clients__side .brandmark{width:138px}
}
@media (prefers-reduced-motion:reduce){.bomparc-proof__carrier-load-svg{transition:none}.bomparc-proof__carrier:hover .bomparc-proof__carrier-load-svg{animation:none}}

/* ============================================================
   0.8.6 — escala progressiva para laptop grande, 2K e 4K
   ============================================================ */
@media (min-width:1600px){
  .topbar{
    width:100%;
    margin-inline:0;
    padding-inline:max(2rem,calc((100vw - 1560px) / 2 + 2rem));
  }
  .topbar__logo img{width:228px}
  .nav{gap:clamp(.75rem,1.35vw,1.6rem)}
  .nav__link,.nav__cta,.nav__client{font-size:.94rem}
  .hero__logo{width:340px}
  .hero__title{max-width:24ch;font-size:3rem}
  .hero__lead{max-width:66ch;font-size:1.2rem}
  .panel{left:clamp(2rem,4vw,5rem);right:clamp(2rem,4vw,5rem)}
  .panel__title{font-size:1.4rem}
  .card{min-height:64px}
  .card__icon{width:52px}
  .card__label{font-size:.92rem}
  .why__grid,.bomparc-proof__shell,.clients__grid,.foot__grid,.foot__legal{max-width:1560px}
  .foot__logo{width:225px}
  .foot__about,.foot__list a,.foot__addr{font-size:1rem}
}

@media (min-width:2560px){
  .topbar{
    width:100%;
    padding-block:1.75rem;
    padding-inline:max(7rem,calc((100vw - 3200px) / 2 + 7rem));
  }
  .topbar__logo img{width:320px}
  .nav{gap:clamp(1.25rem,1.25vw,2.4rem)}
  .nav__link,.nav__cta,.nav__client{font-size:1.15rem}
  .nav__cta,.nav__client{min-height:54px;padding-inline:1.6rem}
  #topbar .bomparc-page-language--home .bomparc-page-language__option{min-width:42px;height:36px;font-size:.82rem}
  .hero__content{padding:clamp(3rem,5vw,7rem)}
  .hero__logo{width:460px;margin-bottom:2.8rem}
  .hero__title{max-width:26ch;font-size:4.5rem;line-height:1.06}
  .hero__rule{width:170px;height:14px;margin-block:2.4rem}
  .hero__lead{max-width:70ch;font-size:1.65rem;line-height:1.58}
  .scroll-cue{bottom:3.5rem;transform:translateX(-50%) translateY(26px) scale(1.2)}
  .hero__content.is-in .scroll-cue{transform:translateX(-50%) scale(1.2)}

  .panel{left:clamp(5rem,7vw,12rem);right:clamp(5rem,7vw,12rem);bottom:clamp(5rem,9vh,9rem)}
  .panel__title{margin-bottom:1.2rem;font-size:1.75rem}
  .cards{gap:clamp(1.25rem,1.2vw,2rem)}
  .card{min-height:84px;border-radius:18px}
  .card__icon{width:66px;border-radius:16px}
  .card__label{padding:1rem 2rem 1rem 1.15rem;font-size:1.12rem}
  .card__go{right:13px;bottom:-11px;width:32px;height:32px}

  .why__sticky{padding-inline:clamp(5rem,7vw,12rem)}
  .why__grid,.bomparc-proof__shell,.clients__grid,.foot__grid,.foot__legal{
    width:min(82vw,2800px);
    max-width:none;
  }
  .bomparc-proof--load-path{padding-block:clamp(6rem,7vw,9rem)}
  .bomparc-proof--load-path .bomparc-proof__head h2{font-size:clamp(5rem,2.5vw,6rem)}
  .bomparc-proof__metric{grid-template-columns:54px auto 1fr;padding:22px 30px}
  .bomparc-proof__metric-icon{width:52px;height:52px}
  .bomparc-proof__metric-icon svg{width:26px;height:26px}
  .bomparc-proof__metric strong{font-size:3.2rem}
  .bomparc-proof__metric>span:last-child{font-size:1rem}
  .bomparc-proof__track{gap:clamp(1.5rem,1vw,2.25rem)}
  .bomparc-proof__journey-card{width:clamp(420px,15vw,500px);min-height:260px;padding:36px 40px}
  .bomparc-proof__journey-card h3{font-size:2rem}
  .bomparc-proof__journey-card>p:last-child{font-size:1.1rem}
  .bomparc-proof__route{height:190px}
  .bomparc-proof__carrier{width:112px;height:132px}
  .bomparc-proof__carrier-load{top:38px;width:92px;height:112px}

  .clients{padding-block:clamp(8rem,10vh,12rem)}
  .clients__side .brandmark{width:320px;max-width:320px}
  .clients__title{font-size:3.6rem}
  .clients__panel{padding:4rem;border-radius:32px}
  .clients-carousel__track{gap:2rem}
  .clients-carousel__item{width:420px;min-height:196px;padding:34px}
  .clients-carousel__item img{width:min(100%,310px);max-height:112px}

  .foot__grid{gap:clamp(5rem,6vw,10rem);padding-block:7rem 5rem}
  .foot__logo{width:300px}
  .foot__about,.foot__list a,.foot__addr{font-size:1.22rem}
  .foot__title{font-size:1.65rem}
  .foot__follow{font-size:1.1rem}
  .foot__soc{width:48px;height:48px}
  .foot__soc svg{width:22px;height:22px}
  .foot__legal{padding-block:1.6rem;font-size:1rem}
}

/* ============================================================
   0.7.11 — percurso mais compacto e mídia opcional por card
   ============================================================ */
.bomparc-proof--load-path{padding-top:clamp(2.5rem,4.5vw,3.8rem);padding-bottom:clamp(4rem,6vw,5.6rem)}
.bomparc-proof__journey-card-media{height:96px;margin:-28px -30px 22px;overflow:hidden;border-radius:18px 18px 0 0;background:#dbe6f7}
.bomparc-proof__journey-card-media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.bomparc-proof__journey-card:hover .bomparc-proof__journey-card-media img{transform:scale(1.045)}
@media (max-width:720px){
  .bomparc-proof--load-path{padding-top:2.3rem;padding-bottom:3.6rem}
  .bomparc-proof__journey-card-media{height:84px;margin:-25px -25px 20px}
}

/* 0.7.12 — leitura refinada no Sobre. */
.bomparc-about-principles__grid h3,.bomparc-about-principles__grid p{padding-left:clamp(22px,2.4vw,38px)}

/* 0.7.13 — cards com mídia precisam de área editorial suficiente para a foto. */
.bomparc-proof__journey-card:has(.bomparc-proof__journey-card-media){min-height:292px}
.bomparc-proof__journey-card-media{height:144px;margin:-28px -30px 22px}
@media (max-width:720px){
  .bomparc-proof__journey-card:has(.bomparc-proof__journey-card-media){min-height:264px}
  .bomparc-proof__journey-card-media{height:122px;margin:-25px -25px 20px}
}
/* Keep Services readable over the dark scrolled header. */
.topbar.has-surface .bomparc-services-menu__trigger{color:#fff;text-shadow:none}
