/* ==========================================================================
   LP — DESCARTE CORPORATIVO DE ELETROELETRÔNICOS (spot)
   Página de conversão direta. Tokens e componentes em marca/brand.css
   ========================================================================== */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ciano); color: var(--azul-profundo);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.ulink { text-decoration: underline; text-underline-offset: 2px; }
.ulink:hover { color: var(--ciano); }

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 1, 68, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line-dark); background: rgba(10, 1, 68, .95); }

.nav__inner { display: flex; align-items: center; gap: var(--sp-5); min-height: 72px; }
.nav__brand { color: var(--nuvem); display: flex; align-items: center; flex: none; }
.nav__brand svg { width: 168px; height: auto; }
.nav__brand:hover { color: var(--ciano); }

.nav__links { display: none; gap: var(--sp-5); margin-left: auto; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-on-dark-muted);
  transition: color .18s var(--ease); white-space: nowrap;
}
.nav__links a:hover { color: var(--nuvem); }

.nav__cta { display: none; padding: .7rem 1.35rem; font-size: .9rem; }

.nav__toggle {
  margin-left: auto; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--nuvem); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex; flex-direction: column; gap: var(--sp-3);
  padding: var(--sp-4) var(--gutter) var(--sp-6);
  border-top: 1px solid var(--line-dark);
  background: var(--azul-profundo);
}
.nav__mobile a:not(.btn) { color: var(--ink-on-dark); font-weight: 500; padding: .5rem 0; }

@media (min-width: 1000px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; margin-left: var(--sp-4); }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* --------------------------------------------------------------------------
   HERO — formulário acima da dobra: a página existe para agendar
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }

.hero__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1060px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr); gap: 3.5rem; }
}

/* Grafismo recua para não competir com o texto nem com o formulário. */
.hero .gfx-waves {
  opacity: .28;
  -webkit-mask-image: linear-gradient(100deg, transparent 30%, #000 78%);
  mask-image: linear-gradient(100deg, transparent 30%, #000 78%);
}
@media (max-width: 900px) { .hero .gfx-waves { opacity: .16; } }

.hero__copy > * + * { margin-top: var(--sp-5); }
.hero__copy h1 {
  font-size: clamp(1.9rem, 1.15rem + 2.5vw, 2.9rem);
  line-height: 1.1;
  max-width: 21ch;
}
@media (max-width: 1059px) { .hero__copy h1 { max-width: none; } }
.hero__copy .lead { max-width: 56ch; }
.hero__copy strong { color: var(--nuvem); font-weight: 600; }

.hero__bullets { display: grid; gap: .7rem; }
.hero__bullets li { position: relative; padding-left: 2rem; font-size: .97rem; color: var(--ink-on-dark); }
.hero__bullets li::before {
  content: ""; position: absolute; left: 0; top: .36em;
  width: 15px; height: 9px;
  border-left: 2.5px solid var(--ciano); border-bottom: 2.5px solid var(--ciano);
  transform: rotate(-45deg); border-bottom-left-radius: 2px;
}

/* --------------------------------------------------------------------------
   FORMULÁRIO
   -------------------------------------------------------------------------- */
.formcard {
  background: linear-gradient(168deg, #150A57 0%, #0C0246 62%);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-float);
  position: relative;
  scroll-margin-top: 90px;
}
.formcard::before {
  content: ""; position: absolute; inset-inline: 22%; top: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ciano), transparent);
  border-radius: var(--r-pill);
}
.formcard__head { margin-bottom: var(--sp-5); }
.formcard__tag { color: var(--ciano); display: block; margin-bottom: var(--sp-3); }
.formcard__title {
  font-size: 1.24rem; font-weight: 700; line-height: 1.24; letter-spacing: -.025em;
  color: var(--nuvem); text-wrap: balance;
}
.formcard__sub { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--ink-on-dark-muted); }
.formcard__sub strong { color: var(--ciano); }

.lead-form { display: grid; gap: var(--sp-4); }
.formrow { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 520px) { .formrow { grid-template-columns: 1fr 1fr; } }

.formcard__micro { font-size: var(--fs-xs); color: var(--ink-on-dark-muted); text-align: center; line-height: 1.5; }

/* Dica de preenchimento: explica cubagem em linguagem de quem vai responder */
.field-hint {
  font-size: var(--fs-xs); line-height: 1.6;
  color: var(--nuvem--375);
  padding: .7rem .85rem;
  border-left: 2px solid var(--ciano--500);
  background: rgba(6,182,212,.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-top: calc(var(--sp-4) * -0.35);
}
.field-hint strong { color: var(--ciano); font-weight: 600; }

/* Marcador de campo opcional */
.opt {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--nuvem--375); font-weight: 400;
  margin-left: .3rem;
}

