/* =========================================================
   JustHelp SoluTI — Design System (v2 "Hormozi")
   Stack: HTML/CSS/JS puro · Tipografia: Space Grotesk + Inter
   Direção: dark, alto contraste, tipografia gigante em caixa-alta,
   vermelho como soco + amarelo marca-texto, cards brutalistas
   com borda grossa e sombra dura. Conversão acima de tudo.
   ========================================================= */

/* ---------------------------------------------------------
   0. FONTES (self-hosted · woff2 · variable)
--------------------------------------------------------- */
@font-face {
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 500 700; font-display: swap;
  src: url(assets/fonts/space-grotesk-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 500 700; font-display: swap;
  src: url(assets/fonts/space-grotesk-500-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(assets/fonts/inter-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(assets/fonts/inter-400-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------------------------------------------------
   1. TOKENS
--------------------------------------------------------- */
:root {
  /* Fundos (quase preto, em camadas) */
  --bg:       #0A0A0B;
  --bg-2:     #121214;
  --bg-3:     #1A1A1E;
  --bg-soft:  #0F0F11;

  /* Marca */
  --brand-red:     #FF3B30;   /* vermelho mais elétrico p/ fundo escuro */
  --brand-red-700: #D81F17;
  --brand-navy:    #0F1D33;

  /* Acento Hormozi: amarelo marca-texto */
  --accent:        #FFD23F;
  --accent-700:    #F4B400;
  --accent-ink:    #0A0A0B;   /* texto sobre o amarelo */

  /* Texto */
  --ink:    #FFFFFF;   /* títulos */
  --text:   #C9CBD1;   /* corpo */
  --muted:  #9498A1;   /* secundário */
  --faint:  #6B6F78;   /* terciário */

  /* Linhas / bordas */
  --line:   rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --line-3: rgba(255,255,255,.22);

  --surface: #131316;

  /* Tints */
  --tint-red:    rgba(255, 59, 48, .12);
  --tint-accent: rgba(255, 210, 63, .14);

  /* Sucesso (mocks) */
  --ok: #2EE6A6;

  /* Tipografia */
  --font-head: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Raios (mais retos = mais brutalista) */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-pill: 999px;

  /* Sombras duras (offset sólido, sem blur) + glow */
  --hard:      6px 6px 0 0 #000;
  --hard-red:  6px 6px 0 0 var(--brand-red);
  --hard-acc:  6px 6px 0 0 var(--accent);
  --glow-red:  0 18px 50px rgba(255, 59, 48, .35);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.6);

  /* Movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Layout */
  --maxw: 1180px;
  --pad: 24px;
  --header-h: 76px;
}

/* ---------------------------------------------------------
   2. RESET / BASE
--------------------------------------------------------- */
*, *::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;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv05", "cv11", "ss01";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  text-transform: uppercase;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.hero-copy, .hero-visual, .combo-copy, .combo-panel,
.service-content, .service-visual, .contact-copy { min-width: 0; }

/* Marca-texto: ênfase estilo Hormozi (palavra sobre bloco amarelo) */
.mark {
  background: var(--accent); color: var(--accent-ink);
  padding: 0 .14em; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  border-radius: 3px;
}
.mark-red { background: var(--brand-red); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-ink); padding: 12px 18px; border-radius: 0 0 10px 0;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------------------------------------------------------
   3. RITMO DE SEÇÃO + HEADINGS
--------------------------------------------------------- */
section { position: relative; }
.services, .combo, .fit, .faq { padding-block: clamp(72px, 11vw, 150px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow-line { width: 28px; height: 2px; background: var(--brand-red); opacity: 1; }
.eyebrow-light { color: var(--accent); }

.section-head { max-width: 820px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head h2 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: -0.03em; }
.section-lead { color: var(--muted); font-size: 1.14rem; margin: 20px 0 0; max-width: 62ch; text-transform: none; }

/* ---------------------------------------------------------
   4. MARCA (escudo + wordmark)
--------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 10px; background: var(--bg-3);
  border: 1.5px solid var(--line-3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.brand:hover .brand-mark { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 0 var(--brand-red); }
.brand-shield { width: 26px; height: auto; }
.brand-shield-lg { width: 64px; }

.sh-body { fill: none; stroke: var(--accent); stroke-width: 2.5; }
.sh-chip { fill: var(--tint-red); stroke: var(--brand-red); stroke-width: 2.5; }
.sh-line { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; }
.sh-dot  { fill: var(--accent); }
.is-light .sh-body { stroke: var(--accent); }
.is-light .sh-line { stroke: var(--accent); }
.is-light .sh-dot  { fill: var(--accent); }
.is-light .sh-chip { stroke: var(--brand-red); fill: var(--tint-red); }

.brand-word {
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: 1.35rem; letter-spacing: -0.03em; line-height: 1; white-space: nowrap;
  text-transform: uppercase;
}
.brand-word .w-just, .brand-word .w-solu { color: #fff; }
.brand-word .w-help, .brand-word .w-ti   { color: var(--brand-red); }
.brand-word .w-solu { margin-left: 2px; }
.brand-word-light .w-just, .brand-word-light .w-solu { color: #fff; }

/* ---------------------------------------------------------
   5. BOTÕES + LINKS
--------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1;
  text-transform: uppercase; letter-spacing: .02em;
  padding: 1em 1.6em; border-radius: var(--r-md); border: 2px solid transparent;
  cursor: pointer; white-space: normal; text-align: center; max-width: 100%; position: relative;
  transition: transform .16s var(--ease), box-shadow .24s var(--ease), background-color .2s var(--ease);
}
.btn-whats {
  background: var(--brand-red); color: #fff; border-color: var(--brand-red);
  box-shadow: var(--hard);
}
.btn-whats:hover {
  background: var(--brand-red); transform: translate(-2px,-2px);
  box-shadow: 9px 9px 0 0 #000, var(--glow-red);
}
.btn-whats:active { transform: translate(0,0); box-shadow: 3px 3px 0 0 #000; }
.btn-lg { font-size: 1.08rem; padding: 1.05em 1.9em; }
.btn-xl { font-size: 1.18rem; padding: 1.2em 2.2em; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.link-secondary {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  color: var(--ink); padding: .4em 0; position: relative;
}
.link-secondary::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.link-secondary:hover { color: var(--accent); }
.link-secondary:hover::after { transform: scaleX(1); }
.link-secondary .arrow { transition: transform .2s var(--ease); }
.link-secondary:hover .arrow { transform: translateX(3px); }

/* Badge (pill) */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1.5px solid var(--line-3); border-radius: var(--r-pill);
  padding: 7px 16px 7px 13px; font-size: .82rem; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-head);
  margin-bottom: 28px;
}
.badge-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--brand-red);
  box-shadow: 0 0 0 4px var(--tint-red); flex: none;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 0 var(--tint-red);} 50%{ box-shadow:0 0 0 6px rgba(255,59,48,0);} }

/* ---------------------------------------------------------
   6. HEADER + NAV + DRAWER
--------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 11, .72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 11, .9);
  border-bottom-color: var(--line-2);
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.nav-desktop { display: none; gap: 4px; margin-left: auto; }
.nav-desktop a {
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--text);
  text-transform: uppercase; letter-spacing: .04em;
  padding: 9px 14px; border-radius: var(--r-sm); position: relative;
  transition: color .2s ease, background-color .2s ease;
}
.nav-desktop a:hover { color: var(--ink); background: var(--bg-3); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 3px;
  border-radius: 2px; background: var(--accent);
}
.nav-cta { display: none; }

.hamburger {
  margin-left: auto; width: 46px; height: 46px; display: inline-flex; flex-direction: column;
  justify-content: center; gap: 5px; background: var(--bg-3); border: 1.5px solid var(--line-3);
  border-radius: 10px; padding: 0 11px; cursor: pointer;
}
.hamburger span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.66); backdrop-filter: blur(2px); z-index: 110; animation: fade .25s ease; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(84vw, 360px);
  background: var(--bg-2); border-left: 1px solid var(--line-2); z-index: 120; padding: 84px 28px 28px;
  transform: translateX(100%); transition: transform .34s var(--ease-out);
  box-shadow: -16px 0 50px rgba(0,0,0,.6);
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 18px; right: 20px; width: 42px; height: 42px;
  font-size: 30px; line-height: 1; background: none; border: none; color: var(--ink); cursor: pointer; border-radius: 10px;
}
.drawer-close:hover { background: var(--bg-3); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: .02em;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.drawer-nav a:hover { color: var(--accent); }
.drawer-cta { margin-top: 24px; width: 100%; }

@media (max-width: 560px) {
  .hero-actions .btn-whats, .combo-copy .btn-whats, .contact-copy .btn-whats { width: 100%; }
}

/* ---------------------------------------------------------
   7. HERO
--------------------------------------------------------- */
.hero { padding-block: clamp(24px, 4vw, 48px) clamp(48px, 8vw, 104px); overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 70%);
}
.hero-glow {
  position: absolute; top: -200px; right: -140px; width: 680px; height: 680px;
  background: radial-gradient(circle at center, rgba(255, 59, 48, .22), transparent 60%);
  filter: blur(10px);
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: 48px; align-items: center; }
.hero-copy { max-width: 860px; }
.hero h1 { font-size: clamp(2.4rem, 6.2vw, 4.2rem); margin: 0 0 24px; letter-spacing: -0.035em; line-height: 1.12; }
.hero h1 .mark { line-height: 1; }
.hero h1 .lead-in {
  display: block; font-size: .34em; font-weight: 700; color: var(--accent);
  letter-spacing: .04em; margin-bottom: 18px; text-transform: uppercase;
}
.hero h1 .hl { color: var(--brand-red); display: block; }
.hero-sub { font-size: 1.2rem; color: var(--muted); max-width: 56ch; margin: 0 0 34px; text-transform: none; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px;
  padding-top: 28px; border-top: 1px solid var(--line-2);
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--text); font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.hero-trust li::before {
  content: ""; width: 16px; height: 10px; flex: none;
  border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg) translateY(-2px);
}

