/* ============================================================
   VAMOS ESCREVER — Sistema visual
   60 branco · 30 preto · 10 rosa/amarelo/verde
============================================================ */

:root {
  --pink: #F83A72;
  --yellow: #FCBB2C;
  --green: #3E9D96;
  --black: #111111;
  --white: #FAFAFA;
  --paper: #F2F0EC;
  --ink-60: rgba(17, 17, 17, 0.6);
  --ink-30: rgba(17, 17, 17, 0.3);
  --ink-10: rgba(17, 17, 17, 0.1);
  --line: rgba(17, 17, 17, 0.12);

  --display: "Archivo Black", "Archivo", sans-serif;
  --body: "Figtree", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --r-xl: 36px;

  /* shadow system — multi-layer, soft */
  --sh-sm:
    0 1px 2px rgba(17,17,17,0.04),
    0 2px 4px rgba(17,17,17,0.04);
  --sh-md:
    0 2px 4px rgba(17,17,17,0.04),
    0 8px 16px -4px rgba(17,17,17,0.08),
    0 1px 2px rgba(17,17,17,0.04);
  --sh-lg:
    0 4px 8px rgba(17,17,17,0.04),
    0 16px 32px -8px rgba(17,17,17,0.12),
    0 2px 4px rgba(17,17,17,0.04);
  --sh-xl:
    0 8px 16px rgba(17,17,17,0.06),
    0 32px 64px -16px rgba(17,17,17,0.18),
    0 4px 8px rgba(17,17,17,0.04);

  /* tinted shadows */
  --sh-pink:
    0 4px 8px rgba(248,58,114,0.10),
    0 18px 36px -10px rgba(248,58,114,0.35),
    0 2px 4px rgba(248,58,114,0.08);
  --sh-yellow:
    0 4px 8px rgba(252,187,44,0.12),
    0 18px 36px -10px rgba(252,187,44,0.42),
    0 2px 4px rgba(252,187,44,0.10);
  --sh-green:
    0 4px 8px rgba(62,157,150,0.10),
    0 18px 36px -10px rgba(62,157,150,0.32),
    0 2px 4px rgba(62,157,150,0.08);

  --container: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
}

/* paper-grain texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* custom cursor (disabled) */
.cursor-dot, .cursor-ring, .cursor-label { display: none !important; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

/* anti-flicker do header injetado por header.js — reserva a altura da nav */
#ve-header { display: block; min-height: var(--nav-h); }

/* ============= type ============= */
.display, h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 0.92; letter-spacing: -0.02em; text-wrap: balance; }

h1 { font-size: clamp(48px, 9vw, 168px); }
h2 { font-size: clamp(40px, 6vw, 96px); }
h3 { font-size: clamp(28px, 3.2vw, 48px); }
h4 { font-family: var(--display); font-size: clamp(22px, 1.8vw, 28px); line-height: 1; letter-spacing: -0.01em; }

p { text-wrap: pretty; }
.lead { font-size: clamp(20px, 2vw, 28px); line-height: 1.35; color: var(--black); font-weight: 400; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); margin-right: 10px; vertical-align: 2px;
}

.mono { font-family: var(--mono); }
.italic { font-family: "Figtree", serif; font-style: italic; font-weight: 500; }