.field textarea {
  min-height: 84px; resize: vertical; line-height: 1.55;
  font-family: inherit;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { font-size: var(--fs-sm); line-height: 1.5; }
.form-status:empty { display: none; }
.form-status--ok {
  color: var(--azul-profundo); background: var(--citrico);
  padding: .85rem 1rem; border-radius: var(--r-sm); font-weight: 500;
}
.form-status--err {
  color: var(--coral); border: 1px solid var(--coral);
  padding: .85rem 1rem; border-radius: var(--r-sm);
}
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* --------------------------------------------------------------------------
   OS QUATRO EIXOS
   -------------------------------------------------------------------------- */
.section-head--center { margin-inline: auto; text-align: center; max-width: 720px; }
.section-head--center .eyebrow { justify-content: center; }

.axis {
  padding: clamp(1.4rem, 2.4vw, 1.85rem);
  border-radius: var(--r-lg);
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-card);
}
.axis__n { color: var(--ciano--250); font-size: .82rem; letter-spacing: .1em; margin-bottom: var(--sp-4); }
.axis h3 { margin-bottom: var(--sp-3); font-size: 1.12rem; }
.axis p { color: var(--ink-muted); font-size: .92rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   COBERTURA
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1.15fr .85fr; } }
.split__copy > * + * { margin-top: var(--sp-4); }

.stats {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid var(--line-dark);
}
.stat__v {
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.2rem); line-height: 1;
  font-weight: 500; letter-spacing: -.02em; color: var(--ciano);
}
.stat__v--word {
  font-size: clamp(1.45rem, 1.05rem + 1.3vw, 1.85rem);
  letter-spacing: -.01em;
}
.stat__l { margin-top: .5rem; font-size: var(--fs-xs); color: var(--ink-on-dark-muted); line-height: 1.45; max-width: 22ch; }
.stats__note { margin-top: var(--sp-4); color: var(--nuvem--375); font-size: .62rem; }

/* --------------------------------------------------------------------------
   COMO FUNCIONA
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: var(--sp-5); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }

.step {
  padding: clamp(1.3rem, 2.2vw, 1.7rem);
  border-radius: var(--r-lg);
  background: var(--surface-white);
  border: 1px solid var(--line-light);
}
.step__n {
  width: 40px; height: 40px; display: grid; place-content: center;
  border-radius: 50%; border: 1px solid var(--line-light);
  color: var(--ciano--250); font-size: .82rem; letter-spacing: .05em;
  background: var(--nuvem); margin-bottom: var(--sp-4);
}
.step h3 { margin-bottom: .45rem; font-size: 1.08rem; }
.step p { color: var(--ink-muted); font-size: .9rem; line-height: 1.6; }

.docs {
  margin-top: var(--sp-6);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border-radius: var(--r-lg);
  background: var(--azul-profundo);
  color: var(--ink-on-dark);
}
.docs__title { color: var(--ciano); margin-bottom: var(--sp-4); }
.docs__list { display: grid; gap: .7rem; }
@media (min-width: 780px) { .docs__list { grid-template-columns: 1fr 1fr; gap: .7rem var(--sp-6); } }
.docs__list li { font-size: .92rem; display: flex; gap: var(--sp-4); align-items: baseline; }
.docs__list .mono-data {
  flex: none; width: 82px; color: var(--ciano);
  font-size: .66rem; letter-spacing: .08em;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .65rem; }
.faq__item {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item[open] { border-color: rgba(6,182,212,.5); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 3.2rem 1.1rem 1.35rem;
  font-weight: 600; font-size: 1rem; letter-spacing: -.015em;
  position: relative; color: var(--azul-profundo);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--ciano); border-bottom: 2px solid var(--ciano);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(225deg); margin-top: -3px; }
.faq__body { padding: 0 1.35rem 1.25rem; }
.faq__body p { color: var(--ink-muted); font-size: var(--fs-sm); line-height: 1.68; }

/* --------------------------------------------------------------------------
   CTA FINAL
   -------------------------------------------------------------------------- */
