/* ============================================================
   LIMIAR DE RUPTURA — Site (produção, estático)
   Sistema de duas vozes · bordas duras · um vermelho.
   Tokens reproduzidos do design system; zero dependência de CDN
   além das webfonts do Google Fonts.
   Tagline: Ultrapassar é o ponto de partida.
   ============================================================ */

/* RUPTURA — grotesco industrial */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Archivo+Black&display=swap');
/* NARRATIVA — serifa editorial + prosa humanista */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400;1,9..40,500&display=swap');

/* ---------------------------------------------------------------
   TOKENS
   --------------------------------------------------------------- */
:root {
  /* reds */
  --red-ruptura: #CC0507;
  --red-brasa:   #FA3335;
  --red-sangue:  #860305;
  /* neutrals */
  --preto: #060608;
  --bone:  #F0EFEA;
  --bone-300: #C4C3BD;
  --bone-500: #A0A09A;
  --bone-700: #6A6A66;
  /* ink ramp */
  --ink-850: #0D0D0D;
  --ink-800: #141414;
  --ink-750: #1A1A1A;
  --ink-700: #222224;
  /* hairlines */
  --line: #2A2A2A;
  --line-soft: rgba(240,239,234,.10);
  /* gradient */
  --grad-ruptura: linear-gradient(165deg, #860305 0%, #CC0507 50%, #FA3335 100%);
  /* nav glass */
  --nav-scrim: rgba(6,6,8,.92);
  /* light label seen on dark CTAs/links in the prototype */
  --ice: #D7E2EA;

  /* fonts */
  --font-display:   'Archivo Black', 'Arial Black', 'Impact', system-ui, sans-serif;
  --font-body:      'Archivo', 'Arial', 'Helvetica Neue', system-ui, sans-serif;
  --font-editorial: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-quote:     'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-prose:     'DM Sans', 'Archivo', system-ui, sans-serif;
  --font-mono:      ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* layout */
  --container: 1100px;
  --gutter: 40px;

  /* motion */
  --ease-out: cubic-bezier(.2,.7,.3,1);
  --ease-rev: cubic-bezier(.25,.1,.25,1);
}

/* ---------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--preto); }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--red-ruptura); color: #fff; }

/* metal heading — ecoa o monograma facetado em metal */
.metal {
  background: linear-gradient(180deg, #5E6166 0%, #F0EFEA 64%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--red-ruptura);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--red-ruptura);
  display: inline-block;
}

/* ---------------------------------------------------------------
   REVEAL (FadeIn) — controlado por JS via [data-reveal]
   --------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(var(--rx,0), var(--ry,30px), 0);
  transition: opacity .7s var(--ease-rev), transform .7s var(--ease-rev);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* ---------------------------------------------------------------
   BOTÕES
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex: 0 0 auto; }

.btn--wa {
  background: var(--red-ruptura);
  color: #fff;
  padding: 16px 32px;
  font-size: clamp(.72rem, 1.1vw, .95rem);
  transition: transform .18s var(--ease-out), background-color .18s var(--ease-out);
}
.btn--wa:hover { background: var(--red-brasa); transform: translateY(-1px); }
.btn--wa:active { background: var(--red-sangue); transform: translateY(0); }

.btn--dark {
  background: var(--preto);
  color: var(--bone);
  padding: 16px 40px;
  font-size: clamp(.78rem, 1vw, 1rem);
  transition: transform .18s var(--ease-out), background-color .18s var(--ease-out);
}
.btn--dark:hover { background: var(--ink-750); transform: translateY(-1px); }
.btn--dark:active { transform: translateY(0); }

.btn--ghost {
  border: 2px solid var(--ice);
  color: var(--ice);
  padding: 14px 32px;
  font-size: clamp(.82rem, 1vw, 1rem);
  background: transparent;
  transition: background-color .18s var(--ease-out);
}
.btn--ghost:hover { background: rgba(215,226,234,.10); }

/* ---------------------------------------------------------------
   NAV
   --------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background-color .25s var(--ease-out), border-color .25s var(--ease-out), backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: var(--nav-scrim);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { width: 34px; height: auto; }
.nav__word {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--bone);
}
.nav__word .dot { color: var(--red-ruptura); }
.nav__word .de  { color: var(--bone-500); }
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ice);
  font-size: clamp(.8rem, 1vw, 1.02rem);
  transition: opacity .2s var(--ease-out);
}
.nav__links a:hover { opacity: .7; }
@media (max-width: 720px) {
  .nav__word { display: none; }
  .nav__links { gap: 18px; }
}
@media (max-width: 560px) {
  .nav { padding: 14px 18px; gap: 12px; }
  .nav__brand img { width: 28px; }
  .nav__links { gap: 14px; }
  .nav__links a { font-size: 11px; letter-spacing: .04em; }
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 64px;
  overflow-x: clip;
}
.hero__eyebrow {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 700;
  color: var(--red-ruptura);
  text-align: center;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  margin-bottom: 8px;
}
.hero__stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mono {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__mono img {
  width: clamp(140px, 22vw, 300px);
  height: auto;
  /* fundo já recortado (alpha real) — sem necessidade de blend frágil */
  user-select: none;
  -webkit-user-drag: none;
}
.hero__title {
  position: relative;
  z-index: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.02em;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  font-size: clamp(4rem, 17vw, 17rem);
}
.hero__foot {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container);
  margin: 48px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--ice);
  max-width: 270px;
  font-size: clamp(.75rem, 1.3vw, 1.4rem);
}
@media (max-width: 560px) {
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ---------------------------------------------------------------
   MARQUEE — tipografia cinética dirigida por scroll
   --------------------------------------------------------------- */
.marquee {
  background: var(--preto);
  padding: 96px 0 40px;
  overflow: hidden;
}
.marquee__rows { display: flex; flex-direction: column; gap: 12px; }
.marquee__row { display: flex; gap: 12px; width: max-content; will-change: transform; }
.mtile {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 0 48px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(1.6rem, 3vw, 3rem);
  color: var(--bone);
  white-space: nowrap;
}
.mtile--fill { background: var(--ink-800); }
.mtile--accent { color: var(--red-ruptura); border-color: var(--red-sangue); }

/* ---------------------------------------------------------------
   MEDIA (imagens) — tratamento dessaturado on-brand
   --------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-850);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.9);
  transition: filter .5s var(--ease-out), transform .8s var(--ease-out);
}
.media:hover img { filter: grayscale(.35) contrast(1.05) brightness(.96); transform: scale(1.02); }
.media--rule { border-top: 2px solid var(--red-ruptura); }
/* dark vignette for legibility */
.media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,8,.05) 0%, rgba(6,6,8,.55) 100%);
  pointer-events: none;
}
.media__tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--bone-300);
  display: inline-flex; align-items: center; gap: 8px;
}
.media__tag::before {
  content: ""; width: 6px; height: 6px; background: var(--red-ruptura); display: inline-block;
}

