/* =========================================================
   Carolina Rodarte · Assessoria em Licitações
   v0.2 — direção "processo": vocabulário de status e documento
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* marca (cartão + logo) */
  --teal:        #5F8B8A;
  --teal-deep:   #3E6564;
  --teal-ink:    #2C4A49;
  --teal-soft:   #E6EEED;
  --greige:      #CFCAC2;
  --paper:       #F3F1EC;
  --white:       #FFFFFF;
  --ink:         #1F2326;
  --ink-2:       #4B5157;
  --steel:       #6F7780;
  --hairline:    rgba(31, 35, 38, .12);
  --hairline-2:  rgba(31, 35, 38, .07);

  /* superfície escura + cores de status (vêm da arte do hero) */
  --night:       #14161A;
  --night-2:     #1D2025;
  --amber:       #F2A33C;
  --green:       #2BB673;
  --on-night:    rgba(255,255,255,.86);
  --on-night-2:  rgba(255,255,255,.58);
  --line-night:  rgba(255,255,255,.12);

  /* tipografia */
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* medidas */
  --wrap:     1200px;
  --read:     720px;
  --r:        6px;
  --r-l:      10px;
  --pad-y:    clamp(64px, 8vw, 112px);
  --header-h: 72px;
  --topbar-h: 30px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .45em; font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: -.012em; }
b, strong { font-weight: 600; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 3. Escala tipográfica ---------- */
h1 { font-size: clamp(36px, 3.1vw, 50px); }
h2 { font-size: clamp(30px, 3.4vw, 46px); }
h3 { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.25; }
.lead { font-size: clamp(17px, 1.3vw, 19px); color: var(--ink-2); }
.eyebrow {
  display: block;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-deep); margin: 0 0 20px;
}
.eyebrow--light { color: var(--on-night-2); }

/* ---------- 4. Utilitários ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.read { max-width: var(--read); }
.hide-sm { display: inline; }

/* botões — retangulares, sem pílula */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500; line-height: 1;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary { background: var(--teal-deep); color: #fff; }
.btn--primary:hover { background: var(--teal-ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--on-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--paper); }
.btn--wa { background: #1FAE59; color: #fff; }
.btn--wa:hover { background: #17994D; }
.btn--sm { padding: 10px 16px; font-size: 14px; }

/* pílula de status — o vocabulário da arte do hero, reaproveitado na página */
.status {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--night); color: #fff;
  font-size: 13px; font-weight: 500; line-height: 1;
  padding: 9px 13px 9px 10px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
}
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex: none; box-shadow: 0 0 0 3px rgba(242,163,60,.2); }
.status--done i { background: var(--green); box-shadow: 0 0 0 3px rgba(43,182,115,.2); }

/* seções contíguas */
.panel { background: var(--white); padding: var(--pad-y) 0; }
.panel--paper { background: var(--paper); }
.panel + .panel { border-top: 1px solid var(--hairline-2); }
.panel--paper + .panel, .panel + .panel--paper { border-top: 0; }

/* ---------- 5. Topbar + Header ---------- */
.topbar {
  background: var(--night); color: var(--on-night-2);
  font-family: var(--font-body); font-size: 12px;
  border-bottom: 1px solid var(--line-night);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--topbar-h); }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 12px; height: 12px; opacity: .6; }
.topbar__group { display: flex; gap: 18px; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(20,22,26,.52);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
          backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 140px; height: auto; filter: brightness(0) invert(1); transition: filter .25s ease; }
.brand__tag {
  font-family: var(--font-body); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--on-night-2); border-left: 1px solid var(--line-night); padding-left: 12px; line-height: 1.4; max-width: 120px;
}
.nav { display: flex; gap: 26px; }
.nav a { font-size: 14.5px; color: var(--on-night); }
.nav a:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: #fff; }
.nav-toggle svg { width: 24px; height: 24px; }

.site-header.is-stuck {
  background: rgba(255,255,255,.84);
  border-color: transparent;
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header.is-stuck .brand img { filter: none; }
.site-header.is-stuck .brand__tag { color: var(--steel); border-color: var(--hairline); }
.site-header.is-stuck .nav a { color: var(--ink); }
.site-header.is-stuck .nav a:hover { color: var(--teal-deep); }
.site-header.is-stuck .nav-toggle { color: var(--ink); }
.site-header.is-stuck .btn--wa { background: var(--teal-deep); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  min-height: min(calc(100vh - var(--topbar-h)), calc(53.3vw + 28px));
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--night);
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 28px 0 0; z-index: -2; container-type: size; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 30%; }

