/* ==========================================================================
   OpenBox Growth — sistema visual azul e branco
   Implementa a seção 4 do planejamento aprovado (26/08/2026). A paleta é
   fechada: nada fora desta lista. Proporção alvo na página: ~60% branco e
   gelo, 20% navy, 15% royal, 5% acentos.
   ========================================================================== */

:root {
  /* Marca */
  --ino-blue: #0090CD;        /* assinatura e detalhes da marca-mãe */
  /* Ação */
  --royal: #1E5BFF;           /* CTA, palavra-chave, badges, gráficos */
  --royal-hover: #1747CC;
  /* Estrutura */
  --navy: #0A1F44;            /* títulos, seções escuras */
  --midnight: #0C1B33;        /* rodapé sólido */
  --signal: #4E8BFF;          /* realce sobre fundo escuro */
  /* Fundos */
  --ice: #F5F7FD;
  --mist: #DFE7FA;
  --card: #FFFFFF;
  --white: #FFFFFF;
  /* Texto */
  --text: #151C2C;
  --text-soft: #3A4560;
  --text-on-dark: #DDE6FA;
  --hairline: #C6D3EA;
  /* Acentos de papel restrito */
  --coral: #E8564B;           /* só para representar o problema */
  --whats: #25D366;           /* só quando o canal WhatsApp é citado */

  /* Fora da paleta: apenas medidas */
  --fonte: "Inter", "Poppins", "Segoe UI", system-ui, sans-serif;
  --largura: 1200px;
  --respiro: 24px;
  --r-card: 18px;
  --sombra-card: 0 18px 40px rgba(20, 40, 110, .08);
  --e: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--text);
  font-family: var(--fonte); font-size: 18px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
a { color: var(--royal); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2.25rem, 4.6vw, 4.25rem); line-height: 1.04; letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.75rem); line-height: 1.1; letter-spacing: -.025em; }
h3 { font-size: 1.375rem; line-height: 1.24; letter-spacing: -.015em; font-weight: 700; }
@media (max-width: 720px) {
  h3 { font-size: 1.25rem; }
  body { font-size: 17px; }
}

/* foco visível: anel de 3px royal com 2px de deslocamento */
:focus-visible { outline: 3px solid var(--royal); outline-offset: 2px; border-radius: 6px; }

.pular {
  position: absolute; left: -9999px; z-index: 100;
  background: var(--royal); color: #fff; padding: .75rem 1rem; border-radius: 8px;
}
.pular:focus { left: 16px; top: 16px; }