/* ---------------------------------------------------------------
   PROBLEMA
   --------------------------------------------------------------- */
.problema {
  background: var(--preto);
  padding: 100px var(--gutter);
}
.problema__inner { max-width: var(--container); margin: 0 auto; }
.problema__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.problema__kicker { margin-bottom: 28px; }
.problema__head {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--bone);
  font-size: clamp(2rem, 5.5vw, 4.4rem);
}
.problema__turn {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--red-ruptura);
  line-height: 1;
  letter-spacing: -.01em;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  margin-top: 6px;
}
.problema__body {
  font-family: var(--font-prose);
  font-weight: 400;
  color: var(--bone-500);
  line-height: 1.7;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 30ch;
  margin-top: 28px;
}
.problema__media { aspect-ratio: 3 / 2; }

.problema__split {
  margin-top: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.problema__media2 { aspect-ratio: 13 / 10; }
.problema__sub2 .problema__head { font-size: clamp(1.6rem, 4vw, 3rem); }

/* "multidao" tipografica — grade de marcas iguais, so VOCE em vermelho.
   Substitui a antiga foto (direitos autorais) sem deixar buraco. */
.crowd {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  align-content: center;
  justify-items: center;
  gap: clamp(8px, 1.6vw, 16px) clamp(4px, .9vw, 9px);
  padding: clamp(20px, 4vw, 40px);
  background: var(--ink-850);
}
.crowd::after { background: linear-gradient(180deg, rgba(6,6,8,0) 55%, rgba(6,6,8,.45) 100%); }
.crowd__u {
  width: clamp(3px, .5vw, 5px);
  height: clamp(14px, 2.2vw, 24px);
  background: var(--bone-500);
  opacity: .22;
  transform: translateY(0);
  transition: opacity .5s var(--ease-out), background-color .5s var(--ease-out);
}
.crowd:hover .crowd__u { opacity: .12; }
.crowd__u--me {
  background: var(--red-ruptura);
  opacity: 1;
  height: clamp(18px, 2.8vw, 30px);
  box-shadow: 0 0 0 1px rgba(204,5,7,.35), 0 0 18px 2px rgba(204,5,7,.45);
}
.crowd:hover .crowd__u--me { opacity: 1; }

@media (max-width: 820px) {
  .problema__grid, .problema__split { grid-template-columns: 1fr; }
  .problema__split { direction: ltr; }
  .problema__media, .problema__media2 { aspect-ratio: 3/2; }
}

/* ---------------------------------------------------------------
   SOBRE / NARRATIVA
   --------------------------------------------------------------- */
.sobre {
  position: relative;
  padding: 120px var(--gutter);
  overflow: hidden;
}
.sobre__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  text-align: center;
}
.sobre__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.02em;
  font-size: clamp(3rem, 12vw, 160px);
}
.sobre__manifesto {
  font-family: var(--font-prose);
  font-weight: 500;
  line-height: 1.65;
  color: var(--ice);
  max-width: 580px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}