/* Cartões de status — réplica da arte "HERO com detalhes".
   A camada tem exatamente a proporção da foto (1630×965) e o mesmo deslocamento
   vertical do object-position, então % e cqw aqui equivalem a pixels da foto. */
.hero__cards {
  position: absolute; left: 0; width: 100%; aspect-ratio: 1630 / 965;
  top: calc((100cqh - 100cqw * 965 / 1630) * .3);
  container-type: inline-size; pointer-events: none;
}
.hcard {
  position: absolute; display: flex; align-items: center; gap: .92cqw;
  padding: .95cqw 1.15cqw .95cqw 1.0cqw;
  background: rgba(34, 31, 28, .58);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: .9cqw;
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
          backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 .6cqw 1.8cqw rgba(0,0,0,.28);
  font-family: var(--font-body); line-height: 1.25; white-space: nowrap;
}
.hcard--1 { left: 48.7%; top: 18.2%; }
.hcard--2 { left: 45.7%; top: 28.6%; }
.hcard--3 { left: 74.6%; top: 48.5%; }
.hcard__txt { display: flex; flex-direction: column; gap: .18cqw; }
.hcard__txt b { font-weight: 500; font-size: 1.06cqw; color: #fff; letter-spacing: -.005em; }
.hcard__txt span { font-weight: 400; font-size: .98cqw; color: rgba(255,255,255,.56); white-space: normal; max-width: 15.5cqw; }
.hcard__dot {
  flex: none; width: .92cqw; height: .92cqw; border-radius: 50%; margin: 0 .3cqw 0 .25cqw;
  background: #F5A623; box-shadow: 0 0 0 .35cqw rgba(245,166,35,.22), 0 0 .9cqw rgba(245,166,35,.5);
}
.hcard__ico {
  flex: none; width: 3cqw; height: 3cqw; border-radius: .62cqw; display: grid; place-items: center; color: #fff;
}
.hcard__ico svg { width: 1.55cqw; height: 1.55cqw; }
.hcard__ico--amber { background: linear-gradient(180deg, #FFB43A 0%, #F29A1E 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 .3cqw .8cqw rgba(242,154,30,.35); }
.hcard__ico--green { background: linear-gradient(180deg, #2ED47A 0%, #17B15C 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 .3cqw .8cqw rgba(23,177,92,.35); }
.hcard--hi {
  border-color: rgba(245,166,35,.85);
  box-shadow: 0 0 0 1px rgba(245,166,35,.25), 0 0 1.4cqw rgba(245,166,35,.45), 0 .6cqw 1.8cqw rgba(0,0,0,.3);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(94deg, rgba(14,16,19,.90) 0%, rgba(14,16,19,.78) 26%, rgba(14,16,19,.30) 44%, rgba(14,16,19,0) 58%),
    linear-gradient(to top, rgba(14,16,19,.78) 0%, rgba(14,16,19,0) 30%);
}
.hero { --hero-left: max(24px, min(50vw - 576px, 7vw)); }
.hero__inner { padding: clamp(40px, 5vw, 72px) 24px 44px var(--hero-left); }
.hero__copy { max-width: calc(41vw - var(--hero-left)); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { display: block; color: #fff; font-weight: 400; }
.hero__hook { font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 24px); color: #fff; margin: 0 0 16px; line-height: 1.3; }
.hero__lead { color: var(--on-night-2); font-size: clamp(16px, 1.2vw, 17.5px); max-width: 520px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero__trust { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; font-size: 13.5px; color: var(--on-night-2); }
.hero__trust svg { width: 14px; height: 14px; color: var(--teal); flex: none; }

/* ficha técnica no rodapé do hero (substitui a faixa de números) */
.ficha { border-top: 1px solid var(--line-night); }
.ficha dl { margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.ficha div { padding: 22px 24px 24px; border-left: 1px solid var(--line-night); }
.ficha div:first-child { border-left: 0; padding-left: 0; }
.ficha dt { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--on-night-2); margin-bottom: 8px; }
.ficha dd { margin: 0; color: var(--on-night); font-size: 14.5px; line-height: 1.45; }
.ficha dd b { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: #fff; margin-right: 6px; line-height: 1; }

/* ---------- 7. Blocos ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.split--media { grid-template-columns: 1fr 1.05fr; align-items: center; }
.figure { border-radius: var(--r-l); overflow: hidden; position: relative; margin: 0; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
/* figura alta: ocupa a altura do texto ao lado, com deslocamento lento (Ken Burns)
   e um leve paralaxe no scroll — o wrapper move, a imagem respira */
.figure--tall { min-height: 520px; align-self: stretch; }
.figure--tall .figure__inner { position: absolute; inset: -6% 0; will-change: transform; }
.figure--tall img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform-origin: 55% 45%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, 1.5%, 0); }
}
.figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 22px 18px; font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0; color: rgba(255,255,255,.85);
  background: linear-gradient(to top, rgba(14,16,19,.82), transparent);
}
.closing { font-family: var(--font-display); font-size: 21px; color: var(--teal-ink); line-height: 1.4; }

/* etapas com mídia — o bloco fica preso na tela e as etapas avançam com o scroll;
   a página só segue depois que a última etapa apareceu */
.panel--pin { padding: 0; }
.fsteps-track { height: 220vh; } /* 100vh de pin + 30vh de scroll por etapa */
.fsteps-pin {
  position: sticky; top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; padding: 40px 0;
}
.fsteps { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-top: 40px; }
.fsteps__list { display: grid; gap: 6px; }
.fsteps__btn {
  display: grid; grid-template-columns: 40px 1fr; gap: 20px; align-items: start; width: 100%;
  padding: 16px 14px 16px 12px; border: 0; border-radius: var(--r-l); background: transparent; text-align: left;
  font: inherit; color: inherit; cursor: pointer;
  opacity: .38; transition: opacity .5s ease, background .3s ease;
}
.fsteps__item.is-active .fsteps__btn { opacity: 1; background: var(--white); }
.fsteps__btn:hover { opacity: .75; }
.fsteps__item.is-active .fsteps__btn:hover { opacity: 1; }
.fsteps__marker {
  position: relative; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--hairline); background: var(--paper); color: var(--ink-2);
  font-family: var(--font-display); font-size: 19px; line-height: 1;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.fsteps__marker .ck { position: absolute; width: 16px; height: 16px; opacity: 0; transition: opacity .3s ease; }
.fsteps__marker .n { transition: opacity .3s ease; }
.fsteps__item.is-active .fsteps__marker { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; transform: scale(1.08); }
.fsteps__item.is-done .fsteps__marker { background: var(--teal-soft); border-color: var(--teal); color: var(--teal-deep); }
.fsteps__item.is-done .fsteps__marker .n, .fsteps__item.is-active .fsteps__marker .n { opacity: 0; }
.fsteps__item.is-done .fsteps__marker .ck, .fsteps__item.is-active .fsteps__marker .ck { opacity: 1; }
.fsteps__body h3 { font-size: 22px; margin: 5px 0 6px; }
@media (max-height: 800px) and (min-width: 1100px) {
  .fsteps-pin h2 { font-size: 30px; }
  .fsteps { margin-top: 24px; }
  .fsteps__btn { padding: 11px 14px 11px 12px; }
  .fsteps__body p { font-size: 14px; }
}
.fsteps__body p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0; }
/* barra de progresso do autoplay, só no item ativo */
.fsteps__item.is-active .fsteps__btn::after {
  content: ""; position: absolute; left: 12px; right: 14px; bottom: 6px; height: 2px; border-radius: 2px;
  background: linear-gradient(to right, var(--teal) var(--p, 0%), var(--hairline-2) 0);
}
.fsteps__btn { position: relative; }

.fsteps__media { position: relative; aspect-ratio: 5 / 4; min-height: 320px; max-height: calc(100vh - 380px); border-radius: var(--r-l); overflow: hidden; background: var(--night); perspective: 1200px; }
.fsteps__slide {
  position: absolute; inset: 0; margin: 0; border-radius: inherit; overflow: hidden;
  opacity: 0; transform: translate3d(0, 80px, 0) rotateX(-14deg); transform-origin: 50% 100%;
  transition: opacity .5s ease-in-out, transform .5s ease-in-out; pointer-events: none;
}
.fsteps__slide.is-active { opacity: 1; transform: none; }
.fsteps__slide.is-leaving { opacity: 0; transform: translate3d(0, -80px, 0) rotateX(14deg); transform-origin: 50% 0; }
.fsteps__slide img { width: 100%; height: 100%; object-fit: cover; }
.fsteps__slide::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 66%;
  background: linear-gradient(to top, var(--paper) 0%, rgba(243,241,236,.55) 45%, transparent 100%);
}
.fsteps__slide .status { position: absolute; left: 20px; bottom: 20px; z-index: 1; }

/* SICX — leitura à esquerda, ficha fixa à direita (mesmo padrão do Atendimento) */
.sicx__grid {
  display: grid; grid-template-columns: minmax(0, 660px) minmax(300px, 380px);
  justify-content: space-between; align-items: start;
  gap: clamp(40px, 6vw, 96px); margin-top: 16px;
}
.sicx__text h3 { margin: 40px 0 12px; padding-top: 30px; border-top: 1px solid var(--hairline); font-size: 23px; }
.sicx__text h3:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.sicx__text p { font-size: 16px; }
.sicx__text .closing { margin-top: 32px; }
.callout {
  background: var(--white); border: 1px solid var(--hairline-2); border-left: 3px solid var(--teal);
  border-radius: var(--r-l); padding: 20px 24px; margin: 28px 0 8px; font-size: 15.5px; line-height: 1.6;
}
.callout__label {
  display: block; font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 6px;
}
.sicx__card {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--white); border: 1px solid var(--hairline-2); border-radius: var(--r-l); padding: 26px 26px 22px;
}
.sicx__facts { margin: 22px 0 24px; border-top: 1px solid var(--hairline); }
.sicx__facts div { padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.sicx__facts dt { font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 3px; }
.sicx__facts dd { margin: 0; font-size: 14.5px; line-height: 1.5; }
.sicx__card .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; line-height: 1.3; }
.sicx__upd { font-size: 12.5px; color: var(--steel); text-align: center; margin: 14px 0 0; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; margin: 24px 0 0; }
.checklist li, .fitlist li, .creds li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.checklist li { font-size: 15.5px; }
.tick {
  flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 3px;
  background: var(--teal-deep); color: #fff; display: grid; place-items: center;
}
.tick svg { width: 11px; height: 11px; }

/* serviços — relação em duas colunas com filete, etiquetada pela fase do processo */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(32px, 5vw, 72px); margin-top: 48px; border-top: 1px solid var(--hairline); }
.svc-list li { padding: 28px 0 30px; border-bottom: 1px solid var(--hairline); display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; align-items: start; }
.svc-list h3 { grid-column: 1; margin: 0 0 6px; font-size: 24px; }
.svc-list p { grid-column: 1; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.svc-list .phase { grid-column: 2; grid-row: 1 / span 2; font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--teal-deep); padding-top: 8px; white-space: nowrap; }

/* experiência */
.about { display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: clamp(36px, 6vw, 88px); align-items: stretch; }
.about__photo { margin: 0; border-radius: var(--r-l); overflow: hidden; background: var(--white); border: 1px solid var(--hairline-2); display: flex; flex-direction: column; }
.about__photo img { display: block; flex: 1 1 auto; width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 50% 14%; }
.about__cap { padding: 16px 20px 18px; border-top: 1px solid var(--hairline-2); }
.about__name { font-family: var(--font-display); font-size: 22px; line-height: 1.15; margin: 0 0 4px; color: var(--ink); }
.about__role { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--teal-deep); margin: 0; }
.pullquote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 1.3vw, 19px); line-height: 1.5;
  color: var(--teal-ink); margin: 22px 0 20px; padding-left: 20px; border-left: 2px solid var(--teal);
}
/* credenciais como ficha: rótulo + fato, na mesma linguagem da ficha do hero */
.creds { margin: 28px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.creds div { padding: 18px 18px 20px 0; display: flex; flex-direction: column; align-items: flex-start; }
.creds div + div { padding-left: 20px; border-left: 1px solid var(--hairline); }
.creds dt { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--teal-deep); margin: 0 0 8px; }
.creds dd { margin: 0 0 7px; font-size: 14px; line-height: 1.5; color: var(--ink); }
.creds dd:last-child { margin-bottom: 0; }
.checklist li { font-size: 15.5px; }
.tick {
  flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 3px;
  background: var(--teal-deep); color: #fff; display: grid; place-items: center;
}
.tick svg { width: 11px; height: 11px; }