.cta__inner { max-width: 720px; }
.cta__inner > * + * { margin-top: var(--sp-4); }
.cta__inner .lead { max-width: 52ch; }
@media (max-width: 560px) { .cta__inner .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   RODAPÉ
   -------------------------------------------------------------------------- */
.footer { background: var(--azul-025); color: var(--ink-on-dark-muted); padding-block: var(--sp-7) var(--sp-6); }
.footer__inner { display: grid; gap: var(--sp-6); }
@media (min-width: 860px) { .footer__inner { grid-template-columns: 1.2fr 1fr 1.4fr; gap: var(--sp-7); } }

.footer__logo { color: var(--nuvem); display: block; }
.footer__logo svg { width: 160px; height: auto; }
.footer__tagline { margin-top: var(--sp-3); color: var(--ciano); }

.footer__links { display: grid; gap: .55rem; align-content: start; }
.footer__links a { font-size: var(--fs-sm); }
.footer__links a:hover { color: var(--ciano); }

.footer__legal { font-size: var(--fs-sm); display: grid; gap: .45rem; align-content: start; }
.footer__note { font-size: var(--fs-xs); color: var(--nuvem--375); line-height: 1.55; margin-top: .5rem; }

/* --------------------------------------------------------------------------
   BARRA MOBILE
   -------------------------------------------------------------------------- */
.mobilebar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(10,1,68,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(105%); transition: transform .3s var(--ease);
}
.mobilebar.is-in { transform: none; }
.mobilebar .mono { color: var(--ciano); }
.mobilebar__sub { font-size: var(--fs-xs); color: var(--ink-on-dark-muted); }
.mobilebar .btn { padding: .7rem 1.4rem; font-size: .9rem; }
@media (min-width: 1000px) { .mobilebar { display: none; } }

/* ==========================================================================
   REVISÃO 2 — adições pedidas pelo time
   ========================================================================== */

/* --------------------------------------------------------------------------
   PROVA SOCIAL
   -------------------------------------------------------------------------- */
.prova__in {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--sp-4) var(--sp-6);
}
.prova__rot { color: var(--ink-on-dark-muted); flex: none; }
.prova__lista {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4) var(--sp-6);
}
.prova__lista li {
  font-size: 1.1rem; font-weight: 600; letter-spacing: -.02em; color: var(--nuvem);
}
.prova__lista li.todo {
  font-size: var(--fs-sm); font-weight: 400; color: var(--nuvem--375);
}

/* --------------------------------------------------------------------------
   COBERTURA — mapa de capilaridade + cadeia + SLA
   -------------------------------------------------------------------------- */
.cob { display: grid; gap: clamp(2rem, 4vw, 3.2rem); margin-top: var(--sp-6); }
@media (min-width: 1000px) { .cob { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); } }

.cob__mapa {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: linear-gradient(170deg, #150A57, #08013A);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow-float);
  align-self: start;
}
.mapa { display: grid; place-items: center; padding-bottom: var(--sp-4); }
.mapa__svg { width: 100%; max-width: 470px; height: auto; overflow: visible; }
.mapa__uf path { fill: #171262; stroke: var(--azul-profundo); stroke-width: 1.1; }
.mapa__p { fill: var(--ciano); stroke: var(--azul-profundo); stroke-width: 1.2; }
.mapa__anel { fill: none; stroke: var(--ciano); stroke-width: 1.4; opacity: .62; }

.legenda {
  display: grid; gap: .5rem;
  padding-top: var(--sp-4); border-top: 1px solid rgba(238,240,248,.07);
}
.legenda li {
  display: flex; align-items: center; gap: .65rem;
  font-size: var(--fs-xs); color: var(--ink-on-dark-muted); line-height: 1.4;
}
.legenda__p {
  flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: var(--ciano); box-shadow: 0 0 0 1.5px var(--azul-profundo);
}
.mapa__nota {
  margin-top: var(--sp-4); font-size: .68rem; line-height: 1.6;
  color: var(--nuvem--375);
}
.mapa__nota strong { color: var(--ink-on-dark-muted); }

.cob__cadeia-tit {
  color: var(--ciano);
  padding-bottom: var(--sp-4); border-bottom: 1px solid var(--line-dark);
}
.elo {
  display: grid; grid-template-columns: 42px 1fr; gap: var(--sp-4);
  padding: var(--sp-5) 0; border-bottom: 1px solid rgba(238,240,248,.07);
}
.elo:last-child { border-bottom: 0; padding-bottom: 0; }
.elo__n { color: var(--ciano); font-size: .8rem; padding-top: .18rem; }
.elo h3 { font-size: 1.05rem; }
.elo p {
  margin-top: .45rem; font-size: var(--fs-sm); line-height: 1.65;
  color: var(--ink-on-dark-muted);
}
.elo strong { color: var(--nuvem); }

@media (min-width: 640px) { .stats--4 { grid-template-columns: repeat(4, 1fr); } }

.sla {
  margin-top: var(--sp-5);
  display: grid; gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: rgba(6,182,212,.07);
}
@media (min-width: 760px) { .sla { grid-template-columns: auto 1fr; } }
.sla__v {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem); line-height: 1;
  font-weight: 500; letter-spacing: -.02em; color: var(--ciano);
}
.sla__l {
  margin-top: .45rem; font-size: var(--fs-xs); line-height: 1.45;
  color: var(--ink-on-dark-muted); max-width: 17ch;
}
.sla__txt h3 { font-size: 1.05rem; }
.sla__txt p {
  margin-top: .5rem; font-size: var(--fs-sm); line-height: 1.65;
  color: var(--ink-on-dark-muted);
}

/* --------------------------------------------------------------------------
   PLATAFORMA — mock de interface
   -------------------------------------------------------------------------- */
.split--inverso .split__copy { order: 2; }
.split--inverso .painel { order: 1; }
@media (max-width: 959px) {
  .split--inverso .split__copy { order: 1; }
  .split--inverso .painel { order: 2; }
}

.painel {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: linear-gradient(170deg, #150A57, #08013A);
  padding: 1.15rem;
  box-shadow: var(--shadow-float);
}
.painel__bar { display: flex; align-items: center; gap: .4rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line-dark); }
.painel__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(238,240,248,.2); }
.painel__dot:first-child { background: var(--ciano); }
.painel__titulo { margin-left: .6rem; color: var(--ink-on-dark-muted); }