.sobre__manifesto .ch { transition: opacity .05s linear; }
.sobre__quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  color: var(--bone-300);
  max-width: 640px;
  line-height: 1.25;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
}
.sobre__quote em { color: var(--red-ruptura); font-style: italic; }
.sobre__media {
  width: 100%;
  max-width: 880px;
  aspect-ratio: 5 / 2;
}

/* ---------------------------------------------------------------
   SERVIÇOS  (faixa bone)
   --------------------------------------------------------------- */
.servicos {
  background: var(--bone);
  color: var(--preto);
  padding: clamp(80px, 12vw, 128px) var(--gutter);
}
.servicos__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: var(--preto);
  margin-bottom: clamp(56px, 8vw, 112px);
  font-size: clamp(3rem, 12vw, 160px);
}
.servicos__list { max-width: 980px; margin: 0 auto; }
.srv {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid rgba(12,12,12,.15);
}
.srv:last-child { border-bottom: 1px solid rgba(12,12,12,.15); }
.srv__num {
  font-family: var(--font-display);
  line-height: .9;
  flex: 0 0 auto;
  color: var(--preto);
  font-size: clamp(2.4rem, 10vw, 140px);
}
.srv__name {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
  font-size: clamp(1rem, 2.2vw, 2.1rem);
}
.srv__desc {
  font-family: var(--font-prose);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(12,12,12,.62);
  max-width: 60ch;
  font-size: clamp(.85rem, 1.6vw, 1.25rem);
}
.srv__copy { padding-top: 6px; }

/* ---------------------------------------------------------------
   SERVIÇOS — HOME (cards clicaveis: core em destaque + resto)
   --------------------------------------------------------------- */
.servicos__lead {
  font-family: var(--font-prose);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(12,12,12,.66);
  max-width: 56ch;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
}
.srv-core {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
}
.srv-group__label {
  max-width: 1000px;
  margin: clamp(56px, 8vw, 96px) auto clamp(24px, 3vw, 36px);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: rgba(12,12,12,.5);
  display: flex;
  align-items: center;
  gap: 14px;
}
.srv-group__label::before {
  content: ""; width: 28px; height: 2px; background: var(--red-ruptura); flex: 0 0 auto;
}
.srv-rest {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.srv-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(12,12,12,.18);
  background: transparent;
  color: var(--preto);
  transition: background-color .22s var(--ease-out), color .22s var(--ease-out),
              transform .22s var(--ease-out), border-color .22s var(--ease-out);
}
.srv-card:hover {
  background: var(--preto);
  color: var(--bone);
  border-color: var(--preto);
  transform: translateY(-3px);
}
.srv-card__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--red-ruptura);
}
.srv-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}
.srv-card__desc {
  font-family: var(--font-prose);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(12,12,12,.6);
  font-size: clamp(.9rem, 1.3vw, 1.02rem);
  transition: color .22s var(--ease-out);
}
.srv-card:hover .srv-card__desc { color: var(--bone-300); }
.srv-card__cta {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--red-ruptura);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.srv-card:hover .srv-card__cta { color: var(--red-brasa); }
.srv-card--core {
  border-top: 2px solid var(--red-ruptura);
  padding: clamp(32px, 4vw, 52px);
}
.srv-card--core .srv-card__name { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.srv-card--core .srv-card__desc { font-size: clamp(.95rem, 1.5vw, 1.18rem); max-width: 42ch; }
@media (max-width: 820px) {
  .srv-rest { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .srv-core, .srv-rest { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   PÁGINA DE SERVIÇO (subpaginas)
   --------------------------------------------------------------- */
.spage-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) var(--gutter) clamp(40px, 6vw, 72px);
}
.spage-hero__eyebrow { margin-bottom: 26px; }
.spage-hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--bone);
  font-size: clamp(2.6rem, 8vw, 6.5rem);
}
.spage-hero__lead {
  font-family: var(--font-prose);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ice);
  max-width: 46ch;
  margin: clamp(24px, 3vw, 36px) 0 clamp(32px, 4vw, 44px);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}
