/* =====================================================
   ATHERA — Landing Page de Alta Conversão
   Editorial · Minimal · Premium
   ===================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #fafaf9;
  --bg-deep: #0a0a0a;
  --bg-deep-2: #111110;
  --ink: #0a0a0a;
  --ink-soft: #2a2a28;
  --muted: #6b6b66;
  --muted-2: #9a9a93;
  --rule: #e8e6e0;
  --rule-strong: #d9d6cd;

  /* Accent — derived from Athera logo (green sphere) */
  --accent: #1f3a2e;          /* forest, primary */
  --accent-2: #a3e635;        /* lime, highlight */
  --accent-ink: #0c1f17;      /* deepest green */

  --serif: "Fraunces", "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", "Geist", "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --script: "Caveat", "Homemade Apple", cursive;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

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

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { scroll-margin-top: 80px; }

/* ---------- Type primitives ---------- */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono { font-family: var(--mono); font-size: 0.78em; letter-spacing: 0.04em; text-transform: uppercase; }
.script { font-family: var(--script); font-weight: 500; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}

.display-1 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.display-2 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.display-3 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Split text (word-by-word) ---------- */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* Generous breathing room so italic slant AND descenders (g, p, y, j)
     aren't clipped by the per-word overflow box used for slide-up reveal */
  padding: 0.12em 0.14em 0.22em;
  margin: -0.12em -0.14em -0.22em;
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.85s var(--ease);
  transition-delay: var(--word-delay, 0ms);
}
.split.in .split-word > span {
  transform: translateY(0);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: backdrop-filter 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-logo img { width: 26px; height: 26px; }
.nav-logo small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid var(--rule);
}
.nav-cta {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.28);
}

/* ---------- Nav menu (links entre logo e CTA) ---------- */
.nav-menu {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-menu a { transition: color 0.25s var(--ease); }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }
.nav-menu .nav-client {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 860px) {
  .nav-menu { display: flex; }
}

/* ---------- Magnetic CTA button ---------- */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 18px 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.45s var(--ease), background 0.3s var(--ease);
  will-change: transform;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 140% at var(--mx, 50%) var(--my, 50%), rgba(163,230,53,0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: -1;
}
.cta:hover::before { opacity: 1; }
.cta .arrow {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  transition: transform 0.35s var(--ease);
}
.cta:hover .arrow { transform: translateX(4px) rotate(-3deg); }
.cta-large {
  padding: 22px 30px 22px 34px;
  font-size: 19px;
}
.cta-large .arrow { width: 44px; height: 44px; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-strong);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cta-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 0.95fr; }
}
.hero-headline { margin: 22px 0 28px; }
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 28ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-micro {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-micro .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  position: relative;
}
.hero-micro .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent-2);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hero visual (mockup composition) */
.hero-visual {
  position: relative;
  height: clamp(420px, 60vh, 620px);
  width: 100%;
}
.mockup {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -20px rgba(10,10,10,0.18),
    0 60px 120px -40px rgba(10,10,10,0.12);
  overflow: hidden;
  transform: translateZ(0);
}
.mockup-laptop {
  inset: 6% 0 0 0;
  aspect-ratio: 16 / 10;
}
.mockup-laptop::before {
  content: "";
  display: block;
  height: 32px;
  background: linear-gradient(#fafaf9, #fff);
  border-bottom: 1px solid var(--rule);
}
.mockup-phone {
  bottom: -2%;
  right: -4%;
  width: 36%;
  aspect-ratio: 9 / 19;
  border-radius: 28px;
  border-width: 8px;
  border-color: #0a0a0a;
  border-style: solid;
  background: #fff;
}
.mockup-phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 18px;
  border-radius: 999px;
  background: #0a0a0a;
  z-index: 3;
}

.site-stub {
  padding: 28px 26px;
  display: grid;
  gap: 14px;
}
.site-stub .bar {
  height: 8px;
  background: var(--rule);
  border-radius: 999px;
}
.site-stub .bar.w70 { width: 70%; }
.site-stub .bar.w55 { width: 55%; }
.site-stub .bar.w40 { width: 40%; }
.site-stub .bar.w85 { width: 85%; }
.site-stub .bar.accent { background: var(--accent); width: 30%; height: 12px; }
.site-stub .block {
  margin-top: 8px;
  background: linear-gradient(135deg, #f5f4ef, #ecebe4);
  border-radius: 8px;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
}
.site-stub .block::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 9px, rgba(31,58,46,0.07) 9px 10px);
}