/* ============= layout ============= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(28px, 5vw, 72px); }
.section { padding: clamp(80px, 10vw, 160px) 0; }
.section.tight { padding: clamp(48px, 6vw, 96px) 0; }

.hr { height: 1px; background: var(--line); width: 100%; }

/* ============= nav ============= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 1px 2px rgba(17, 17, 17, 0.04),
    0 8px 24px -8px rgba(17, 17, 17, 0.10);
}
/* sem suporte a backdrop-filter (preview/algumas telas grandes): fundo sólido */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.scrolled { background: rgba(250, 250, 250, 0.99); }
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand img {
  height: 24px;
  width: auto;
  transition: filter 0.4s var(--ease);
}
/* logo branco sobre heros coloridos escuros (rosa/verde) enquanto nav no topo */
.nav.on-color:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
/* nav inteiro legível sobre hero colorido/escuro enquanto no topo */
.nav.on-color:not(.scrolled) .nav-link,
.nav.on-color:not(.scrolled) .login-link { color: var(--white); }
.nav.on-color:not(.scrolled) .nav-link:hover,
.nav.on-color:not(.scrolled) .login-link:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.nav.on-color:not(.scrolled) .menu-btn { background: var(--white); color: var(--black); }
.brand-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--black);
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: var(--pink);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.brand-mark span { position: relative; z-index: 1; }
.brand:hover .brand-mark::after { transform: translateY(0); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s var(--ease);
}
.nav-link:hover { background: var(--ink-10); }
.nav-link.has-drop::after {
  content: ""; display: inline-block; margin-left: 6px;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.nav-drop {
  position: relative;
}
.nav-drop.open .nav-link.has-drop::after {
  transform: rotate(-135deg) translate(0px, 0px);
}
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  width: 460px;
  box-shadow: var(--sh-xl);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.nav-drop.open .drop-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px;
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease);
}
.drop-item:hover { background: var(--paper); }
.drop-dot {
  flex: 0 0 10px;
  width: 10px; height: 10px;
  margin-top: 8px;
  border-radius: 50%;
}
.drop-dot-rosa { background: var(--pink); }
.drop-dot-amarelo { background: var(--yellow); }
.drop-dot-verde { background: var(--green); }
.drop-item h5 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.drop-item p {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.4;
}

.nav-right {
  display: flex; align-items: center; gap: 6px;
}
.login-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-60);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.login-link:hover { color: var(--black); background: var(--ink-10); }
.login-link svg { width: 14px; height: 14px; }

/* ============= buttons ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }
.btn-pink { background: var(--pink); color: var(--white); box-shadow: 0 4px 12px -2px rgba(248,58,114,0.25); }
.btn-pink:hover { background: #d92560; box-shadow: 0 12px 28px -6px rgba(248,58,114,0.55); transform: translateY(-1px); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #000; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--yellow); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--black);
}
.btn-ghost:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 20px 32px; font-size: 17px; }

/* magnetic CTA in nav */
.nav-cta { padding: 10px 20px; font-size: 14px; }

/* ============= hero (home) ============= */
.hero {
  padding-top: calc(var(--nav-h) + 36px);
  padding-bottom: 48px;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: end;
}
.hero-headline {
  font-size: clamp(36px, 6.9vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.035em;
}
.hero-headline .word { display: inline-block; }
.hero-headline .accent { color: var(--pink); }
.hero-headline .strike { position: relative; }
.hero-headline .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 50%;
  height: 8px; background: var(--yellow);
  transform: rotate(-2deg) scaleX(0);
  transform-origin: left;
  animation: strike 1s 0.8s var(--ease) forwards;
}
@keyframes strike { to { transform: rotate(-2deg) scaleX(1); } }

