/* Tipografia do sistema de design "Industrial Precision" (Stitch), hospedada localmente.
   Ambas SIL Open Font License — ver assets/fonts/LICENSE.txt. Nenhuma requisição externa. */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta Industrial Precision */
  --blue-950: #001a40;
  --blue-900: #003f87; /* primary */
  --blue-800: #004491;
  --blue-700: #0056b3; /* primary-container — ação principal */
  --blue-600: #115cb9;
  --blue-500: #325ea2;
  --blue-100: #d7e2ff;
  --blue-50: #eef3fb;
  --ink: #191c1d;            /* on-surface */
  --muted: #424752;          /* on-surface-variant */
  --line: #c2c6d4;           /* outline-variant */
  --line-soft: #e1e3e4;
  --surface: #f8f9fa;        /* fundo da página */
  --surface-card: #ffffff;   /* surface-container-lowest */
  --surface-soft: #f3f4f5;   /* surface-container-low */
  --surface-dark: #191c1d;
  --success: #0d8f55;
  /* O Stitch mantém a paleta disciplinada em preto/branco/azul e usa azul também no
     botão de WhatsApp. Para voltar ao verde, basta trocar esta única variável. */
  --whatsapp: #0056b3;
  /* Sombras ambientes difusas do sistema (nível 1 e 2) */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, .05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
  /* Escala de cantos: 8px padrao, 16px cards, 24px containers de destaque */
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --container: 1280px;
  --header-height: 76px;
  --font-display: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--blue-700); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: .65rem;
  color: #fff;
  background: var(--blue-950);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.section--soft { background: var(--surface-soft); }