/* Trust bar */
.trust {
  margin-top: clamp(60px, 7vw, 92px);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
  font-size: 13.5px;
  color: var(--muted);
}
@media (min-width: 760px) {
  .trust { grid-template-columns: repeat(3, 1fr); }
}
.trust > div { display: flex; align-items: center; gap: 12px; }
.trust b { color: var(--ink); font-weight: 600; }
.trust .icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  font-size: 11px;
  color: var(--accent);
}

/* ---------- PROBLEM editorial ---------- */
.problem {
  padding: clamp(100px, 14vh, 180px) 0;
}
.problem-body {
  max-width: 880px;
  margin: 0 auto;
}
.problem p {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0 0 1em;
  text-wrap: balance;
}
.problem p:last-child { margin-bottom: 0; }
.problem .muted-strike { color: var(--muted-2); }
.problem em.accent-word {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.problem em.accent-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.42em;
  background: var(--accent-2);
  opacity: 0.55;
  z-index: -1;
  border-radius: 2px;
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr 1fr; align-items: end; }
}

/* ---------- VITOR ---------- */
.vitor {
  padding: clamp(80px, 10vh, 140px) 0;
  border-top: 1px solid var(--rule);
}
.vitor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 880px) {
  .vitor-grid { grid-template-columns: 5fr 7fr; }
}
.vitor-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(10,10,10,0.25);
}
.vitor-photo img { width: 100%; height: 100%; object-fit: cover; }
.vitor-photo .tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 4px;
}
.vitor-body h3 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 36px;
  text-wrap: balance;
}
.vitor-body p {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
  max-width: 52ch;
}
.vitor-body p.strong-line {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink);
  margin: 1.4em 0;
  letter-spacing: -0.01em;
}
.vitor-sig {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.vitor-sig .name {
  font-family: var(--script);
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.vitor-sig .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
}

/* ---------- ATHERA manifesto ---------- */
.manifesto {
  background: var(--bg-soft);
  padding: clamp(100px, 14vh, 180px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.manifesto-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 980px) {
  .manifesto-head { grid-template-columns: 1.1fr 1fr; }
}
.manifesto-head h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
}
.manifesto-head h2 .accent {
  font-style: italic;
  color: var(--accent);
}
.manifesto-body p {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.4em;
}
.manifesto-body p:last-child { margin-bottom: 0; }

.pillars {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}
.pillar {
  padding: 36px 28px 32px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 760px) {
  .pillar { padding: 40px 32px 36px 0; }
  .pillar:not(:last-child) { border-right: 1px solid var(--rule); }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (min-width: 1100px) {
  .pillar { border-bottom: 0; }
  .pillar:nth-child(n) { padding-left: 32px; }
  .pillar:first-child { padding-left: 0; }
}
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.pillar h4 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 30px;
  letter-spacing: -0.018em;
  margin: 14px 0 12px;
  line-height: 1;
}
.pillar p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 28ch;
}

/* ---------- HOW IT WORKS ---------- */
.how {
  padding: clamp(100px, 14vh, 180px) 0;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 880px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 56px);
  }
}
.step {
  position: relative;
  padding-top: 36px;
  border-top: 1px solid var(--ink);
}
.step .num {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
  margin-bottom: 28px;
}
.step .num em {
  font-style: italic;
  font-weight: 350;
  color: var(--accent);
}
.step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.step p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 32ch;
}
.step .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