.hero-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 36px;
}
.hero-sub { font-size: clamp(14px, 1.1vw, 17px); max-width: 560px; color: var(--ink-60); line-height: 1.45; }
.hero-sub strong { color: var(--black); font-weight: 600; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* NPS sticker */
.nps-sticker {
  position: absolute;
  right: max(28px, calc((100vw - var(--container)) / 2 + 28px));
  top: calc(var(--nav-h) + 80px);
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  background: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  animation: spin 18s linear infinite;
  transform-origin: center;
  box-shadow: var(--sh-yellow);
}
.nps-sticker .inner {
  animation: spin 18s linear infinite reverse;
  display: grid; place-items: center;
}
.nps-sticker .num {
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.nps-sticker .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .nps-sticker { position: relative; top: auto; right: auto; margin: 32px 0 0; }
  .hero-meta { grid-template-columns: 1fr; }
}

/* ============= ticker / marquee ============= */
.ticker {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.ticker-track {
  display: flex; gap: 36px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--display);
  font-size: clamp(14px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 36px;
}
.ticker-item::after {
  content: "✺"; color: var(--pink); font-size: 0.7em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============= clients logos ============= */
.clients {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.clients-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px;
  flex-wrap: wrap; gap: 16px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  align-items: center;
  justify-items: center;
}
.client-logo {
  width: 100%;
  height: 88px;
  display: grid; place-items: center;
  padding: 18px 12px;
  border-radius: 12px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  color: var(--black);
}
.client-logo:hover {
  background: var(--paper);
  transform: translateY(-2px);
}
.client-logo:hover img { filter: none; }
.client-logo img {
  max-height: 36px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05) opacity(0.7);
  transition: filter 0.3s var(--ease);
}
.client-logo.dark img { filter: grayscale(1) contrast(1.05) brightness(0.4) opacity(0.85); }
.client-logo.size-200 img { max-height: 72px; max-width: 180px; }
.client-logo.size-120 img { max-height: 43px; max-width: 150px; }
.client-logo.size-110 img { max-height: 40px; max-width: 140px; }

@media (max-width: 1100px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= services cards ============= */
.services {
  background: var(--paper);
}
.services-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .services-head { grid-template-columns: 1fr; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  color: var(--black);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: var(--sh-md);
}
.service-card:hover { transform: translateY(-8px); }
.service-card.rosa { background: var(--pink); color: var(--white); box-shadow: var(--sh-pink); }
.service-card.amarelo { background: var(--yellow); color: var(--black); box-shadow: var(--sh-yellow); }
.service-card.verde { background: var(--green); color: var(--white); box-shadow: var(--sh-green); }
.service-card.rosa:hover { box-shadow: 0 8px 16px rgba(248,58,114,0.14), 0 32px 64px -12px rgba(248,58,114,0.5), 0 4px 8px rgba(248,58,114,0.10); }
.service-card.amarelo:hover { box-shadow: 0 8px 16px rgba(252,187,44,0.18), 0 32px 64px -12px rgba(252,187,44,0.55), 0 4px 8px rgba(252,187,44,0.14); }
.service-card.verde:hover { box-shadow: 0 8px 16px rgba(62,157,150,0.14), 0 32px 64px -12px rgba(62,157,150,0.48), 0 4px 8px rgba(62,157,150,0.10); }

.service-card .index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.service-card h3 {
  font-size: clamp(34px, 3vw, 48px);
  margin: 16px 0 14px;
  line-height: 0.92;
}
.service-card p {
  font-size: 16px;
  line-height: 1.45;
  opacity: 0.92;
  max-width: 36ch;
}
.service-card .glyph {
  position: absolute; right: -30px; bottom: -30px;
  font-family: var(--display);
  font-size: 240px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
}
.service-card .arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  font-weight: 600;
  font-size: 15px;
  position: relative; z-index: 1;
}
.service-card .arrow-link svg { transition: transform 0.3s var(--ease); }
.service-card:hover .arrow-link svg { transform: translateX(4px); }

/* ============= numbers (prova social) ============= */
.proof { background: var(--black); color: var(--white); }
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
}
.proof-cell {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.proof-cell .big {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.proof-cell .big .unit { font-size: 0.5em; color: var(--pink); }
.proof-cell .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.proof-cell .caption {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 1000px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proof-grid { grid-template-columns: 1fr; } }

/* ============= CTA bloco preto ============= */
.cta-block {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-block .container {
  position: relative; z-index: 2;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 1000px) { .cta-grid { grid-template-columns: 1fr; gap: 48px; } }
.cta-block h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
}
.cta-block h2 .pink { color: var(--pink); }

.cta-form {
  background: var(--white);
  color: var(--black);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  box-shadow: var(--sh-xl);
}
.cta-form h4 { margin-bottom: 6px; }
.cta-form p { color: var(--ink-60); margin-bottom: 22px; font-size: 14px; }

.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--black);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
}
.field textarea { min-height: 110px; resize: vertical; }

.whatsapp-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: rgba(62, 157, 150, 0.15);
  border: 1px solid rgba(62, 157, 150, 0.4);
  border-radius: 16px;
  margin-bottom: 24px;
}
.whatsapp-card .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.whatsapp-card .ic svg { width: 22px; height: 22px; }
.whatsapp-card .txt strong { display: block; font-size: 16px; }
.whatsapp-card .txt span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ============= blog cards ============= */
.blog-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 20px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1000px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--sh-sm);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--black); box-shadow: var(--sh-lg); }
.blog-card.feature { grid-row: span 2; }
.blog-thumb {
  aspect-ratio: 16 / 10;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.blog-card.feature .blog-thumb { aspect-ratio: 5 / 7; }
.blog-thumb .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(17,17,17,0.04) 0 6px, transparent 6px 12px);
  display: grid; place-items: center;
}
.blog-thumb .ph span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  text-transform: uppercase;
}
.blog-thumb.tone-rosa { background: var(--pink); }
.blog-thumb.tone-amarelo { background: var(--yellow); }
.blog-thumb.tone-verde { background: var(--green); }
.blog-thumb.tone-rosa .ph span,
.blog-thumb.tone-verde .ph span { color: rgba(255,255,255,0.8); }
.blog-thumb.tone-rosa .ph,
.blog-thumb.tone-amarelo .ph,
.blog-thumb.tone-verde .ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.10) 0 6px, transparent 6px 12px);
}