/* para quem é */
.fitlist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; margin-top: 30px; }
.fitlist li { font-size: 16px; }

/* atendimento */
.local { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chips li { font-family: var(--font-body); font-size: 13px; padding: 7px 12px; border: 1px solid var(--hairline); border-radius: var(--r); color: var(--ink-2); }
.chips li:first-child { background: var(--teal-deep); color: #fff; border-color: transparent; }
.infocard { background: var(--paper); border: 1px solid var(--hairline-2); border-radius: var(--r-l); padding: 30px; }
.infocard dl { margin: 0; display: grid; gap: 18px; }
.infocard dt { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 4px; }
.infocard dd { margin: 0; font-size: 15.5px; line-height: 1.5; }
.map { margin-top: 24px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--hairline); }
.map__ph {
  position: relative; width: 100%; aspect-ratio: 16 / 8; border: 0; padding: 0; cursor: pointer;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 40h40M40 0v40' stroke='%23E6E2DA' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  display: grid; place-items: center; font-family: var(--font-body); color: var(--teal-ink); font-size: 14.5px;
}
.map__ph span { display: inline-flex; align-items: center; gap: 9px; background: #fff; padding: 11px 18px; border-radius: var(--r); border: 1px solid var(--hairline); }
.map iframe { display: block; width: 100%; aspect-ratio: 16 / 8; border: 0; }

/* FAQ */
.faq { max-width: 860px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-display); font-size: clamp(19px, 1.7vw, 23px); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 1.5px solid var(--teal-deep); border-bottom: 1.5px solid var(--teal-deep);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { padding: 0 40px 26px 0; color: var(--ink-2); font-size: 16px; }

/* CTA final — superfície escura com a grade */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--night); color: #fff; text-align: center;
  padding: clamp(80px, 9vw, 128px) 0;
}
.cta-band h2 { color: #fff; font-size: clamp(34px, 4vw, 56px); max-width: 820px; margin-inline: auto; }
.cta-band p { color: var(--on-night-2); max-width: 600px; margin-inline: auto; font-size: 17px; }
.cta-band .btn { margin-top: 30px; }
.grid-bg, .grid-bg__hi, .grid-bg__glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.grid-bg, .grid-bg__hi {
  background-image:
    linear-gradient(to right, rgba(255,255,255,.9) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-move 5s linear infinite;
}
.grid-bg { opacity: .06; }
.grid-bg__hi {
  opacity: .32;
  -webkit-mask-image: radial-gradient(300px circle at var(--mx, -999px) var(--my, -999px), #000, transparent);
          mask-image: radial-gradient(300px circle at var(--mx, -999px) var(--my, -999px), #000, transparent);
}
.grid-bg__glow {
  background:
    radial-gradient(38% 60% at 88% 0%, rgba(242,163,60,.28), transparent 70%),
    radial-gradient(30% 50% at 12% 100%, rgba(95,139,138,.42), transparent 70%);
}
@keyframes grid-move { to { background-position: 40px 40px; } }

/* formulário */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.next { margin-top: 30px; display: grid; gap: 22px; }
.next li { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start; }
.next .status { padding: 0; width: 28px; height: 28px; justify-content: center; }
.next .status i { box-shadow: none; }
.next h3 { font-family: var(--font-body); font-weight: 600; font-size: 16.5px; margin: 4px 0 3px; letter-spacing: 0; }
.next p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

.form { background: var(--paper); border: 1px solid var(--hairline-2); border-radius: var(--r-l); padding: clamp(26px, 3vw, 36px); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-body); font-size: 11.5px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r); transition: border-color .18s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--teal-deep); outline: none; box-shadow: 0 0 0 3px rgba(95,139,138,.16); }
.field textarea { min-height: 112px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); margin: 20px 0; line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--teal-deep); width: 16px; height: 16px; flex: none; }
.form .btn { width: 100%; justify-content: center; padding-block: 16px; }
.form__note { font-size: 13px; color: var(--ink-2); text-align: center; margin-top: 14px; display: flex; justify-content: center; gap: 6px; align-items: center; flex-wrap: wrap; }
.form__note a { color: var(--teal-deep); display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }
.form__note a svg { width: 14px; height: 14px; }