/* ---------- SOCIAL PROOF ---------- */
.proof {
  padding: clamp(100px, 14vh, 180px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proof-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.counter {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: inline-flex;
  align-items: flex-start;
  font-variant-numeric: tabular-nums;
}
.counter sup {
  font-family: var(--mono);
  font-size: 0.14em;
  letter-spacing: 0.16em;
  margin-top: 0.8em;
  margin-left: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.counter .plus { color: var(--accent); }
.proof-headline h2 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  max-width: 22ch;
  margin: 0;
  text-wrap: balance;
}

.client-grid {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 760px) { .client-grid { grid-template-columns: repeat(3, 1fr); } }
.client-card {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.2);
}
.client-card .preview {
  position: absolute;
  inset: 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f6f5f0, #ecebe4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  overflow: hidden;
}
.client-card .preview .barr {
  height: 5px;
  background: rgba(10,10,10,0.16);
  border-radius: 99px;
}
.client-card .preview .barr.short { width: 40%; }
.client-card .preview .barr.med { width: 65%; }
.client-card .preview .block {
  flex: 1;
  margin-top: 6px;
  background: repeating-linear-gradient(135deg, rgba(10,10,10,0.04) 0 8px, rgba(10,10,10,0.08) 8px 9px);
  border-radius: 4px;
}
.client-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.92) 70%);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
.client-card:hover .meta { transform: translateY(0); }
.client-card .meta .name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.01em;
}
.client-card .meta .segment {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.testimonials {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 880px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.t-quote {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.t-quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0;
  color: var(--accent);
  vertical-align: -0.4em;
  margin-right: 4px;
}
.t-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.t-info .n { font-weight: 600; font-size: 14.5px; }
.t-info .c { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

/* ---------- INCLUSO ---------- */
.included {
  padding: clamp(100px, 14vh, 180px) 0;
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 880px) {
  .included-grid { grid-template-columns: 5fr 7fr; }
}
.included-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.included-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.included-list .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}
.included-list .title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 23px);
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.included-list .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.included-list .meta.muted { color: var(--muted); }
.included-list .desc {
  grid-column: 2 / -1;
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  max-width: 50ch;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(100px, 14vh, 180px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 24px);
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-item.open .toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 60ch;
  padding-right: 60px;
}

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(100px, 14vh, 180px) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 20% 30%, rgba(31,58,46,0.55), transparent 60%),
    radial-gradient(50% 50% at 90% 90%, rgba(163,230,53,0.12), transparent 60%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  max-width: 880px;
}
.final .vagas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.final .vagas .dots { display: inline-flex; gap: 4px; }
.final .vagas .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.final .vagas .dots span.on { background: var(--accent-2); }
.final h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.final h2 em {
  font-style: italic;
  color: var(--accent-2);
}
.final p {
  font-family: var(--serif);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 36ch;
  margin: 0 0 44px;
}
.final .cta {
  background: var(--accent-2);
  color: var(--accent-ink);
}
.final .cta .arrow { background: var(--accent-ink); color: var(--accent-2); }
.final .cta:hover { background: #b9ee5e; }
.final-micro {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.6);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .footer-links { justify-self: center; }
  .footer-copy { justify-self: end; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.footer-brand img { width: 22px; height: 22px; }
.footer-brand .who {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.015em;
}
.footer-brand .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s var(--ease);
  font-size: 13px;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px 13px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 20px 40px -10px rgba(10,10,10,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.25s var(--ease);
}
.wa-float.show { opacity: 1; transform: translateY(0); }
.wa-float:hover { background: var(--accent-ink); }
.wa-float .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 600px) {
  .wa-float .label { display: none; }
  .wa-float { padding: 12px; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 70;
  width: var(--p, 0%);
  transition: width 0.08s linear;
}

/* =====================================================
   v2 — Visual richness layer
   Marquee, browser frames, WhatsApp mockup, cities,
   hero dashboard widget, floating badges, noise, glow
   ===================================================== */

/* Noise overlay (subtle film grain) */
.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ---------- HERO v2 — browser frame + floating UI ---------- */
.hero-visual-v2 {
  position: relative;
  width: 100%;
  perspective: 1400px;
}
.browser-frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 80px -30px rgba(10,10,10,0.25),
    0 60px 140px -60px rgba(10,10,10,0.15);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-3deg);
  transform-origin: 60% 50%;
  transition: transform 0.6s var(--ease);
}
.browser-frame.flat { transform: none; }
.browser-frame:hover { transform: rotateX(0deg) rotateY(0deg); }
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: linear-gradient(#fafaf9, #f3f1ec);
  border-bottom: 1px solid var(--rule);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #e0ddd4;
}
.browser-dots span:nth-child(1) { background: #f0a4a4; }
.browser-dots span:nth-child(2) { background: #f3d57a; }
.browser-dots span:nth-child(3) { background: #a8d8a8; }
.browser-url {
  flex: 1;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.browser-url::before {
  content: "";
  width: 10px; height: 10px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  border-bottom-color: transparent;
  display: inline-block;
}
.browser-body {
  aspect-ratio: 16 / 10;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.browser-body img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.browser-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.04));
  pointer-events: none;
}

/* Floating dashboard widget over hero */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px -20px rgba(10,10,10,0.18);
  backdrop-filter: blur(8px);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-card.dark {
  background: var(--ink);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.float-card .row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.float-card .row + .row { margin-top: 8px; }
.float-card .ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.float-card.dark .label { color: rgba(255,255,255,0.55); }
.float-card .big {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.float-card .delta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 600;
}
.float-card.dark .delta { color: var(--accent-2); }

.fc-preview { top: -14px; left: -16px; animation-delay: -2s; }
.fc-approved { bottom: 16%; right: -10%; animation-delay: -4s; }
.fc-metric { bottom: -28px; left: 18%; animation-delay: -1s; min-width: 180px; }
@media (max-width: 880px) {
  .fc-preview { left: 0; }
  .fc-approved { right: 0; }
  .fc-metric { left: 0; bottom: -20px; }
}

/* Mini bars in dashboard widget */
.mini-bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 30px; margin-top: 8px;
}
.mini-bars span {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.3;
  transform-origin: bottom;
  animation: barsGrow 2s var(--ease) forwards;
}
@keyframes barsGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

/* ---------- MARQUEE — auto-scroll client strip ---------- */
.marquee {
  padding: clamp(50px, 7vw, 80px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
}
.marquee-head {
  text-align: center;
  margin-bottom: 36px;
}
.marquee-head .eyebrow::before { display: none; }
.marquee-head .eyebrow { padding: 0; }
.marquee-head p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 0;
  font-weight: 380;
}
.marquee-head p b { font-weight: 500; color: var(--accent); font-style: italic; }
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 14px;
  min-width: 200px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.logo-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.logo-chip .logo-img {
  width: 60px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.logo-chip:hover .logo-img { filter: grayscale(0); opacity: 1; }
.logo-chip .mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #fff;
  flex-shrink: 0;
}
.logo-chip .who { display: flex; flex-direction: column; }
.logo-chip .name {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.1;
}
.logo-chip .seg {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* ---------- CASES — browser frames with imagery ---------- */
.cases-grid {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 760px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
.case-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -40px rgba(10,10,10,0.22);
}
.case-card .browser-frame {
  border: 0; border-radius: 0; box-shadow: none;
  transform: none;
}
.case-card .browser-frame:hover { transform: none; }
.case-meta {
  padding: 22px 24px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--rule);
}
.case-meta .who {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.case-meta .seg {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}
.case-meta .delta {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  text-align: right;
  line-height: 1;
}
.case-meta .delta small {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---------- WHATSAPP CHAT MOCKUP ---------- */
.chat-section {
  padding: clamp(100px, 14vh, 180px) 0;
  border-top: 1px solid var(--rule);
}
.chat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 880px) {
  .chat-grid { grid-template-columns: 6fr 5fr; }
}
.chat-copy h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 18px 0 24px;
  text-wrap: balance;
}
.chat-copy h2 em { font-style: italic; color: var(--accent); }
.chat-copy p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 14px;
}
.chat-features {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}
.chat-features .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.chat-features .row .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}
.chat-features .row b { font-weight: 600; color: var(--ink); display: block; }
.chat-features .row p { font-size: 14.5px; color: var(--muted); margin: 4px 0 0; }