.blog-body { padding: 24px 24px 28px; }
.blog-meta {
  display: flex; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 12px;
}
.blog-meta .cat { color: var(--pink); }
.blog-card h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.blog-card.feature h4 { font-family: var(--display); font-size: clamp(28px, 2.6vw, 40px); line-height: 1; letter-spacing: -0.02em; }
.blog-card p { color: var(--ink-60); font-size: 14px; }

/* ============= footer ============= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer .container { display: block; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 24px;
}
.footer-wordmark .pink { color: var(--pink); }
.footer-tag {
  color: rgba(255,255,255,0.65);
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.85); font-size: 15px; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--pink); }

.footer-bottom {
  display: flex; justify-content: space-between;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}

/* ============= reveal animations ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ============= mobile nav ============= */
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  align-items: center; justify-content: center;
}
.menu-btn svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-cta { display: none; }
  .login-link { display: none; }   /* Login passa a viver dentro do menu */
}

/* ============= mobile: 1 coluna + escala (exceto logos) ============= */
html, body { overflow-x: hidden; }
@media (max-width: 680px) {
  .hero-meta, .services-head, .services-grid, .proof-grid, .cta-grid,
  .blog-grid, .subhero-grid, .subhero-stats, .feat-grid, .steps, .split,
  .team-grid, .testi-grid, .demo-grid, .case-grid, .perfil-grid,
  .footer-top, .roi-grid, .nps-wrap, .cta-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  /* logos de clientes seguem em grade */
  .clients-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* headlines fixas em px não podem estourar a tela */
  .hero h1, .subhero h1,
  .subhero-grid :is(h1,h2,h3,h4,h5,h6),
  .services-head :is(h1,h2,h3,h4,h5,h6),
  .blog-head :is(h1,h2,h3,h4,h5,h6),
  .split-content :is(h1,h2,h3,h4,h5,h6),
  .roi :is(h1,h2,h3), .nps-wrap :is(h1,h2,h3), .section > .container > :is(h1,h2),
  .cta-block h2,
  .container > :is(h1,h2) {
    font-size: clamp(34px, 10.5vw, 58px) !important;
    line-height: 1.02 !important;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }
  /* respiro lateral consistente */
  .container { padding-left: 22px; padding-right: 22px; }
  /* chips/segmented wrap */
  .hm-aud { flex-wrap: wrap; }
  /* manifesto: garante quebra entre palavras (nunca no meio) e escala */
  .scroll-type, .big-quote blockquote {
    font-size: clamp(26px, 8vw, 44px) !important;
    line-height: 1.18 !important;
    overflow-wrap: normal; word-break: keep-all; hyphens: none;
  }
  /* números/linhas que não podiam quebrar agora podem */
  .roi-out .line .v { white-space: normal; }
  .roi-out .line { gap: 10px; }
  /* ticker menor pra não dominar a tela */
  .scroll-strip .strip-inner { gap: 44px; font-size: clamp(28px, 9vw, 48px); }
  /* qualquer mídia nunca passa da largura */
  img, svg, video, iframe { max-width: 100%; }
  /* manchete do blog destaque = mesmo tamanho das demais (harmonia) */
  .blog-card.feature h4 { font-size: clamp(20px, 5.4vw, 26px) !important; }
  /* capa do destaque = mesma proporção das outras (não mais retrato alto) */
  .blog-card.feature .blog-thumb { aspect-ratio: 16 / 10; }
  /* FAQs menores/menos pesadas no mobile */
  .faq-q { font-size: clamp(16px, 4.4vw, 19px); padding: 20px 0; gap: 16px; }
  /* logo do topo 20% menor no mobile */
  .brand img { height: 19px; }
  .faq-q .plus { width: 30px; height: 30px; flex: none; }
}