/* ---------- 8. Rodapé ---------- */
.site-footer { background: var(--night); color: var(--on-night-2); padding: 64px 0 0; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.site-footer img.logo { width: 150px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.site-footer h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; font-weight: 500; }
.footer__nav li { margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid var(--line-night); padding: 26px 0 40px; font-size: 13px; color: rgba(255,255,255,.4); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__pos { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; font-weight: 500; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 12px; }

/* ---------- 9. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.38);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- 10. Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grid-bg, .grid-bg__hi { animation: none; }
  .figure--tall img { animation: none; }
  .figure--tall .figure__inner { transform: none !important; inset: 0; }
  .fsteps__slide, .fsteps__btn, .fsteps__marker { transition: none; }
}

/* ---------- 11. Responsivo ---------- */
@media (max-width: 1099px) {
  .hero { --hero-left: 24px; }
  .hero__copy { max-width: 620px; }
  .hero__cards { display: none; }
  .hero__media img { object-position: 72% 20%; }
  .hero::before {
    background:
      linear-gradient(94deg, rgba(14,16,19,.94) 0%, rgba(14,16,19,.84) 36%, rgba(14,16,19,.40) 62%, rgba(14,16,19,.10) 80%, rgba(14,16,19,.25) 100%),
      linear-gradient(to top, rgba(14,16,19,.80) 0%, rgba(14,16,19,0) 30%);
  }
  .fsteps-track { height: auto; }
  .fsteps-pin { position: static; min-height: 0; padding: var(--pad-y) 0; }
  .fsteps { grid-template-columns: 1fr; align-items: start; }
  .fsteps__media { order: -1; min-height: 0; max-height: none; aspect-ratio: 16 / 9; position: sticky; top: calc(var(--header-h) + 12px); z-index: 2; }
  .fsteps__list { padding: 8px 0 12vh; gap: 18px; }
  .about, .local, .contact, .split, .split--media { grid-template-columns: 1fr; }
  .sicx__grid { grid-template-columns: 1fr; }
  .sicx__card { position: static; }
  .about__photo { max-width: 400px; }
  .about__photo img { min-height: 0; aspect-ratio: 4 / 5; }
  .creds { grid-template-columns: 1fr; }
  .creds div { padding-right: 0; }
  .creds div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--hairline); }
  .svc-list { grid-template-columns: 1fr; }
  .figure--tall { min-height: 0; aspect-ratio: 16 / 10; }
}