/* ---------- utilidades ---------- */
.wrap { width: 100%; max-width: var(--largura); margin-inline: auto; padding-inline: var(--respiro); }
.secao { padding-block: clamp(64px, 9vw, 128px); }
.secao--gelo { background: var(--ice); }
.secao--escura {
  background: linear-gradient(160deg, var(--navy), var(--midnight));
  color: var(--text-on-dark);
}
.secao--escura h2, .secao--escura h3 { color: var(--white); }
.secao--escura .apoio { color: var(--text-on-dark); }
.secao--acao { background: linear-gradient(120deg, var(--royal), #123A8F); color: var(--white); }
.secao--acao h2 { color: var(--white); }

/* olho / rótulo */
.olho {
  display: block; font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--royal);
}
.secao--escura .olho, .secao--acao .olho { color: var(--signal); }
.secao--acao .olho { color: rgba(255,255,255,.82); }

/* filete de seção: barra de 48x5 entre olho e título (herdado dos criativos) */
.filete { display: block; width: 48px; height: 5px; border-radius: 3px; background: var(--royal); margin: 14px 0 18px; }
.secao--escura .filete { background: var(--signal); }
.secao--acao .filete { background: rgba(255,255,255,.9); }

.cab { max-width: 780px; }
.cab--centro { margin-inline: auto; text-align: center; }
.cab--centro .filete { margin-inline: auto; }

.apoio { margin-top: 18px; color: var(--text-soft); font-size: 1.125rem; max-width: 68ch; }
.secao--acao .apoio { color: rgba(255,255,255,.9); }
.nota { font-size: .9375rem; color: var(--text-soft); }

.destaque { color: var(--royal); }
.secao--escura .destaque { color: var(--signal); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: 0 1.6rem; border: 0; border-radius: 999px;
  font-size: 1.0625rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s, transform .2s var(--e), box-shadow .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--p { background: var(--royal); color: var(--white); }
.btn--p:hover { background: var(--royal-hover); }
.btn--s { background: transparent; color: var(--royal); box-shadow: inset 0 0 0 1.5px var(--royal); }
.btn--s:hover { background: rgba(30, 91, 255, .06); }
.secao--escura .btn--s, .secao--acao .btn--s {
  color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6);
}
.secao--escura .btn--s:hover, .secao--acao .btn--s:hover { background: rgba(255,255,255,.1); }
.secao--acao .btn--p { background: var(--white); color: var(--royal); }
.secao--acao .btn--p:hover { background: var(--ice); }
.btn--zap { background: var(--whats); color: #04120a; }
.btn--zap:hover { background: #1fbe5c; }
.botoes { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 28px; }

/* ---------- cabeçalho ---------- */
.topo {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.topo__in { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }

/* lockup: logo Inovacomm · filete · OpenBox Growth a 72% da altura óptica */
.lockup { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.lockup:hover { text-decoration: none; }
.lockup__ino { height: 30px; width: auto; }
.lockup__filete { width: 2px; height: 30px; background: var(--hairline); flex: none; }
/* o nome fica a ~72% da altura óptica do Inovacomm (seção 4) */

.menu { display: flex; align-items: center; gap: 1.15rem; margin-left: auto; }
.menu a { white-space: nowrap; }
/* o CTA de dentro do nav só existe no menu mobile */
.menu .btn { display: none; }
.menu a { color: var(--text-soft); font-size: .8125rem; font-weight: 500; }
.menu a:hover, .menu a[aria-current="page"] { color: var(--navy); text-decoration: none; }
.menu a[aria-current="page"] { font-weight: 600; }
.topo .btn { min-height: 48px; font-size: 1rem; font-weight: 600; padding: 0 1.5rem;
  flex: none; box-shadow: 0 8px 20px rgba(30, 91, 255, .28); }
.topo .btn:hover { box-shadow: 0 10px 26px rgba(30, 91, 255, .38); }

.burger {
  display: none; width: 46px; height: 46px; margin-left: auto;
  background: transparent; border: 1px solid var(--hairline); border-radius: 12px;
  cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.burger i { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
body.menu-on .burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-on .burger i:nth-child(2) { opacity: 0; }
body.menu-on .burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1120px) {
  .menu { gap: .8rem; }
  .menu a { font-size: .75rem; }
  .topo .btn { font-size: .9375rem; padding: 0 1.15rem; }
}
@media (max-width: 900px) {
  .burger { display: flex; }
  .menu {
    position: fixed; inset: 74px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; margin: 0; padding: 1rem var(--respiro) 1.5rem;
    background: var(--white); border-bottom: 1px solid var(--hairline);
    box-shadow: var(--sombra-card); display: none;
  }
  body.menu-on .menu { display: flex; }
  .menu a { padding: .85rem 0; border-bottom: 1px solid var(--hairline); font-size: 1.0625rem; }
  .menu .btn { display: inline-flex; margin-top: 1rem; }
  .topo__in > .btn { display: none; }
}

/* ---------- selo ---------- */
.selo {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: var(--text-soft);
}
.selo img { height: 18px; width: auto; }
.secao--escura .selo, .secao--acao .selo, .rodape .selo { color: rgba(255,255,255,.72); }
/* a logo Inovacomm é escura: sobre fundo escuro precisa ser clareada */
.secao--escura .selo img, .secao--acao .selo img, .rodape .selo img {
  filter: brightness(0) invert(1); opacity: .8;
}

/* ---------- malha de pontos ---------- */
.pontilhado { position: relative; overflow: hidden; }
.pontilhado::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--royal) 1.7px, transparent 1.7px);
  background-size: 26px 26px; opacity: .15;
  -webkit-mask-image: radial-gradient(120% 90% at 100% 0%, #000 15%, transparent 62%);
  mask-image: radial-gradient(120% 90% at 100% 0%, #000 15%, transparent 62%);
}
.secao--escura.pontilhado::before {
  background-image: radial-gradient(var(--signal) 1.7px, transparent 1.7px); opacity: .18;
}
.pontilhado > * { position: relative; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px); background: var(--ice); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__grid > * { min-width: 0; }
.hero h1 { margin-top: 14px; }
.hero .apoio { font-size: 1.1875rem; }
.hero__selo { margin-top: 28px; }
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* ---------- cards ---------- */
.grade { display: grid; gap: 24px; }
.grade--2 { grid-template-columns: repeat(2, 1fr); }
.grade--3 { grid-template-columns: repeat(3, 1fr); }
.grade--4 { grid-template-columns: repeat(4, 1fr); }
.grade--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .grade--5, .grade--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grade--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .grade--2, .grade--3, .grade--4, .grade--5 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card);
  box-shadow: var(--sombra-card); padding: 26px;
}
.card h3 { margin-top: 14px; }
.card p { margin-top: 10px; color: var(--text-soft); font-size: 1rem; }
.secao--escura .card {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); box-shadow: none;
}
.secao--escura .card p { color: var(--text-on-dark); }

/* badge numerada */
.badge {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  border-radius: 10px; background: var(--royal); color: var(--white);
  font-weight: 700; font-size: 1rem; flex: none;
}
.secao--escura .badge { background: var(--signal); color: var(--navy); }

/* ---------- listas ---------- */
.checks { display: grid; gap: 12px; margin-top: 20px; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text-soft); }
.checks li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: rgba(30,91,255,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.secao--escura .checks li { color: var(--text-on-dark); }
.secao--escura .checks li::before {
  background-color: rgba(78,139,255,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E8BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}



/* lista do problema: X em coral. Precisa vencer a variante de seção escura,
   por isso repete o seletor com o contexto. */
.checks.problema li::before,
.secao--escura .checks.problema li::before {
  background-color: rgba(232,86,75,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8564B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* ---------- rodapé ---------- */
.rodape { background: var(--midnight); color: var(--text-on-dark); padding-block: 56px 32px; }
.rodape a { color: var(--text-on-dark); }
.rodape a:hover { color: var(--white); }
.rodape__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 900px) { .rodape__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rodape__grid { grid-template-columns: 1fr; } }
.rodape h4 { color: var(--white); font-size: .8125rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.rodape ul { margin-top: 14px; display: grid; gap: 10px; font-size: .9375rem; }
.rodape__lockup .lockup__filete { background: rgba(255,255,255,.3); }
.rodape__lockup .lockup__ino { filter: brightness(0) invert(1); }
.rodape__base {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .875rem; color: rgba(221,230,250,.72);
}

/* ---------- moldura das telas do produto ---------- */
.mock {
  margin: 0; background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--r-card); box-shadow: var(--sombra-card); overflow: hidden;
}
.mock__barra {
  display: flex; align-items: center; gap: .6rem; padding: 12px 16px;
  background: var(--ice); border-bottom: 1px solid var(--hairline);
}
.mock__ponto { width: 9px; height: 9px; border-radius: 50%; background: var(--royal); flex: none; }
.mock__tit { font-size: .8125rem; font-weight: 600; color: var(--navy); }
.mock__tag {
  margin-left: auto; font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-soft); background: var(--mist);
  border-radius: 999px; padding: 3px 9px; white-space: nowrap;
}
.mock__corpo { padding: 16px; display: grid; gap: 14px; }
.mock figcaption { padding: 0 16px 16px; font-size: .875rem; color: var(--text-soft); }
.secao--escura .mock { background: var(--white); }
.secao--escura .mock figcaption { color: var(--text-soft); }

.kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.kpi { background: var(--ice); border: 1px solid var(--hairline); border-radius: 12px; padding: 11px 13px; }
.kpi span {
  display: block; font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-soft);
}
.kpi b { display: block; margin-top: 3px; font-size: 1.25rem; color: var(--navy); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

.funil { display: grid; gap: 8px; }
.funil > span { display: grid; grid-template-columns: 116px 1fr auto; align-items: center; gap: 10px; }
.funil em { font-style: normal; font-size: .8125rem; color: var(--text-soft); }
.funil i { height: 9px; border-radius: 6px; width: var(--w); background: var(--royal); opacity: .85; }
.funil b { font-size: .8125rem; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 520px) { .funil > span { grid-template-columns: 88px 1fr auto; } }

/* ---------- telas do produto: componentes internos ---------- */
.mock__cab { display: flex; align-items: center; gap: .6rem; font-size: .9375rem; }
.mock__cab b { color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
.mock__pe { font-size: .8125rem; color: var(--text-soft); }
.mock__pe b { color: var(--navy); }

.kpis--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 520px) { .kpis, .kpis--3 { grid-template-columns: repeat(2, 1fr); } }

.quadro {
  border: 1px solid var(--hairline); border-radius: 12px; padding: 14px;
  background: var(--ice); display: grid; gap: 12px;
}
.quadro__t {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--text-soft);
}
.quadro__d { margin: 0; font-size: .875rem; color: var(--text-soft); }
.leg { display: inline-flex; align-items: center; gap: .35rem; margin-left: auto; font-style: normal; text-transform: none; letter-spacing: 0; }
.leg b { width: 10px; height: 2px; border-radius: 2px; }
.leg .l1 { background: var(--royal); }
.leg .l2 { background: var(--ino-blue); }

.grafico { height: 132px; }
.grafico svg { width: 100%; height: 100%; }
.grafico .gridline { stroke: var(--hairline); stroke-width: 1; }
.grafico .area1 { fill: var(--royal); opacity: .12; }
.grafico .area2 { fill: var(--ino-blue); opacity: .10; }
.grafico .linha1 { fill: none; stroke: var(--royal); stroke-width: 2; stroke-linecap: round; }
.grafico .linha2 { fill: none; stroke: var(--ino-blue); stroke-width: 2; stroke-linecap: round; }
.grafico .ponto1 { fill: var(--royal); }
.grafico .ponto2 { fill: var(--ino-blue); }

/* pílula de estado */
.pilula {
  font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
  background: var(--mist); color: var(--text-soft);
}
.pilula--on { display: inline-flex; align-items: center; gap: 5px; background: rgba(30,91,255,.1); color: var(--royal); }
.pilula--on i { width: 6px; height: 6px; border-radius: 50%; background: var(--royal); }
.pilula--off { background: transparent; box-shadow: inset 0 0 0 1px var(--hairline); }
.pilula--crit { background: rgba(232,86,75,.12); color: #B23A31; }
.pilula--aten { background: #FFF3DC; color: #8A5B10; }

/* conversa com a IA */
.conversa { display: grid; gap: 8px; }
.msg { max-width: 86%; padding: 10px 13px; border-radius: 14px; font-size: .9375rem; margin: 0; }
.msg--lead { justify-self: start; background: var(--ice); border: 1px solid var(--hairline); border-bottom-left-radius: 4px; }
.msg--ia { justify-self: end; background: rgba(30,91,255,.08); border: 1px solid rgba(30,91,255,.2); border-bottom-right-radius: 4px; }

.sugestao { border: 1.5px dashed var(--royal); border-radius: 14px; padding: 14px; background: rgba(30,91,255,.04); }
.sugestao__olho { display: block; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--royal); }
.sugestao p { margin-top: 8px; font-size: .9375rem; }
.sugestao__acoes { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 14px; }
.sugestao__acoes .btn { min-height: 38px; font-size: .875rem; padding: 0 .9rem; pointer-events: none; }
.sugestao__alt { font-size: .8125rem; color: var(--text-soft); text-decoration: underline; }

/* kanban */
.kan { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kan__col { display: grid; gap: 8px; align-content: start; }
.kan__t {
  display: flex; justify-content: space-between; gap: .4rem;
  font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft);
}
.kan__t b { color: var(--royal); }
.kan__card {
  display: grid; gap: 2px; padding: 9px 10px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--hairline); border-left: 3px solid var(--hairline);
}
.kan__card strong { font-size: .875rem; color: var(--navy); }
.kan__card em { font-style: normal; font-size: .6875rem; color: var(--text-soft); }
.kan__card span { font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--royal); }
.kan__card--novo { border-left-color: var(--royal); }
.kan__card--ia { border-left-color: var(--ino-blue); background: rgba(0,144,205,.05); }
.kan__card--win { border-left-color: var(--royal); background: rgba(30,91,255,.05); }
@media (max-width: 720px) { .kan { grid-template-columns: repeat(2, 1fr); } }

/* criativos */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px) { .duo { grid-template-columns: 1fr; } }
.cria { display: grid; gap: 8px; }
/* nome em cima, selo e CPL embaixo: em duas colunas o nome truncava */
.cria li {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
  gap: 4px 10px; padding: 9px 11px; border-radius: 10px; background: var(--white);
  border: 1px solid var(--hairline); font-size: .875rem;
}
.cria li span { grid-column: 1 / -1; order: -1; color: var(--navy); font-weight: 600; }
.cria b { font-size: .5625rem; font-weight: 700; letter-spacing: .09em; padding: 3px 7px; border-radius: 999px; white-space: nowrap; }
.cria i { font-style: normal; font-size: .75rem; color: var(--text-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.cria li.bom { border-color: rgba(30,91,255,.35); }
.cria li.bom b { color: var(--royal); background: rgba(30,91,255,.1); }
.cria li.ruim b { color: #B23A31; background: rgba(232,86,75,.12); }

/* alertas */
.feed { display: grid; gap: 8px; }
.feed__i {
  display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 11px;
  padding: 11px 12px; border-radius: 10px; background: var(--white);
  border: 1px solid var(--hairline); border-left-width: 3px;
}
.feed__ico { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--ice); font-size: .75rem; font-weight: 700; }
.feed__t { display: block; font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }
.feed__i p { margin-top: 3px; font-size: .875rem; }
.feed__i--aten { border-left-color: #E0A33E; }
.feed__i--aten .feed__ico { color: #8A5B10; background: #FFF3DC; }
.feed__i--ok { border-left-color: var(--royal); }
.feed__i--ok .feed__ico { color: var(--royal); background: rgba(30,91,255,.1); }

.regras { display: grid; gap: 6px; }
.regras li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--hairline); }
.regras li:last-child { border-bottom: 0; }
.regras strong { font-size: .875rem; color: var(--navy); }
.regras em { display: block; font-style: normal; font-size: .75rem; color: var(--text-soft); }

/* listas de relatórios e integrações */
.lista { display: grid; gap: 8px; }
.lista li {
  display: grid; grid-template-columns: 62px minmax(0, 1fr) auto; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; background: var(--white); border: 1px solid var(--hairline);
}
.lista__k { font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }
.lista strong { font-size: .875rem; color: var(--navy); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 560px) {
  .lista li { grid-template-columns: minmax(0, 1fr) auto; }
  .lista__k { grid-column: 1 / -1; }
}

/* ---------- esteira e timeline ---------- */
.esteira { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.esteira li {
  position: relative; background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--r-card); box-shadow: var(--sombra-card); padding: 22px; display: grid; gap: 10px;
}
.esteira li strong { color: var(--navy); font-size: 1.0625rem; }
.esteira li span:last-child { font-size: .9375rem; color: var(--text-soft); }
.esteira li:not(:last-child)::after {
  content: ""; position: absolute; top: 40px; right: -20px; width: 20px; height: 2px; background: var(--hairline);
}
@media (max-width: 980px) {
  .esteira { grid-template-columns: repeat(2, 1fr); }
  .esteira li:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) { .esteira { grid-template-columns: 1fr; } }

.timeline { margin-top: 44px; display: grid; max-width: 860px; }
.timeline li { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: 20px; padding-bottom: 32px; }
.timeline li:not(:last-child)::before {
  content: ""; position: absolute; left: 18px; top: 44px; bottom: 0; width: 2px; background: var(--hairline);
}
.timeline strong { display: block; color: var(--navy); font-size: 1.125rem; }
.timeline p { margin-top: 6px; color: var(--text-soft); font-size: 1rem; }
.secao--escura .timeline li:not(:last-child)::before { background: rgba(255,255,255,.2); }
.secao--escura .timeline strong { color: var(--white); }
.secao--escura .timeline p { color: var(--text-on-dark); }

.passos { display: grid; gap: 14px; margin-top: 18px; }
.passos li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; color: var(--text-soft); }

/* ---------- acordeão de perguntas ---------- */
.qas { display: grid; gap: 12px; }
.qa { background: var(--card); border: 1px solid var(--hairline); border-radius: 14px; box-shadow: var(--sombra-card); }
.qa summary {
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 600; color: var(--navy);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BFF' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .2s var(--e);
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa__r { padding: 0 20px 20px; }
.qa__r p { color: var(--text-soft); max-width: 68ch; }

/* ---------- formulário ---------- */
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 980px) {
  /* em mobile o formulário vem primeiro (seção 3.7) */
  .form__grid { grid-template-columns: 1fr; }
  .form { order: -1; }
}
.form {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card);
  box-shadow: var(--sombra-card); padding: clamp(20px, 3vw, 32px); display: grid; gap: 18px;
}
.form__tit { font-size: 1.5rem; }
.campo { display: grid; gap: 6px; }
.campo label, .grupo legend { font-size: .9375rem; font-weight: 600; color: var(--navy); }
.campo label b, .grupo legend b { color: var(--royal); }
.campo input, .campo textarea, .campo select {
  width: 100%; background: var(--white); border: 1.5px solid var(--hairline); border-radius: 10px;
  padding: 12px 14px; font-size: 1rem; min-height: 48px; transition: border-color .15s, box-shadow .15s;
}
.campo textarea { min-height: 84px; resize: vertical; }
.campo input:focus, .campo textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(30,91,255,.16); }
.campo.ruim input, .campo.ruim textarea { border-color: var(--coral); }