/* mobile overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 96px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
  display: flex; flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open {
  transform: none;
  visibility: visible;
  transition: transform 0.5s var(--ease), visibility 0s linear 0s;
}
.mobile-menu > a {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.02em;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu > a.mm-login {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu > a.mm-login svg { width: 18px; height: 18px; }
.mobile-menu .close {
  position: absolute; top: 24px; right: 28px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--black); color: var(--white);
  display: grid; place-items: center;
}
.mobile-menu .footer-cta { margin-top: auto; padding-top: 28px; }
.mobile-menu .footer-cta .btn {
  width: 100%;
  justify-content: center;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 18px 24px;
  border-bottom: none;
}

/* ============= sub page heroes ============= */
.subhero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.subhero.rosa { background: var(--pink); color: var(--white); }
.subhero.amarelo { background: var(--yellow); color: var(--black); }
.subhero.verde { background: var(--green); color: var(--white); }
.subhero .eyebrow { color: inherit; }
.subhero .eyebrow .dot { background: currentColor; }

.subhero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: end;
}
@media (max-width: 900px) { .subhero-grid { grid-template-columns: 1fr; } }

.subhero h1 {
  font-size: clamp(56px, 9vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.subhero p { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4; max-width: 48ch; }

.subhero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid currentColor;
}
.subhero-stats .stat .num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.subhero-stats .stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 8px;
}

/* big bold quote section */
.big-quote {
  padding: clamp(96px, 12vw, 200px) 0;
  text-align: left;
}
.big-quote blockquote {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.big-quote .quote-mark {
  display: inline-block;
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.3em;
  line-height: 0;
  vertical-align: -0.1em;
}
.big-quote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* feature grid (sub pages) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--sh-sm);
}
.feat:hover { border-color: var(--black); transform: translateY(-4px); box-shadow: var(--sh-md); }
.feat .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}
.feat h4 { font-family: var(--display); font-size: 26px; margin-bottom: 12px; line-height: 1; }
.feat p { color: var(--ink-60); font-size: 15px; }

/* process steps */
.process {
  background: var(--paper);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--white);
  padding: 36px 28px;
  min-height: 240px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.step .step-num {
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--pink);
}
.step h4 { font-family: var(--display); font-size: 22px; margin: 28px 0 8px; line-height: 1.05; }
.step p { font-size: 14px; color: var(--ink-60); }