.hero-visual { display: none; }

/* ---------------------------------------------------------
   7b. FAIXA DE PROVAS (stat strip)
--------------------------------------------------------- */
.stats { background: var(--accent); color: var(--accent-ink); border-block: 3px solid #000; }
.stats-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.stat {
  padding: 26px 20px; text-align: center; position: relative;
}
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 2px; background: rgba(10,10,11,.18); }
.stat b {
  display: block; font-family: var(--font-head); font-weight: 700; line-height: 1;
  font-size: clamp(1.9rem, 5vw, 2.8rem); letter-spacing: -0.03em; color: var(--accent-ink);
}
.stat span { display: block; margin-top: 8px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(10,10,11,.7); }

/* ---------------------------------------------------------
   8. MOCKS DE PRODUTO (dark)
--------------------------------------------------------- */
.mock {
  background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: var(--r-lg);
  box-shadow: var(--hard); padding: 16px; width: 100%;
}
.mock-head { display: flex; align-items: center; gap: 9px; padding: 4px 4px 14px; border-bottom: 1px solid var(--line-2); margin-bottom: 14px; }
.mock-status { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(46, 230, 166, .18); }
.mock-title { font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.mock-chat .mock-body { display: grid; gap: 9px; }
.bubble {
  max-width: 85%; padding: 10px 13px; font-size: .9rem; line-height: 1.45; border-radius: 14px;
}
.bubble-in  { justify-self: start; background: var(--bg-3); color: var(--text); border-bottom-left-radius: 5px; }
.bubble-out { justify-self: end; background: var(--brand-red); color: #fff; border-bottom-right-radius: 5px; }
.mock-flag {
  margin-top: 4px; align-self: start; display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 700; color: var(--accent-ink); text-transform: uppercase; letter-spacing: .03em;
  background: var(--accent); padding: 6px 11px; border-radius: var(--r-pill);
}
.mock-flag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-ink); }