.grupo { border: 0; margin: 0; padding: 0; display: grid; gap: 10px; }
.grupo legend { padding: 0; }
.opcoes { display: grid; gap: 8px; }
.opcao {
  display: flex; align-items: center; gap: 10px; min-height: 44px;
  padding: 10px 14px; border: 1.5px solid var(--hairline); border-radius: 10px;
  cursor: pointer; font-size: .9375rem; transition: border-color .15s, background .15s;
}
.opcao:hover { border-color: var(--royal); }
.opcao input { width: 18px; height: 18px; accent-color: var(--royal); flex: none; }
.opcao:has(input:checked) { border-color: var(--royal); background: rgba(30,91,255,.05); font-weight: 600; }
.grupo.ruim .opcao { border-color: var(--coral); }

.lgpd { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; color: var(--text-soft); }
.lgpd input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--royal); flex: none; }
.lgpd.ruim { color: var(--coral); }

.erro { font-size: .875rem; color: var(--coral); font-weight: 600; }
.erro:empty { display: none; }
.mel { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__nota { font-size: .875rem; color: var(--text-soft); text-align: center; }
.form__nota.ok { color: var(--royal); font-weight: 600; }
.form button[type="submit"] { width: 100%; }
.form button[disabled] { opacity: .6; cursor: progress; }
.form__lado h1 { font-size: clamp(1.875rem, 3.4vw, 2.75rem); }

.valida {
  margin-top: 20px; padding: 14px 16px; border-radius: 12px; font-size: .9375rem;
  background: #FFF7E6; border: 1px solid #F0D69A; color: #6B4E12;
}

/* ---------- fundo das páginas ----------
   Camada fixa atrás de tudo: dois halos suaves nos azuis da casa mais a malha
   de pontos com dissolução. Fica no body para valer em todas as páginas, sem
   repetir marcação. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(58% 42% at 82% -6%, rgba(30, 91, 255, .10), transparent 68%),
    radial-gradient(46% 38% at 6% 22%, rgba(0, 144, 205, .08), transparent 66%),
    radial-gradient(60% 46% at 50% 104%, rgba(30, 91, 255, .07), transparent 70%),
    var(--white);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(30, 91, 255, .30) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(78% 58% at 50% 0%, #000 8%, transparent 62%);
  mask-image: radial-gradient(78% 58% at 50% 0%, #000 8%, transparent 62%);
  opacity: .5;
}
/* as seções ficam translúcidas para o fundo aparecer */
body { background: transparent; }
.hero { background: linear-gradient(180deg, rgba(245, 247, 253, .86), rgba(245, 247, 253, .35)); }
.secao--gelo { background: linear-gradient(180deg, rgba(245, 247, 253, .92), rgba(223, 231, 250, .55)); }

/* ---------- cinco entregas: cards com efeito ---------- */
.entrega {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 26px 22px 24px; border-radius: var(--r-card);
  background: var(--card); border: 1px solid var(--hairline);
  box-shadow: var(--sombra-card);
  transition: transform .35s var(--e), box-shadow .35s var(--e), border-color .35s;
}
.entrega::before {                     /* faixa royal que cresce no topo */
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--ino-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--e);
}
.entrega::after {                      /* halo que acende atrás do ícone */
  content: ""; position: absolute; z-index: -1; top: -30px; right: -30px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 91, 255, .16), transparent 68%);
  opacity: 0; transition: opacity .4s;
}
.entrega:hover { transform: translateY(-6px); border-color: rgba(30, 91, 255, .35); box-shadow: 0 26px 54px rgba(20, 40, 110, .14); }
.entrega:hover::before { transform: scaleX(1); }
.entrega:hover::after { opacity: 1; }
.entrega__n {
  display: block; font-family: var(--fonte); font-size: 2.5rem; font-weight: 800;
  line-height: 1; letter-spacing: -.04em; color: var(--mist);
  transition: color .35s;
}
.entrega:hover .entrega__n { color: rgba(30, 91, 255, .34); }
.entrega__ico {
  display: grid; place-items: center; width: 44px; height: 44px; margin-top: -14px;
  border-radius: 12px; background: rgba(30, 91, 255, .09); color: var(--royal);
  transition: background .35s, transform .35s var(--e);
}
.entrega__ico svg { width: 22px; height: 22px; }
.entrega:hover .entrega__ico { background: var(--royal); color: var(--white); transform: rotate(-6deg); }
.entrega h3 { margin-top: 16px; }
.entrega p { margin-top: 8px; color: var(--text-soft); font-size: 1rem; }