/* split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split img, .split .ph-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(135deg, rgba(17,17,17,0.05) 0 6px, transparent 6px 12px),
    var(--paper);
  position: relative;
  display: grid; place-items: center;
}
.ph-img .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  text-transform: uppercase;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
}

.split-content h2 { margin-bottom: 28px; }
.split-content p { color: var(--ink-60); font-size: 17px; margin-bottom: 16px; max-width: 50ch; }
.split-content ul.checklist { margin-top: 24px; }
.checklist li {
  list-style: none;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.checklist li:first-child { border-top: 0; }
.checklist li::before {
  content: "→";
  color: var(--pink);
  font-family: var(--display);
  font-size: 18px;
  flex-shrink: 0;
}

/* team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  display: grid; place-items: end stretch;
}
.team-card .ph-tex {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(17,17,17,0.05) 0 6px, transparent 6px 12px);
}
.team-card .name {
  position: relative; z-index: 1;
  background: var(--white);
  margin: 12px;
  padding: 12px 14px;
  border-radius: 12px;
}
.team-card .name strong { display: block; font-size: 15px; }
.team-card .name span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }
.team-card:nth-child(4n+1) .ph-tex { background-color: rgba(248, 58, 114, 0.15); }
.team-card:nth-child(4n+2) .ph-tex { background-color: rgba(252, 187, 44, 0.18); }
.team-card:nth-child(4n+3) .ph-tex { background-color: rgba(62, 157, 150, 0.18); }
.team-card:nth-child(4n+4) .ph-tex { background-color: rgba(17, 17, 17, 0.08); }

/* testimonials */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.testi .q {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  flex: 1;
}
.testi .who {
  display: flex; gap: 14px; align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 16px;
}
.testi .who strong { display: block; font-size: 14px; }
.testi .who span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }

/* utilities */
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow); }
.text-green { color: var(--green); }
.bg-pink { background: var(--pink); }
.bg-yellow { background: var(--yellow); }
.bg-green { background: var(--green); }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--black);
}
.tag.live {
  background: rgba(62, 157, 150, 0.15);
  color: var(--green);
}
.tag.live::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* page-level wrapper for fixed nav offset */
main { padding-top: 0; }

/* prevent scrollbar jump */
html { scrollbar-gutter: stable; }

/* selection */
::selection { background: var(--pink); color: var(--white); }

/* ============================================================
   INTERACTIVE LIVE DEMO — "Escreve aí na sua frente"
============================================================ */
.demo {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.demo-spot {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 58, 114, 0.35), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  transition: opacity 0.4s var(--ease);
  opacity: 0;
  z-index: 0;
}
.demo:hover .demo-spot { opacity: 1; }
.demo .container { position: relative; z-index: 1; }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 1000px) { .demo-grid { grid-template-columns: 1fr; gap: 48px; } }

.demo-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 40px;
}
.demo-panel h4 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--white);
}
.demo-panel .sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

.demo-field { margin-bottom: 16px; }
.demo-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.demo-field input, .demo-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.demo-field input::placeholder, .demo-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.demo-field input:focus, .demo-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(0,0,0,0.5);
}

.tone-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.tone-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s var(--ease);
}
.tone-pill:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.tone-pill.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.demo-output {
  background: var(--white);
  color: var(--black);
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.demo-output::before {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink-10);
  transition: background 0.3s var(--ease);
}
.demo-output.writing::before { background: var(--pink); animation: pulse 1.2s infinite; }
.demo-output .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 24px;
  display: flex; justify-content: space-between;
}
.demo-output .meta .live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  vertical-align: 1px;
  animation: pulse 1.6s infinite;
}
.demo-headline {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  min-height: 200px;
}
.demo-headline .pink { color: var(--pink); }
.demo-headline .caret {
  display: inline-block;
  width: 0.04em;
  height: 0.85em;
  background: var(--pink);
  vertical-align: -8%;
  margin-left: 4px;
  animation: blink 0.9s steps(2, start) infinite;
}
.demo-headline.idle {
  color: var(--ink-30);
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  letter-spacing: 0;
}
.demo-byline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.btn-write {
  width: 100%; justify-content: center;
  margin-top: 12px;
}
.btn-write:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================
   DRAGGABLE STICKER