.mock-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.mock-chips span {
  font-size: .74rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .04em;
  background: var(--tint-accent); border-radius: var(--r-pill); padding: 4px 11px;
}
.lead-rows { display: grid; gap: 8px; }
.lead-rows li { display: flex; align-items: center; gap: 12px; padding: 9px; border-radius: var(--r-md); background: var(--bg-soft); border: 1px solid var(--line-2); }
.ava {
  width: 36px; height: 36px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--accent-ink);
  background: var(--accent);
}
.lead-name { display: flex; flex-direction: column; font-size: .9rem; font-weight: 700; color: var(--ink); margin-right: auto; }
.lead-name small { font-weight: 400; font-size: .78rem; color: var(--faint); }
.match { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--ok); background: rgba(46, 230, 166, .12); padding: 4px 9px; border-radius: var(--r-pill); }

.pipe-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mock-pipe--full .pipe-cols { grid-template-columns: repeat(4, 1fr); }
.pipe-col { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 9px; display: grid; gap: 7px; align-content: start; }
.pipe-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); }
.pipe-card { height: 22px; border-radius: 6px; background: var(--bg-3); border: 1px solid var(--line-2); }
.pipe-card--won { background: rgba(46, 230, 166, .16); border-color: rgba(46, 230, 166, .4); }