@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 8px 24px 20px; box-shadow: 0 16px 40px rgba(20,22,26,.12);
  }
  .nav.is-open a { color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--hairline); }

  .hero { min-height: 0; }
  .hero__inner { padding: 48px 20px 36px; }
  .hero__copy { max-width: none; }
  .ficha { display: none; }
  .hero__media img { object-position: 68% top; }
  .hero::before {
    background: linear-gradient(to bottom, rgba(14,16,19,.92) 0%, rgba(14,16,19,.84) 48%, rgba(14,16,19,.66) 76%, rgba(14,16,19,.92) 100%);
  }
  .ficha dl { grid-template-columns: 1fr 1fr; }
  .ficha div { padding: 18px 18px 20px; border-top: 1px solid var(--line-night); }
  .ficha div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .ficha div:nth-child(-n+2) { border-top: 0; }

  .checklist, .fitlist, .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .topbar__group--sec .mail { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  h1 { font-size: 34px; }
  .hide-sm { display: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* rótulos longos ("Quero preparar minha empresa para o SICX") quebram em vez de vazar */
  .btn { white-space: normal; text-align: center; max-width: 100%; line-height: 1.25; }
  .btn--wa:not(.btn--sm) { width: 100%; justify-content: center; }
  .fsteps__btn { grid-template-columns: 34px 1fr; gap: 14px; padding: 14px 10px; }
  .fsteps__marker { width: 34px; height: 34px; font-size: 16px; }
  .fsteps__body h3 { font-size: 19px; }
  .svc-list li { grid-template-columns: 1fr; }
  .svc-list .phase { grid-column: 1; grid-row: auto; order: -1; padding: 0 0 8px; }
  .brand__tag { display: none; }
  .topbar .wrap { justify-content: center; }
  .topbar__group--sec { display: none; }
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}