============================================================ */
.drag-sticker {
  position: absolute;
  z-index: 5;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.drag-sticker:active { cursor: grabbing; }
.drag-sticker:hover { box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3); }
.drag-sticker.dragging { transition: none; }

/* ============================================================
   PARALLAX
============================================================ */
.parallax { will-change: transform; }

/* ============================================================
   SCROLL TYPEWRITER — manifesto
============================================================ */
.scroll-type {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.scroll-type .char {
  opacity: 0.18;
  transition: opacity 0.15s linear, color 0.15s linear;
}
.scroll-type .char.lit { opacity: 1; }
.scroll-type .char.pink { color: var(--pink); }

/* ============================================================
   SERVICE CARD HOVER PREVIEW
============================================================ */
.service-card .preview {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: opacity 0.35s var(--ease), max-height 0.4s var(--ease), transform 0.35s var(--ease), padding-top 0.4s var(--ease), border-color 0.4s var(--ease);
  pointer-events: none;
}
.service-card:hover .preview {
  opacity: 0.85;
  max-height: 60px;
  transform: translateY(0);
}

/* ============================================================
   HORIZONTAL MARQUEE — ON SCROLL
============================================================ */
.scroll-strip {
  overflow: hidden;
  padding: 32px 0;
}
.scroll-strip .strip-inner {
  display: flex; gap: 80px;
  width: max-content;
  animation: stripmarquee 38s linear infinite;
  will-change: transform;
}
.scroll-strip:hover .strip-inner { animation-play-state: paused; }
@keyframes stripmarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .scroll-strip .strip-inner { animation: none; }
}
.scroll-strip .strip-inner span {
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 53px);
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 0.9;
  display: inline-flex; align-items: center; gap: 80px;
}
.scroll-strip .strip-inner span::after {
  content: "✺";
  color: var(--pink);
  font-size: 0.55em;
}

/* ============================================================
   LIQUID GLASS
============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(17, 17, 17, 0.04),
    0 10px 30px -8px rgba(17, 17, 17, 0.18),
    0 20px 60px -20px rgba(17, 17, 17, 0.15);
  position: relative;
  isolation: isolate;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 35%),
    radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,0.5), transparent 50%);
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.glass-dark {
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 10px 30px -8px rgba(0, 0, 0, 0.4),
    0 20px 60px -20px rgba(0, 0, 0, 0.3);
  position: relative;
  isolation: isolate;
}
.glass-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* glass chip — for use inside colored cards */
.glass-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    0 4px 12px -2px rgba(0, 0, 0, 0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
}

/* floating CTA pill — appears after scroll */
.float-cta {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 12px 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--black);
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.float-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.float-cta .pill-cta {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  background: var(--pink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  margin-left: 4px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.float-cta .pill-cta:hover { background: #d92560; transform: scale(1.03); }
.float-cta .pill-cta svg { width: 14px; height: 14px; }

@media (max-width: 560px) {
  .float-cta { padding: 7px 7px 7px 14px; font-size: 12px; max-width: calc(100vw - 24px); gap: 10px; }
  /* status volta a aparecer, em uma linha, com a bolinha redonda */
  .float-cta > span:first-child { display: inline-flex; white-space: nowrap; gap: 7px; }
  .float-cta > span:first-child > span { flex: none; width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(62,157,150,0.18); }
  .float-cta .pill-cta { white-space: nowrap; padding: 9px 14px; }
}

/* ============= FAQ ============= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
  text-align: left;
}
.faq-q .plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.faq-item.open .faq-q .plus {
  transform: none;
  background: var(--green);
  color: var(--white);
  font-size: 0;
}
.faq-item.open .faq-q .plus::after {
  content: "\2713";
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
  color: var(--ink-60);
}
.faq-a-inner { padding: 0 0 28px; max-width: 70ch; }
.faq-item.open .faq-a { max-height: 400px; }