.section--dark { color: #fff; background: var(--surface-dark); }
.section--compact { padding: 80px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin: 14px 0 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.14rem); }
.section--dark .section-head p { color: rgba(255,255,255,.72); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section--dark .eyebrow { color: #acc7ff; }
/* Escala tipográfica do Stitch: display-lg 56px, headline-lg 40px, headline-md 28px. */
h1, h2, h3 { margin: 0; font-family: var(--font-display); }
h1 { font-size: clamp(2.15rem, 4.4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
h3 { font-size: clamp(1.12rem, 1.5vw, 1.3rem); font-weight: 700; line-height: 1.3; letter-spacing: -.01em; }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.125rem); line-height: 1.6; }
.text-blue { color: var(--blue-700); }
.text-white { color: #fff; }
.muted { color: var(--muted); }

.announcement {
  color: #dfefff;
  background: var(--blue-950);
  font-size: .83rem;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  text-align: center;
}
.announcement__dot { width: 7px; height: 7px; border-radius: 50%; background: #62d99d; box-shadow: 0 0 0 5px rgba(98,217,157,.13); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(223,229,236,.85);
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 208px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 .9rem;
  border-radius: .7rem;
  color: var(--muted);
  font-size: .91rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue-700); background: var(--blue-50); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: #fff;
}
.menu-button svg { width: 24px; height: 24px; }

/* Botões: 56px de altura, canto de 8px e fundo chapado, com um brilho interno de 0.5px
   no topo para imitar um botão físico de hardware — conforme o sistema do Stitch. */
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: box-shadow .2s ease, background .2s ease, border-color .2s ease, filter .2s ease;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--primary { color: #fff; background: var(--blue-700); box-shadow: var(--shadow-sm), inset 0 1px rgba(255,255,255,.2); }
.btn--primary:hover { filter: brightness(1.1); }
.btn--whatsapp { color: #fff; background: var(--whatsapp); box-shadow: var(--shadow-sm), inset 0 1px rgba(255,255,255,.2); }
.btn--whatsapp:hover { filter: brightness(1.1); }
.btn--outline { color: var(--blue-700); border: 2px solid var(--blue-700); background: transparent; }
.btn--outline:hover { background: var(--blue-50); }
.btn--white { color: var(--blue-700); background: #fff; box-shadow: var(--shadow-sm); }
.btn--white:hover { filter: brightness(.97); }
.btn--ghost { color: #fff; border: 2px solid rgba(255,255,255,.5); background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--small { min-height: 44px; padding: .7rem 1.1rem; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   HERO cinematográfica full-bleed — vídeo da oficina como fundo.
   Texto à esquerda sobre gradiente escuro; ação do vídeo ao centro/direita.
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 78vh, 780px);
  background: #050c12;
}
.hero__media { position: absolute; inset: 0; z-index: -2; background: #050c12; }
/* Poster <img> real atrás do vídeo: LCP estável e determinístico (o vídeo em autoplay
   não conta como LCP). O vídeo cobre o poster ao tocar; o 1º frame é a mesma cena. */
.hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
/* Gradiente horizontal (leitura à esquerda) + vinheta vertical muito sutil no topo. */
.hero__overlay {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,12,18,.94) 0%, rgba(5,12,18,.85) 30%, rgba(5,12,18,.55) 55%, rgba(5,12,18,.18) 82%, rgba(5,12,18,.06) 100%),
    linear-gradient(180deg, rgba(5,12,18,.30) 0%, rgba(5,12,18,0) 26%);
}
/* Dissolve suave da hero escura para a seção clara seguinte (sem ondas/shapes). */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 96px; z-index: -1; pointer-events: none;
  background: linear-gradient(rgba(255,255,255,0), #fff);
}
.hero__inner { position: relative; z-index: 1; width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.hero-copy { max-width: 700px; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
/* Botão secundário sobre vídeo: fundo escuro fosco garante contraste em qualquer frame. */
.hero .btn--ghost { background: rgba(5,12,18,.42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border-color: rgba(255,255,255,.55); text-shadow: none; }
.hero .btn--ghost:hover { background: rgba(5,12,18,.62); }
.hero .btn--whatsapp { text-shadow: none; }
.hero-copy h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.02; font-weight: 680; letter-spacing: -.02em; }
.hero-copy h1 .text-blue { color: #9cc2ff; }
.hero-copy .lead { max-width: 600px; margin: 20px 0 30px; color: rgba(255,255,255,.85); }

.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 20px; padding: .42rem .8rem;
  border: 1px solid rgba(156,194,255,.35); border-radius: 999px;
  color: #d7e6ff; background: rgba(0,63,135,.28);
  font-family: var(--font-display); font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-kicker i { width: 8px; height: 8px; border-radius: 50%; background: #62d99d; box-shadow: 0 0 0 4px rgba(98,217,157,.2); }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 600; }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust li + li { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-trust svg { width: 18px; height: 18px; color: #9cc2ff; flex: 0 0 auto; }

.hero__locale {
  position: absolute; z-index: 1; bottom: 32px;
  right: max(24px, calc((100% - var(--container)) / 2 + 4px));
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .85rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  color: rgba(255,255,255,.92); background: rgba(5,12,18,.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: .82rem; font-weight: 600;
}
.hero__locale svg { width: 16px; height: 16px; color: #9cc2ff; }

/* Entrada em stagger curto (~500–800ms), só com JS ativo. */
.js .hero-copy > * { opacity: 0; transform: translateY(14px); animation: heroIn .55s cubic-bezier(.2,.7,.2,1) forwards; }
.js .hero-copy > :nth-child(1) { animation-delay: .05s; }
.js .hero-copy > :nth-child(2) { animation-delay: .13s; }
.js .hero-copy > :nth-child(3) { animation-delay: .21s; }
.js .hero-copy > :nth-child(4) { animation-delay: .29s; }
.js .hero-copy > :nth-child(5) { animation-delay: .37s; }
.js .hero__locale { opacity: 0; animation: heroIn .6s ease .5s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 112px; display: flex; align-items: center; gap: 14px; padding: 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item__icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: .8rem; color: var(--blue-700); background: var(--blue-50); }
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: .98rem; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: .84rem; }

.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 26px rgba(3,23,47,.045);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--blue-900); }
.service-card:hover { transform: translateY(-5px); border-color: var(--blue-700); box-shadow: var(--shadow-md); }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 1rem; color: var(--blue-700); background: var(--blue-50); }
.service-card__icon svg { width: 27px; height: 27px; }
.service-card p { margin: 14px 0 20px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; color: var(--blue-700); font-family: var(--font-display); font-weight: 700; }
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 7vw, 88px); align-items: center; }
.feature-split--reverse { grid-template-columns: 1.1fr .9fr; }
.feature-copy .lead { margin: 18px 0 26px; }
.feature-media { position: relative; }
.feature-media__main { overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.feature-media__main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-media__badge { position: absolute; right: -22px; bottom: 24px; max-width: 250px; padding: 18px; border-radius: 1rem; color: #fff; background: linear-gradient(145deg, var(--blue-700), var(--blue-950)); box-shadow: var(--shadow-md); }
.feature-media__badge strong { display: block; margin-bottom: 4px; }
.list-check { display: grid; gap: 12px; padding: 0; margin: 0 0 28px; list-style: none; }
.list-check li { position: relative; padding-left: 30px; color: var(--muted); }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue-700); font-size: .75rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(40px, 6vw, 80px); }
.process-intro { position: sticky; top: calc(var(--header-height) + 28px); align-self: start; }
.process-intro .lead { margin: 18px 0 24px; }
.process-note { padding: 22px; border-radius: var(--radius-md); color: #fff; background: linear-gradient(145deg, var(--blue-700), var(--blue-900)); box-shadow: var(--shadow-sm); }
.process-note strong { display: block; font-size: 1.14rem; }
.process-note span { display: block; margin-top: 4px; color: rgba(255,255,255,.76); font-size: .9rem; }
.timeline { position: relative; display: grid; gap: 14px; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 22px; bottom: 22px; width: 2px; background: var(--line); }
.timeline-step { position: relative; min-height: 94px; display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 18px 22px 18px 0; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.timeline-step__number { position: relative; z-index: 1; width: 56px; height: 56px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--blue-700); font-family: var(--font-display); font-weight: 700; }
.timeline-step h3 { margin-top: 2px; font-size: 1.08rem; }
.timeline-step p { margin: 7px 0 0; color: var(--muted); font-size: .94rem; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 190px; gap: 12px; }
.gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: var(--radius-md); background: var(--surface-soft); }
.gallery figure:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery figure:nth-child(2) { grid-column: span 4; }
.gallery figure:nth-child(3) { grid-column: span 3; }
.gallery figure:nth-child(4) { grid-column: span 3; }
.gallery figure:nth-child(5) { grid-column: span 4; }
.gallery figure:nth-child(6) { grid-column: span 7; }
.gallery figure:nth-child(7) { grid-column: span 5; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; inset: auto 0 0; padding: 32px 15px 13px; color: #fff; background: linear-gradient(transparent, rgba(3,23,47,.78)); font-size: .84rem; font-weight: 730; opacity: 0; transition: opacity .25s ease; }
.gallery figure:hover figcaption { opacity: 1; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.catalog-card { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); }
.catalog-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.catalog-card__body { padding: 22px; }
.catalog-card p { margin: 10px 0 18px; color: rgba(255,255,255,.7); }
.catalog-card .text-link { color: #acc7ff; }

/* ============================================================
   Carrossel de soluções (dobra "O equipamento certo…") — slides
   landscape de largura confortável, alturas iguais, arraste/scroll-snap.
   ============================================================ */
.carousel { position: relative; margin-top: 44px; }
.carousel__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
/* scroll-snap é ativado por JS só APÓS o load: aplicado no carregamento inicial, o snap
   dispara um scroll que invalida o LCP no Chrome (a página ficava sem LCP mensurável). */
.carousel__viewport.is-snapping { scroll-snap-type: x mandatory; }
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible { outline: 2px solid #9cc2ff; outline-offset: 4px; border-radius: var(--radius-lg); }
.carousel__track { display: flex; gap: 22px; margin: 0; padding: 4px; list-style: none; }
.cat-slide { flex: 0 0 clamp(280px, 42%, 460px); scroll-snap-align: start; }
.cat-slide > article {
  height: 100%; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  transition: border-color .25s ease, transform .25s ease;
}
.cat-slide > article:hover { border-color: rgba(156,194,255,.45); transform: translateY(-4px); }
.cat-slide__media { aspect-ratio: 3 / 2; overflow: hidden; }
.cat-slide__media picture, .cat-slide__media img { display: block; width: 100%; height: 100%; }
.cat-slide__media img { object-fit: cover; }
.cat-slide__media .catalog-poster { aspect-ratio: 3 / 2; height: 100%; gap: 16px; padding: 22px; }
.cat-slide__media .catalog-poster__icon { width: 46px; height: 46px; }
.cat-slide__body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 24px; }
.cat-slide__body h3 { color: #fff; }
.cat-slide__body p { margin: 0; color: rgba(255,255,255,.7); }
.cat-slide__body .text-link { margin-top: auto; padding-top: 6px; color: #acc7ff; }

.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel__arrow {
  width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  background: rgba(255,255,255,.06); color: #fff; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.carousel__arrow:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__dots { display: flex; align-items: center; gap: 8px; }
.carousel__dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.3); cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.carousel__dots button[aria-current="true"] { width: 26px; background: #9cc2ff; }

/* Tile de categoria no lugar de uma foto (não há foto real de consumíveis).
   Mesmo padrão do sistema: fundo escuro azulado, malha técnica e ícone da marca. */
.catalog-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 28px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(17,92,185,.35), transparent 60%), linear-gradient(160deg, var(--blue-950), var(--surface-dark));
}
.catalog-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(172,199,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(172,199,255,.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%);
}
.catalog-poster__icon { position: relative; width: 60px; height: 60px; color: #acc7ff; }
.catalog-poster__chips { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 300px; }
.catalog-poster__chips span {
  padding: .34rem .7rem;
  border: 1px solid rgba(172,199,255,.28);
  border-radius: 999px;
  color: #d7e2ff;
  background: rgba(172,199,255,.08);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.stat strong { display: block; color: var(--blue-800); font-size: 1.25rem; }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: .9rem; }

.brand-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-panel__item { padding: 32px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
/* h2 por hierarquia semântica, mantendo o tamanho visual de subtítulo do card */
.brand-panel__item h2, .brand-panel__item h3 { margin-bottom: 12px; font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.02em; }
.brand-panel__item p { color: var(--muted); }

.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 6px 18px rgba(3,23,47,.035); }
.faq-list summary { position: relative; min-height: 66px; display: flex; align-items: center; padding: 18px 56px 18px 20px; cursor: pointer; font-weight: 780; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-50); transform: translateY(-50%); font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.cta-band { color: #fff; background: var(--blue-700); }
.cta-band__inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { max-width: 680px; }
.cta-band p { max-width: 620px; margin: 13px 0 0; color: rgba(255,255,255,.82); }
.cta-band .btn-row { flex: 0 0 auto; }

.subhero { position: relative; overflow: hidden; padding: 72px 0 78px; background: linear-gradient(180deg, #fff, var(--surface)); }
.subhero::before { content: ""; position: absolute; top: -200px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(47,141,244,.18), transparent 67%); }
.subhero-grid { position: relative; display: grid; grid-template-columns: 1fr .85fr; gap: 60px; align-items: center; }
.subhero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.subhero .lead { margin: 22px 0 30px; }
.subhero-media { overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.subhero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.service-detail__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.service-detail__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: .9rem; color: var(--blue-700); background: var(--blue-50); }
.service-detail__icon svg { width: 24px; height: 24px; }
.service-detail p { color: var(--muted); }
.service-detail ul { padding-left: 18px; margin-bottom: 0; color: var(--muted); }
.service-detail li + li { margin-top: 8px; }

.dark-feature { padding: 64px; border-radius: var(--radius-xl); color: #fff; background: var(--surface-dark); box-shadow: var(--shadow-lg); }
.dark-feature-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 50px; align-items: center; }
.dark-feature p { color: rgba(255,255,255,.72); }
.dark-feature img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.plan--featured { border-color: var(--blue-700); box-shadow: var(--shadow-md); }
.plan-badge { position: absolute; top: -13px; left: 24px; padding: .4rem .65rem; border-radius: 999px; color: #fff; background: var(--blue-700); font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.plan h3 { margin-bottom: 10px; }
.plan p { color: var(--muted); }
.plan ul { display: grid; gap: 10px; padding: 0; margin: 22px 0 28px; list-style: none; }
.plan li { position: relative; padding-left: 25px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-700); font-weight: 900; }

.video-shell { overflow: hidden; border-radius: var(--radius-xl); background: var(--surface-dark); box-shadow: var(--shadow-lg); }
.video-shell video { width: 100%; max-height: 680px; object-fit: cover; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 20px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.contact-item__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: .8rem; color: var(--blue-700); background: var(--blue-50); }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { display: block; margin-top: 3px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--muted); font-family: var(--font-display); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  color: var(--ink);
  background: #fff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(47,141,244,.15); }
.form-help { margin: 14px 0 0; color: var(--muted); font-size: .82rem; }
.map-placeholder { min-height: 360px; display: grid; place-items: center; padding: 30px; border: 1px dashed var(--line); border-radius: var(--radius-lg); text-align: center; background: var(--blue-50); }
.map-placeholder svg { width: 42px; height: 42px; margin: 0 auto 12px; color: var(--blue-700); }
.map-placeholder p { max-width: 430px; margin: 10px auto 18px; color: var(--muted); }
.map-frame { width: 100%; min-height: 420px; border: 0; border-radius: var(--radius-lg); }

.footer { color: rgba(255,255,255,.78); background: var(--surface-dark); }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 34px; padding: 64px 0 44px; }
.footer-brand img { width: 240px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 350px; color: rgba(255,255,255,.64); }
.footer h3 { margin-bottom: 18px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a, .footer-contact span { display: flex; gap: .6rem; color: rgba(255,255,255,.68); }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 auto; color: #acc7ff; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .83rem; }
.footer-bottom a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }
.socials { display: flex; gap: 8px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: .7rem; }
.socials svg { width: 19px; height: 19px; }

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 990;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 1rem;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(3,23,47,.24);
  backdrop-filter: blur(18px);
}
.mobile-cta .btn { min-height: 48px; padding-inline: .8rem; font-size: .86rem; }

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: min(420px, calc(100% - 40px));
  display: none;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem;
  color: #fff;
  background: rgba(3,23,47,.96);
  box-shadow: var(--shadow-lg);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 14px; color: rgba(255,255,255,.75); font-size: .88rem; }
.cookie-banner p a { color: #acc7ff; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: .6rem .85rem; border: 1px solid rgba(255,255,255,.2); border-radius: .65rem; color: #fff; background: transparent; cursor: pointer; font-weight: 700; }
.cookie-actions .accept { border-color: transparent; background: var(--blue-600); }

/* A animação de entrada só existe quando o JavaScript confirma que está ativo (classe .js no <html>).
   Sem JS, com JS bloqueado ou se main.js falhar, o conteúdo permanece visível. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(47,141,244,.55); outline-offset: 3px; }

@media (max-width: 1024px) {
  :root { --header-height: 74px; }
  .site-nav { position: fixed; inset: calc(var(--header-height) + 38px) 0 0; display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 20px; background: rgba(255,255,255,.98); }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: space-between; min-height: 52px; padding-inline: 16px; }
  .menu-button { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .subhero-grid { grid-template-columns: 1fr; }
  .hero { min-height: clamp(560px, 70vh, 680px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards--3, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split, .feature-split--reverse, .dark-feature-grid { grid-template-columns: 1fr; }
  .feature-split--reverse .feature-media { order: 2; }
  /* o recuo negativo do selo estoura a viewport entre 768px e 1024px */
  .feature-media__badge { right: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .section--compact { padding: 56px 0; }
  .announcement__inner { min-height: 42px; font-size: .76rem; }
  .brand img { width: 168px; }
  /* HERO mobile: altura contida, vídeo mais recortado no técnico e overlay mais forte. */
  .hero { min-height: clamp(540px, 82vh, 660px); }
  .hero__poster, .hero__video { object-position: 70% center; }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(5,12,18,.93) 0%, rgba(5,12,18,.8) 52%, rgba(5,12,18,.55) 100%),
      linear-gradient(180deg, rgba(5,12,18,.35) 0%, rgba(5,12,18,0) 34% 66%, rgba(5,12,18,.45) 100%);
  }
  .hero-copy h1 { line-height: 1.05; }
  .hero-copy .lead { margin: 18px 0 26px; }
  .btn-row { display: grid; grid-template-columns: 1fr; }
  .hero-trust { gap: 10px 16px; margin-top: 26px; }
  .hero-trust li + li { padding-left: 16px; }
  .hero__locale { display: none; }
  .trust-grid, .cards--3, .cards--2, .catalog-grid, .service-detail-grid, .plans, .brand-panel, .form-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-card { min-height: 245px; padding: 24px; }
  .feature-media__badge { right: 12px; bottom: 12px; }
  .timeline-step { grid-template-columns: 46px 1fr; gap: 15px; padding: 16px 16px 16px 0; }
  .timeline-step__number { width: 46px; height: 46px; }
  .timeline::before { left: 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery figure, .gallery figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery figcaption { opacity: 1; }
  .stats { grid-template-columns: 1fr; }
  .dark-feature { padding: 30px 22px; }
  .cta-band__inner { min-height: 310px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .cta-band .btn-row { width: 100%; }
  .footer-main { grid-template-columns: 1fr; padding-bottom: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0 100px; }
  .mobile-cta { display: grid; }
  .cookie-banner { bottom: 86px; }
  /* alvos de toque mais confortáveis no celular sem alterar o desktop */
  .text-link, .footer-links a, .footer-contact a, .footer-bottom a, .contact-item a { padding-block: 10px; }
  .footer-links, .footer-contact { gap: 2px; }
  .form-field--full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero-copy > *, .js .hero__locale { opacity: 1; transform: none; animation: none; }
}