/* ---------- confronto (o problema) ---------- */
.confronto {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 20px; margin-top: 44px;
}
.confronto__lado {
  padding: 28px 26px; border-radius: var(--r-card); background: var(--card);
  border: 1px solid var(--hairline); box-shadow: var(--sombra-card);
}
.confronto__lado--antes { border-top: 3px solid var(--coral); }
.confronto__lado--depois { border-top: 3px solid var(--royal); box-shadow: 0 22px 48px rgba(30, 91, 255, .14); }
.confronto__seta {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 50%; background: var(--royal); color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 91, 255, .34);
}
.confronto__seta svg { width: 22px; height: 22px; }
@media (max-width: 860px) {
  .confronto { grid-template-columns: 1fr; }
  .confronto__seta { justify-self: center; transform: rotate(90deg); }
}

.itens { display: grid; gap: 12px; margin-top: 18px; }
.itens li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; color: var(--text-soft); }
.itens li::before {
  content: ""; width: 24px; height: 24px; border-radius: 50%; margin-top: 1px;
  background-position: center; background-repeat: no-repeat; background-size: 13px;
}
.itens--nao li::before {
  background-color: rgba(232, 86, 75, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8564B' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.itens--sim li::before {
  background-color: rgba(30, 91, 255, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5BFF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.fecho {
  margin-top: 36px; font-size: clamp(1.125rem, 1.9vw, 1.5rem); font-weight: 800;
  letter-spacing: -.02em; color: var(--navy);
}

/* ---------- logos de marca ---------- */
.marcas {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 52px); margin-top: 40px;
  padding: 26px 20px; border-radius: var(--r-card);
  background: var(--card); border: 1px solid var(--hairline); box-shadow: var(--sombra-card);
}
.marcas img { height: 30px; width: auto; opacity: .82; transition: opacity .3s; }
.marcas img:hover { opacity: 1; }
.rodape__marcas { display: grid; gap: 14px; margin-top: 16px; }
/* no rodapé escuro: OpenBox e OpenConnect já são brancas; só a Yeastar
   precisa ser clareada, então o filtro vai apenas nela. */
.rodape__marcas img { height: 24px; width: auto; opacity: .85; }
.rodape__marcas img[alt="Yeastar"] { filter: brightness(0) invert(1); opacity: .7; }

/* ---------- lockup: nome empilhado como no logo oficial ---------- */
.lockup__growth { display: flex; align-items: center; gap: 9px; }
.lockup__growth svg { width: 26px; height: 26px; color: var(--navy); }
.lockup__nome { display: grid; gap: 1px; }
.lockup__nome b { font-size: 1.0625rem; font-weight: 800; color: var(--navy); letter-spacing: -.025em; line-height: 1; }
.lockup__nome em {
  font-style: normal; font-size: .5rem; font-weight: 800; line-height: 1;
  letter-spacing: .3em; color: var(--royal);
}
.rodape__lockup .lockup__growth svg { color: var(--white); }
.rodape__lockup .lockup__nome b { color: var(--white); }
.rodape__lockup .lockup__nome em { color: var(--signal); }

/* ---------- janela do portal ---------- */
.janela {
  margin: 0; width: 100%; max-width: 100%; min-width: 0;
  border-radius: var(--r-card); overflow: hidden; background: var(--card);
  border: 1px solid var(--hairline);
  box-shadow: 0 32px 70px rgba(20, 40, 110, .16), 0 4px 12px rgba(20, 40, 110, .06);
}
.janela__topo {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: var(--navy); color: var(--white);
}
.janela__marca { font-size: .8125rem; font-weight: 800; letter-spacing: -.01em; }
.janela__marca b { color: var(--signal); font-weight: 800; }
.janela__abas { display: flex; gap: 4px; }
.janela__abas i {
  font-style: normal; font-size: .5625rem; font-weight: 700; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 999px; color: rgba(221, 230, 250, .7);
}
.janela__abas i.on { background: rgba(78, 139, 255, .28); color: var(--white); }
.janela__sync { font-size: .5625rem; font-weight: 700; letter-spacing: .1em; color: rgba(221, 230, 250, .6); }
.janela__tag {
  margin-left: auto; font-size: .5625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: 3px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, .14); color: var(--white); white-space: nowrap;
}
.janela__corpo { display: grid; grid-template-columns: clamp(104px, 30%, 138px) minmax(0, 1fr); }

.pnav {
  padding: 14px 10px; background: var(--ice); border-right: 1px solid var(--hairline);
  display: grid; gap: 10px; align-content: start;
}
.pnav__t { font-size: .5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-soft); }
.pnav__lista { display: grid; gap: 2px; }
.pnav__i {
  display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px;
  font-size: .75rem; color: var(--text-soft);
}
.pnav__i svg { width: 14px; height: 14px; flex: none; }
.pnav__i--on { background: rgba(30, 91, 255, .1); color: var(--royal); font-weight: 600; }
.pnav__conta {
  display: grid; gap: 1px; margin-top: 10px; padding: 9px 10px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--hairline);
}
.pnav__conta b { font-size: .6875rem; color: var(--navy); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.pnav__conta { font-size: .5625rem; text-transform: uppercase; letter-spacing: .09em; color: var(--text-soft); }

.ptela { padding: 14px; display: grid; gap: 12px; align-content: start; }
.ptela__cab { display: grid; gap: 3px; }
.ptela__cab span { font-size: .5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; color: var(--royal); }
.ptela__cab strong { font-size: 1.0625rem; color: var(--navy); letter-spacing: -.02em; }

/* 2x2 é o que equilibra na coluna do hero; 4 em linha só quando sobra espaço */
.pkpis { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.pkpis > * { min-width: 0; }
@media (min-width: 1240px) { .pkpis { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pkpi { padding: 9px 8px; border-radius: 10px; background: var(--ice); border: 1px solid var(--hairline); }
.pkpi span { display: block; font-size: .5rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--text-soft); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; }
.pkpi b { display: block; margin-top: 2px; font-size: .875rem; color: var(--navy);
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pkpi i { font-style: normal; font-size: .5rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--royal); }
@media (max-width: 640px) { .pkpis { grid-template-columns: repeat(2, 1fr); } }

.pbloco { padding: 11px 12px; border-radius: 10px; background: var(--ice); border: 1px solid var(--hairline); display: grid; gap: 9px; }
.pbloco__t { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-soft); }
.pduo { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 640px) { .pduo { grid-template-columns: 1fr; } }
.pbarras { display: grid; gap: 7px; }
.pbarras li { display: grid; grid-template-columns: minmax(0, 1fr) 46px; align-items: center;
  gap: 4px 8px; font-size: .6875rem; color: var(--text-soft); }
.pbarras li span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pbarras li i { grid-column: 1 / -1; order: 2; }
.pbarras i { height: 7px; border-radius: 5px; width: var(--w); background: var(--royal); opacity: .9; }
.pbarras li:last-child i { background: var(--ino-blue); }
.pbarras--rank li:last-child i { background: rgba(30, 91, 255, .4); }
.pbarras b { font-size: .6875rem; text-align: right; color: var(--navy); font-variant-numeric: tabular-nums; }

@media (max-width: 560px) {
  .janela__corpo { grid-template-columns: 1fr; }
  .pnav { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .pnav__lista { grid-template-columns: repeat(2, 1fr); }
  .pnav__conta { display: none; }
}

/* ---------- respeito a movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