/* ---------------------------------------------------------
   9. SERVIÇOS (zigue-zague)
--------------------------------------------------------- */
.services { background: var(--bg); }
.service { display: grid; gap: 32px; align-items: center; padding-block: clamp(36px, 5vw, 60px); }
.service + .service { border-top: 1px solid var(--line-2); }
.service-visual { display: grid; place-items: center; }
.service-visual .mock { max-width: 420px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.service:hover .service-visual .mock { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px;
}
.service-eyebrow .num {
  display: grid; place-items: center; min-width: 34px; height: 34px; padding: 0 7px;
  border-radius: 8px; background: var(--brand-red); color: #fff; font-size: .9rem; letter-spacing: 0;
  box-shadow: 3px 3px 0 0 #000;
}
.service-content { max-width: 880px; }
.service-content h3 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.service-content > p { color: var(--muted); margin: 0 0 24px; font-size: 1.08rem; max-width: 60ch; text-transform: none; }

.service-content strong { color: var(--ink); font-weight: 700; }

.ticks { display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: var(--text); }
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: .42em;
  width: 15px; height: 9px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

/* Filtros (chips) */
.filters { margin: 26px 0; }
.filters-label {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chips li {
  font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--text);
  background: var(--bg-3); border: 1.5px solid var(--line-3); border-radius: var(--r-pill);
  padding: 7px 14px; transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.filter-chips li:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-1px); }
.filter-chips li:last-child { color: var(--accent); border-style: dashed; }

/* Subtítulo dentro do serviço */
.service-content p.service-sub {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em; margin: 30px 0 16px; max-width: none;
}

/* Fechamento de impacto */
.service-content p.service-kicker {
  margin: 30px 0 0; max-width: none;
  border-left: 4px solid var(--brand-red); padding: 4px 0 4px 20px;
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35; color: var(--ink); text-transform: none;
}
.service-kicker .mark { display: inline; }


/* ---------------------------------------------------------
   10. COMBO
--------------------------------------------------------- */
.combo { background: var(--bg-soft); border-block: 1px solid var(--line-2); }
.combo-card {
  display: grid; gap: 40px; align-items: center;
  background: var(--bg-2); border: 2px solid var(--line-3); border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 60px); box-shadow: var(--hard); position: relative; overflow: hidden;
}
.combo-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--brand-red), var(--accent));
}
.combo-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 20px; }
.combo-copy > p { color: var(--muted); margin: 0 0 30px; max-width: 50ch; text-transform: none; }