.phone-mock {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 40px 100px -30px rgba(10,10,10,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-mock::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 4;
}
.phone-screen {
  background: #efeae3;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  display: flex;
  flex-direction: column;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 48px 16px 12px;
  background: #075e54;
  color: #fff;
}
.wa-header .ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wa-header .ava img { width: 100%; height: 100%; object-fit: cover; }
.wa-header .who { font-size: 14px; font-weight: 600; line-height: 1.1; }
.wa-header .status { font-size: 11px; opacity: 0.8; margin-top: 2px; display: block; }
.wa-body {
  flex: 1;
  padding: 14px 12px;
  background:
    linear-gradient(rgba(239,234,227,0.92), rgba(239,234,227,0.92)),
    repeating-linear-gradient(45deg, rgba(120,90,50,0.05) 0 16px, transparent 16px 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  position: relative;
}
.wa-msg {
  max-width: 78%;
  padding: 8px 11px 8px 12px;
  font-size: 13px;
  line-height: 1.35;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
}
.wa-msg .t {
  font-size: 9px;
  display: inline-block;
  margin-left: 8px;
  opacity: 0.5;
  vertical-align: bottom;
}
.wa-msg.them {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}
.wa-msg.me {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 2px;
}
.wa-msg.preview-card {
  padding: 6px;
  background: #fff;
  width: 78%;
  align-self: flex-end;
  background: #d9fdd3;
}
.wa-msg.preview-card .pcard {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.wa-msg.preview-card .pcard img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
}
.wa-msg.preview-card .pcard .pmeta {
  padding: 8px 10px;
}
.wa-msg.preview-card .pcard .ptitle { font-weight: 600; font-size: 12px; }
.wa-msg.preview-card .pcard .purl { font-size: 10px; color: #888; margin-top: 2px; }
.wa-msg .typing {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 0;
}
.wa-msg .typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s ease-in-out infinite;
}
.wa-msg .typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-msg .typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.wa-input {
  padding: 10px 12px;
  background: #efeae3;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-input .field {
  flex: 1;
  background: #fff;
  border-radius: 99px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--muted);
}
.wa-input .send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CITIES ---------- */
.cities {
  padding: clamp(80px, 10vh, 140px) 0;
  border-top: 1px solid var(--rule);
}
.cities-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 760px) { .cities-grid { grid-template-columns: repeat(4, 1fr); } }
.city {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.city:hover { background: var(--bg-soft); }
.city .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.city .tag.primary { color: var(--accent); }
.city h4 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.018em;
  margin: 12px 0 6px;
  line-height: 1;
}
.city p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.city .pin {
  position: absolute;
  top: 28px; right: 28px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(163,230,53,0.18);
}