.painel__acoes { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.painel__btn {
  font-size: .72rem; font-weight: 500; padding: .4rem .8rem;
  border-radius: var(--r-pill); border: 1px solid var(--line-dark);
  color: var(--ink-on-dark-muted); white-space: nowrap;
}
.painel__btn--on { background: var(--ciano); border-color: var(--ciano); color: var(--azul-profundo); font-weight: 600; }

.painel__linhas { margin-top: 1.15rem; }
.painel__linha {
  display: grid; grid-template-columns: 1.15fr 1fr .65fr .8fr;
  gap: .5rem; align-items: center;
  padding: .62rem 0; border-top: 1px solid rgba(238,240,248,.07);
  font-size: .74rem; color: var(--ink-on-dark);
}
.painel__linha--cab { border-top: 0; color: var(--nuvem--375); font-size: .58rem; letter-spacing: .1em; }
.painel__linha > span:nth-child(2) { color: var(--ink-on-dark-muted); }
.painel__linha > span:nth-child(3) { color: var(--ink-on-dark-muted); }

.tag {
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .22rem .48rem; border-radius: var(--r-pill); white-space: nowrap; justify-self: start;
}
.tag--ok   { background: rgba(206,227,70,.16); color: var(--citrico); }
.tag--run  { background: rgba(6,182,212,.16);  color: var(--ciano); }
.tag--wait { background: rgba(255,120,77,.16); color: var(--coral); }

.painel__pe { margin-top: .9rem; color: var(--nuvem--375); text-align: right; font-size: .58rem; }

/* .ticklist não existia nesta página — a seção da plataforma passou a usá-la */
.ticklist { display: grid; gap: .65rem; margin-top: var(--sp-5); }
.ticklist li { position: relative; padding-left: 1.8rem; font-size: .97rem; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 13px; height: 8px;
  border-left: 2.5px solid var(--ciano); border-bottom: 2.5px solid var(--ciano);
  transform: rotate(-45deg);
}

/* Layout invertido: o grafismo tem de recuar para a esquerda, onde está o painel */
#plataforma .gfx-waves {
  background-position: left -160px bottom -180px;
  opacity: .24;
  -webkit-mask-image: linear-gradient(100deg, #000 8%, transparent 52%);
  mask-image: linear-gradient(100deg, #000 8%, transparent 52%);
}

/* Painel em tela pequena: quatro colunas não cabem. Empilha em dois blocos —
   à esquerda identificação, à direita peso e status. */
@media (max-width: 620px) {
  .painel__linha--cab { display: none; }
  .painel__linha { grid-template-columns: 1fr auto; gap: .15rem .7rem; padding: .8rem 0; }
  .painel__linha > span:nth-child(1) { grid-column: 1; grid-row: 1; }
  .painel__linha > span:nth-child(2) { grid-column: 1; grid-row: 2; font-size: .68rem; }
  .painel__linha > span:nth-child(3) { grid-column: 2; grid-row: 1; text-align: right; white-space: nowrap; }
  .painel__linha > span:nth-child(4) { grid-column: 2; grid-row: 2; justify-self: end; }
}

/* Prova social sem nomear cliente (decisão de 27/08/2026) */
.prova__frase {
  font-size: 1.05rem; font-weight: 600; letter-spacing: -.02em; color: var(--nuvem);
}