.combo-panel { background: var(--bg); color: #fff; border: 1.5px solid var(--line-3); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 34px); }
.combo-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.combo-panel-title { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.combo-tag { font-size: .72rem; font-weight: 700; color: var(--accent-ink); background: var(--accent); padding: 6px 12px; border-radius: var(--r-pill); letter-spacing: .04em; text-transform: uppercase; }
.combo-list { display: grid; gap: 4px; }
.combo-list li { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.combo-list li:last-child { border-bottom: none; }
.combo-li-num { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--brand-red); min-width: 24px; }
.combo-li-body { display: grid; gap: 2px; }
.combo-li-body strong { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; letter-spacing: -0.01em; text-transform: uppercase; color: #fff; }
.combo-li-body span { color: var(--muted); font-size: .92rem; }
.combo-panel-foot { font-size: .82rem; color: var(--faint); margin: 22px 0 0; line-height: 1.6; }

/* ---------------------------------------------------------
   11. PARA QUEM É / NÃO É
--------------------------------------------------------- */
.fit { background: var(--bg); }
.fit-grid { display: grid; gap: 24px; }
.fit-col {
  background: var(--bg-2); border: 2px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px); box-shadow: var(--hard);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fit-col:hover { transform: translate(-4px,-4px); }
.fit-yes:hover { border-color: var(--accent); box-shadow: 10px 10px 0 0 var(--accent); }
.fit-no:hover  { border-color: var(--brand-red); box-shadow: 10px 10px 0 0 var(--brand-red); }
.fit-col h3 { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; margin-bottom: 24px; }
.fit-ic { width: 32px; height: 32px; border-radius: 9px; flex: none; position: relative; }
.fit-ic--yes { background: var(--tint-accent); }
.fit-ic--yes::before { content: ""; position: absolute; left: 10px; top: 9px; width: 12px; height: 6px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent); transform: rotate(-45deg); }
.fit-ic--no { background: var(--tint-red); }
.fit-ic--no::before, .fit-ic--no::after { content: ""; position: absolute; left: 8px; top: 15px; width: 16px; height: 3px; background: var(--brand-red); border-radius: 2px; }
.fit-ic--no::before { transform: rotate(45deg); }
.fit-ic--no::after  { transform: rotate(-45deg); }
.fit-col ul { display: grid; gap: 15px; }
.fit-col li { position: relative; padding-left: 30px; color: var(--text); }
.fit-yes li::before { content: ""; position: absolute; left: 2px; top: .42em; width: 14px; height: 9px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent); transform: rotate(-45deg); }
.fit-no li::before, .fit-no li::after { content: ""; position: absolute; left: 3px; top: .72em; width: 16px; height: 3px; background: var(--brand-red); border-radius: 2px; }
.fit-no li::before { transform: rotate(45deg); }
.fit-no li::after  { transform: rotate(-45deg); }

/* ---------------------------------------------------------
   12. FAQ
--------------------------------------------------------- */
.faq { background: var(--bg-soft); }
.faq-wrap { max-width: 880px; }
.faq-list {
  border: 2px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-2); box-shadow: var(--hard);
}
.faq details { border-bottom: 1px solid var(--line-2); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px clamp(20px, 3vw, 28px);
  font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: .01em;
  transition: background-color .2s ease, color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-3); }
.faq details[open] summary { color: var(--accent); }
.faq-ic { position: relative; width: 18px; height: 18px; flex: none; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.faq-ic::before { left: 0; top: 8px; width: 18px; height: 3px; }
.faq-ic::after  { left: 8px; top: 0; width: 3px; height: 18px; }
.faq details[open] .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding: 0 clamp(20px, 3vw, 28px) 24px; }
.faq-body p { color: var(--muted); margin: 0; max-width: 72ch; text-transform: none; }
.faq details[open] .faq-body { animation: faqOpen .32s var(--ease-out); }