/* ---------- CITIES → faixa fotográfica de Joinville (de onde a gente é) ---------- */
.cities {
  position: relative;
  border-top: none;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
  background:
    linear-gradient(180deg, rgba(12,31,23,0.80) 0%, rgba(10,12,10,0.90) 100%),
    url("assets/joinville.webp?v=2") center/cover no-repeat;
  background-attachment: fixed, fixed;
}
.cities .eyebrow { color: var(--accent-2); }
.cities .section-head h2,
.cities .section-head h3,
.cities h2, .cities h3 { color: #fff; }
.cities .section-head p,
.cities .lead, .cities .section-head .lead { color: rgba(255,255,255,0.72); }
.cities-grid {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.cities .city {
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.cities .city:hover { background: rgba(255,255,255,0.12); }
.cities .city h4 { color: #fff; }
.cities .city p { color: rgba(255,255,255,0.6); }
.cities .city .tag { color: rgba(255,255,255,0.55); }
.cities .city .tag.primary { color: var(--accent-2); }
.cities::after {
  content: "📍 Joinville · Santa Catarina";
  position: absolute;
  right: 14px; bottom: 10px;
  font-size: 9.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 760px) {
  .cities { background-attachment: scroll, scroll; }
  .cities::after { position: static; display: block; text-align: center; margin-top: 20px; }
}

/* ---------- Hero conic blob ---------- */
.hero {
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(163,230,53,0.10), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(31,58,46,0.06), transparent 60%);
}

/* ---------- Final CTA refresh ---------- */
.final {
  background:
    radial-gradient(60% 50% at 80% 100%, rgba(163,230,53,0.12), transparent 65%),
    radial-gradient(50% 50% at 10% 0%, rgba(31,58,46,0.6), transparent 60%),
    var(--bg-deep);
}

/* ---------- FAQ — two columns + numbered ---------- */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .faq-columns {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(40px, 5vw, 80px);
  }
}
.faq-col { display: flex; flex-direction: column; }
.faq-n {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-right: 12px;
  vertical-align: 0.2em;
}
.faq-item.open .faq-n { color: var(--accent); }

/* ---------- EXIT-INTENT POPUP ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: fixed;
  z-index: 101;
  top: 50%;
  left: 50%;
  width: min(92vw, 560px);
  background: var(--bg);
  border-radius: 18px;
  box-shadow: 0 50px 100px -20px rgba(10,10,10,0.5);
  transform: translate(-50%, -45%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  overflow: hidden;
}
.modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.modal-head {
  padding: 40px 36px 24px;
  position: relative;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(163,230,53,0.18), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
}
.modal-head .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin-bottom: 18px;
}
.modal-head h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-wrap: balance;
}
.modal-head h3 em { font-style: italic; color: var(--accent); }
.modal-head p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  max-width: 44ch;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--muted);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.modal-close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.modal-body { padding: 28px 36px 36px; }
.field-group { display: grid; gap: 14px; }
.field-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-input label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field-input input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field-input input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.modal .cta {
  width: 100%;
  justify-content: space-between;
  padding: 18px 22px;
  margin-top: 8px;
}
.modal-foot {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-foot .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}
.modal-success {
  text-align: center;
  padding: 8px 0;
}
.modal-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.modal-success h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.018em;
}
.modal-success p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 20px;
}

@media (max-width: 600px) {
  .modal-head { padding: 32px 24px 20px; }
  .modal-body { padding: 24px 24px 28px; }
}

/* Mobile-only value strip (hidden on desktop) */
.m-stats { display: none; }
.cases-hint { display: none; }

/* ---------- Small util ---------- */
.divider-tick {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
}


/* --- Green Tech Heartbeat Effect for Footers --- */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 1200px;
  height: 150px;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 150' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%2300ff66'%3E%3Cpath d='M0,75 L80,60 L140,85 L210,40 L280,95 L340,30 L400,110 L460,20 L530,120 L590,40 L650,95 L720,25 L780,100 L850,35 L920,80 L990,45 L1050,85 L1120,50 L1200,75' stroke-width='1.5'/%3E%3Cpath d='M210,40 L230,10 L260,25 M280,95 L310,135 M400,110 L420,145 L450,130 M460,20 L480,-5 L500,10 M530,120 L560,155 M650,95 L680,135 L700,120 M720,25 L740,-5 M850,35 L870,5 L900,15 M1050,85 L1080,120' stroke-width='0.8'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 1200px 150px;
  opacity: 0;
  filter: drop-shadow(0 0 12px #00ff66) drop-shadow(0 0 4px #00ff66);
  animation: tech-lightning 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-inner {
  position: relative;
  z-index: 1;
}

@keyframes tech-lightning {
  0% { opacity: 0.01; }
  5% { opacity: 0.35; filter: brightness(1.2); }
  8% { opacity: 0.05; }
  12% { opacity: 0.25; }
  15% { opacity: 0.01; }
  100% { opacity: 0.01; }
}

/* =====================================================================
   PÁGINA DE SERVIÇOS (/servicos.html) — cards de criação + planos
   ===================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -40px rgba(10,10,10,0.18); }
.service-card .price {
  font-family: var(--serif);
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-card .price small { font-family: var(--sans); font-size: 14px; color: var(--muted); font-weight: 400; }
.service-card .desc { color: var(--muted); font-size: 15px; line-height: 1.6; }
.service-card ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.service-card li { font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.service-card li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.service-card .cta-ghost, .service-card .cta { margin-top: auto; align-self: flex-start; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s var(--ease);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -40px rgba(10,10,10,0.18); }
.plan-card.featured { border-color: var(--accent); }
.plan-card .badge {
  position: absolute;
  top: -13px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan-card .plan-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.plan-card .price { font-family: var(--serif); font-size: 32px; letter-spacing: -0.02em; }
.plan-card .price small { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 400; }
.plan-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan-card li { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.plan-card li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.plan-card .cta-ghost, .plan-card .cta { justify-content: center; width: 100%; }

.services-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 28px;
}
.services-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}