.spage-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
}
.spage-section--line { border-top: 1px solid var(--line); }
.spage-section__head {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--bone);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 14px;
}
.spage-section__sub {
  font-family: var(--font-prose);
  color: var(--bone-500);
  line-height: 1.7;
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.spage-section__sub:last-child { margin-bottom: 0; }

/* combos Light / Padrão / Premium */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}
.combo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--ink-800);
  height: 100%;
}
.combo--feature {
  border-top: 2px solid var(--red-ruptura);
  background: var(--ink-750);
  box-shadow: 0 0 0 1px rgba(204,5,7,.25), 0 24px 60px -30px rgba(204,5,7,.5);
}
.combo__flag {
  position: absolute;
  top: -11px; left: clamp(26px, 3vw, 38px);
  background: var(--red-ruptura);
  color: #fff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  padding: 5px 10px;
}
.combo__tier {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: var(--red-ruptura);
}
.combo__name {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.1;
  color: var(--bone);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-top: -6px;
}
.combo__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.combo__price .from {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  color: var(--bone-700);
}
.combo__price .val {
  font-family: var(--font-display);
  color: var(--bone);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1;
}
.combo__price .per {
  font-family: var(--font-prose);
  font-size: .82rem;
  color: var(--bone-500);
}
.combo--feature .combo__price .val { color: var(--red-brasa); }
.combo__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.combo__list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-prose);
  font-weight: 400;
  line-height: 1.5;
  color: var(--bone-300);
  font-size: clamp(.92rem, 1.3vw, 1.05rem);
}
.combo__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 11px; height: 2px;
  background: var(--red-ruptura);
}
.combo__note {
  font-family: var(--font-prose);
  font-style: italic;
  color: var(--bone-700);
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 4px;
}
.combo__note a {
  color: var(--red-brasa);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.combo__note strong { color: var(--bone-300); font-weight: 600; }
.combo__cta { margin-top: 8px; }
@media (max-width: 820px) {
  .combo-grid { grid-template-columns: 1fr; }
}

/* explicador de investimento — verba de mídia x gestão */
.invest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.invest__part {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red-ruptura);
  background: var(--ink-800);
}
.invest__tag {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--red-ruptura);
}
.invest__desc {
  font-family: var(--font-prose);
  color: var(--bone-300);
  line-height: 1.65;
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  margin: 0;
}
.invest__desc strong { color: var(--bone); font-weight: 600; }
.invest--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) {
  .invest { grid-template-columns: 1fr; }
  .invest--three { grid-template-columns: 1fr; }
}

/* tipos de conteúdo — mix estratégico */
.ctypes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}
.ctype {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red-ruptura);
  background: var(--ink-800);
}
.ctype__tag {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: var(--red-ruptura);
}
.ctype__desc {
  font-family: var(--font-prose);
  color: var(--bone-300);
  line-height: 1.55;
  font-size: clamp(.9rem, 1.3vw, 1rem);
  margin: 0;
}

/* como funciona — etapas */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
  counter-reset: step;
}
.step { border-top: 1px solid var(--line); padding-top: 20px; }
.step__n {
  font-family: var(--font-display);
  color: var(--red-ruptura);
  line-height: 1;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.step__t {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--bone);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  margin-bottom: 8px;
}
.step__d {
  font-family: var(--font-prose);
  color: var(--bone-500);
  line-height: 1.6;
  font-size: clamp(.85rem, 1.2vw, 1rem);
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* voltar pra home */
.spage-back {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 7vw, 80px);
}
.spage-back a {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--bone-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s var(--ease-out);
}
.spage-back a:hover { color: var(--bone); }

/* ---------------------------------------------------------------
   CONTATO  (faixa vermelha)
   --------------------------------------------------------------- */
.contato {
  background: var(--red-ruptura);
  color: var(--preto);
  padding: clamp(80px, 11vw, 112px) var(--gutter);
}
.contato__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.contato__head {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--preto);
  font-size: clamp(2.2rem, 7vw, 6rem);
}
.contato__foot {
  font-family: var(--font-mono);
  text-transform: uppercase;
  text-align: center;
  margin-top: 64px;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(6,6,8,.6);
}

/* ---------------------------------------------------------------
   reduced motion
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .media:hover img { transform: none; }
  .btn--wa:hover, .btn--dark:hover { transform: none; }
}