/* ---------------------------------------------------------
   13. CONTATO (CTA final)
--------------------------------------------------------- */
.contact {
  background:
    radial-gradient(120% 130% at 80% -10%, rgba(255,59,48,.18) 0%, transparent 50%),
    var(--bg);
  color: #fff; padding-block: clamp(72px, 11vw, 150px); overflow: hidden;
  border-top: 1px solid var(--line-2);
}
.contact-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.contact-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(90% 80% at 20% 30%, #000, transparent 75%);
          mask-image: radial-gradient(90% 80% at 20% 30%, #000, transparent 75%);
}
.contact-glow { position: absolute; bottom: -180px; left: 8%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(255, 210, 63, .16), transparent 60%); filter: blur(20px); }
.contact-inner { position: relative; z-index: 1; display: grid; gap: 30px; }
.contact-copy h2 { color: #fff; font-size: clamp(2.4rem, 6vw, 3.8rem); margin-bottom: 18px; }
.contact-copy > p { color: var(--muted); font-size: 1.2rem; max-width: 52ch; margin: 0 0 32px; text-transform: none; }
.contact-meta { display: grid; gap: 14px; margin-top: 36px; }
.contact-meta li { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: baseline; color: #fff; }
.contact-meta span { font-family: var(--font-head); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); min-width: 70px; font-weight: 700; }
.contact-meta a { color: #fff; border-bottom: 2px solid var(--accent); transition: color .2s ease; }
.contact-meta a:hover { color: var(--accent); }

/* ---------------------------------------------------------
   14. FOOTER
--------------------------------------------------------- */
.site-footer { background: #060607; color: var(--muted); padding: 60px 0 42px; border-top: 1px solid var(--line-2); }
.footer-inner { display: grid; gap: 18px; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; }
.footer-brand .brand-word { font-size: 1.2rem; }
.footer-social {
  display: inline-flex; align-items: center; gap: 9px; width: max-content;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); transition: color .2s ease;
}
.footer-social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-social .ig-dot { fill: currentColor; stroke: none; }
.footer-social:hover { color: var(--accent); }
.footer-legal { font-size: .9rem; color: var(--faint); margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { font-size: .9rem; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.footer-links a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  margin-top: 16px; padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-bottom p { margin: 0; font-size: .88rem; }

/* ---------------------------------------------------------
   15. MOVIMENTO (reveal ao scroll)
--------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------------------------------------------------------
   16. BREAKPOINTS
--------------------------------------------------------- */
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .fit-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer-legal, .footer-links { grid-column: 1 / -1; }

  .ticks { grid-template-columns: 1fr 1fr; gap: 12px 32px; }

  .service { grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); }
  .service-reverse .service-visual { order: -1; }
  .service-visual .mock { max-width: 100%; }

  .combo-card { grid-template-columns: 1.05fr .95fr; }
  .contact-meta { display: flex; flex-wrap: wrap; gap: 18px 44px; }
}

@media (min-width: 850px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; align-items: center; }
  .nav-cta { display: inline-flex; margin-left: 8px; }

  .hero { padding-block: clamp(36px, 4vw, 64px) clamp(64px, 8vw, 116px); }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
  .hero h1 { font-size: clamp(2.4rem, 3.6vw, 3.6rem); }

  .hero-visual {
    display: block; position: relative; height: 440px;
  }
  .hero-card-front {
    position: absolute; top: 28px; left: 0; width: min(340px, 100%); z-index: 2;
    animation: floatY 7s var(--ease) infinite;
  }
  .hero-card-back {
    position: absolute; bottom: 0; right: 0; width: min(320px, 94%); z-index: 1; opacity: .96;
    animation: floatY 7s var(--ease) infinite; animation-delay: -3.5s;
  }

  .contact-inner { grid-template-columns: auto 1fr; align-items: center; gap: 60px; }
}

@media (min-width: 1280px) {
  :root { --maxw: 1220px; }
}

/* ---------------------------------------------------------
   17. REDUZIR MOVIMENTO
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-card-front, .hero-card-back { animation: none; }
}
