/* ========== TOKENS ========== */
:root {
  /* Brand */
  --orange-50: #FFF4EB;
  --orange-100: #FFE4CC;
  --orange-200: #FFC899;
  --orange-300: #FFA866;
  --orange-400: #FF8A33;
  --orange-500: #F2700B;  /* primary */
  --orange-600: #DC5F00;
  --orange-700: #B14C00;

  --navy-900: #0E1730;     /* deepest, headings */
  --navy-800: #15213F;
  --navy-700: #1E2A4A;
  --navy-600: #2C3960;
  --navy-500: #475578;

  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  --cream-50:  #FBF8F3;    /* paper bg */
  --cream-100: #F4EFE5;
  --cream-200: #E9E2D3;
  --cream-300: #D8CFBB;

  --green-500: #10A36A;
  --green-100: #D4F2E1;
  --red-500:   #DC2A2A;
  --red-100:   #FBD9D9;
  --blue-500:  #2563EB;
  --blue-100:  #DBEAFE;

  /* Semantic */
  --bg:        var(--cream-50);
  --bg-alt:    #FFFFFF;
  --ink:       var(--navy-900);
  --ink-soft:  var(--slate-700);
  --ink-mute:  var(--slate-500);
  --border:    #E9E2D3;
  --border-strong: #D8CFBB;

  --primary:   var(--orange-500);
  --primary-ink: #FFFFFF;
  --accent:    var(--navy-900);

  /* Type */
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif:   "Instrument Serif", Georgia, serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --sh-md: 0 6px 16px -8px rgba(15, 23, 42, 0.12), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  --sh-lg: 0 24px 48px -20px rgba(15, 23, 42, 0.22), 0 8px 18px -8px rgba(15, 23, 42, 0.08);
  --sh-orange: 0 14px 30px -12px rgba(242, 112, 11, 0.45);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--primary);
  display: inline-block;
}

.h-display {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.h-section {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h-sub {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.serif-it { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.text-mute { color: var(--ink-mute); }
.text-ink { color: var(--ink); }
.text-primary { color: var(--primary); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--sh-orange);
}
.btn-primary:hover {
  background: var(--orange-600);
  color: #fff;
  transform: translateY(-1px);
}
.btn-primary.btn-lg {
  padding: 18px 28px;
  font-size: 17px;
}
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-800); color: #fff; }
.btn-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--cream-50) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { width: 48px; height: 48px; object-fit: contain; }
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 18px; font-size: 14.5px; }

/* Burger button — hidden on desktop */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger:hover { border-color: var(--border-strong); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-in drawer */
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14, 23, 48, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 60;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg-alt);
  z-index: 61;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 60px -20px rgba(14, 23, 48, 0.2);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-drawer-close {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-50);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.nav-drawer-close:hover { background: var(--cream-100); }
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  flex: 1;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
  border-radius: 10px;
  transition: background .15s ease;
}
.nav-drawer-links a::after {
  content: "›";
  color: var(--ink-mute);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.nav-drawer-links a:hover { background: var(--cream-50); color: var(--primary); }
.nav-drawer-cta {
  padding: 18px 22px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-drawer-micro {
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
}

/* ========== ANNOUNCE BAR ========== */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  letter-spacing: -0.005em;
}
.announce strong { color: var(--orange-300); font-weight: 700; }
.announce .dot { opacity: .35; margin: 0 10px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(242, 112, 11, 0.08), transparent 70%),
    radial-gradient(40% 35% at 15% 10%, rgba(14, 23, 48, 0.04), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy { max-width: 620px; }
.hero h1 .em {
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.hero p.lede {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-micro {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ink-mute);
  font-size: 14px;
}
.hero-micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero-micro .check {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.hero-visual {
  position: relative;
}

/* ========== DESKTOP MOCKUP ========== */
.dt-mockup {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow:
    0 50px 100px -40px rgba(14, 23, 48, 0.25),
    0 24px 40px -16px rgba(14, 23, 48, 0.12);
  overflow: hidden;
  transform: perspective(1800px) rotateY(-3deg) rotateX(1.5deg);
  transform-origin: left center;
}
.dt-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: #FAFAFA;
  border-bottom: 1px solid var(--slate-200);
}
.dt-bar .dot {
  width: 11px; height: 11px; border-radius: 50%; background: #E2E2E2;
}
.dt-bar .dot:nth-child(1) { background: #FF5F57; }
.dt-bar .dot:nth-child(2) { background: #FEBC2E; }
.dt-bar .dot:nth-child(3) { background: #28C840; }
.dt-bar .url {
  margin-left: 12px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--slate-500);
  font-family: var(--font-mono);
}
.dt-app { display: grid; grid-template-columns: 200px 1fr; min-height: 460px; }
.dt-side {
  background: var(--navy-900);
  color: #fff;
  padding: 18px 12px;
}
.dt-side-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
}
.dt-side-logo img { width: 26px; height: 26px; }
.dt-side-logo span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  color: #fff;
}
.dt-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.dt-side li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.dt-side li.active {
  background: var(--orange-500);
  color: #fff;
  font-weight: 600;
}
.dt-side li svg { width: 14px; height: 14px; opacity: .9; }
.dt-side .upgrade {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}
.dt-side .upgrade .label { font-weight: 600; color: #fff; }
.dt-side .upgrade .note { color: rgba(255,255,255,.55); font-size: 11px; margin-top: 2px; }

.dt-main { padding: 20px 22px; background: #FAFBFC; }
.dt-main h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.dt-main .sub { font-size: 12px; color: var(--slate-500); margin-top: 2px; }
.dt-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.dt-stat {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 12px 13px;
}
.dt-stat.big {
  grid-column: span 2;
  background: linear-gradient(135deg, #0EA85F, #0B7A47);
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
}
.dt-stat.big::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.dt-stat.big .label { color: rgba(255,255,255,.85); font-size: 11px; }
.dt-stat.big .value { color: #fff; font-size: 24px; }
.dt-stat .label { font-size: 11px; color: var(--slate-500); font-weight: 500; }
.dt-stat .value { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy-900); margin-top: 4px; letter-spacing: -0.02em; }
.dt-stat .delta { font-size: 10.5px; color: var(--green-500); margin-top: 3px; font-weight: 600; }
.dt-stat .delta.down { color: var(--red-500); }

.dt-chart {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
}
.dt-chart-head {
  display: flex; align-items: center; justify-content: space-between;
}
.dt-chart-head .t { font-size: 12.5px; font-weight: 600; color: var(--navy-900); }
.dt-chart-head .legend {
  display: flex; gap: 10px; font-size: 10.5px; color: var(--slate-500);
}
.dt-chart-head .legend .swatch {
  display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 4px;
}

.dt-obras {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  margin-top: 10px;
  padding: 4px 0;
}
.dt-obras .row {
  display: grid;
  grid-template-columns: 1fr 80px 60px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 12px;
  border-bottom: 1px solid var(--slate-100);
}
.dt-obras .row:last-child { border-bottom: 0; }
.dt-obras .row .name { font-weight: 600; color: var(--navy-900); }
.dt-obras .row .name .meta { font-weight: 400; color: var(--slate-500); font-size: 11px; margin-top: 1px; }
.dt-obras .bar {
  height: 5px;
  background: var(--slate-100);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.dt-obras .bar::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--primary);
  border-radius: 99px;
  width: var(--p, 50%);
}
.dt-obras .pct { font-weight: 700; color: var(--navy-900); text-align: right; font-size: 11.5px; }

.dt-ai {
  position: absolute;
  right: -28px; bottom: -36px;
  width: 230px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-lg);
  padding: 14px;
  font-size: 12.5px;
  transform: rotate(2deg);
}
.dt-ai .head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.dt-ai .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.dt-ai .name { font-weight: 700; color: var(--navy-900); font-size: 13px; }
.dt-ai .role { font-size: 10.5px; color: var(--slate-500); }
.dt-ai .msg {
  background: var(--orange-50);
  border-left: 2px solid var(--primary);
  padding: 8px 10px;
  border-radius: 0 8px 8px 0;
  color: var(--navy-900);
  line-height: 1.4;
  font-size: 12px;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 28px 0;
  border-radius: 0;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--orange-300);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
/* Long values like "R$ 49,90" scale down so labels don't wrap weirdly */
.stat-item .num:not(:empty) { font-size: clamp(24px, 2.4vw, 36px); }
.stat-item .lbl {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}
.stat-item .lbl strong { color: #fff; font-weight: 600; display: block; font-size: 14.5px; margin-bottom: 2px; }

/* ========== SECTIONS ========== */
section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head h2 { margin-top: 14px; }
.section-head p {
  margin-top: 18px;
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== DOR ========== */
.dor {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.dor-card {
  display: flex;
  gap: 14px;
  padding: 22px 24px;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  align-items: flex-start;
}
.dor-card .x {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #FDEAEA;
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.dor-card p { font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.dor-bottom {
  margin-top: 40px;
  text-align: center;
}
.dor-bottom .punch {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.dor-bottom .punch em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

/* ========== SOLUÇÃO ========== */
.solucao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}
.feature .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-50);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.feature p { font-size: 15px; line-height: 1.55; color: var(--ink-mute); }

/* ========== PRODUTO (mobile screens) ========== */
.produto {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.produto h2 { color: #fff; }
.produto .section-head p { color: rgba(255,255,255,.7); }
.produto .eyebrow { color: var(--orange-300); }
.produto .eyebrow::before { background: var(--orange-300); }

.phone-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}
.phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 240px;
}
.phone-card .cap {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,.78);
}
.phone-card .cap strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.phone {
  width: 240px;
  background: #1A2440;
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 387 / 675;
}
.phone-screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.phone.mid { transform: translateY(-22px); }

/* ========== BENEFÍCIOS ========== */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-strong);
}
.benefit:last-child, .benefit:nth-last-child(2) { border-bottom: 0; }
.benefit .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-top: 2px;
}
.benefit p { font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.benefit p strong { color: var(--navy-900); font-weight: 700; }

/* ========== DEPOIMENTOS ========== */
.depoimentos {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.dep {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dep:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}
.dep-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--primary);
}
.dep-q {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.dep-q strong { color: var(--navy-900); font-weight: 700; }
.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.dep-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.dep-who {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dep-who span {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 13px;
}
.dep-who .dep-city {
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 1px;
}

/* ========== CASE ========== */
.case-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.case-wrap::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(closest-side, rgba(242,112,11,.08), transparent);
  border-radius: 50%;
}
.case-quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 12px;
}
.case-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
}
.case-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
}
.case-author .av {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-display);
}
.case-author .who { font-weight: 700; color: var(--ink); font-size: 15.5px; }
.case-author .who span { display: block; font-weight: 400; color: var(--ink-mute); font-size: 13.5px; }

.case-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}
.case-stat {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.case-stat .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.case-stat .lbl {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* ========== PRICING ========== */
.pricing-bg {
  background: linear-gradient(180deg, var(--bg) 0%, #F4EFE5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan.featured {
  background: var(--ink);
  color: #fff;
  border: 0;
  transform: scale(1.03);
  box-shadow: 0 30px 60px -25px rgba(14,23,48,.4);
}
.plan.featured:hover { transform: scale(1.04) translateY(-2px); }
.plan-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.plan.featured .plan-name { color: var(--orange-300); }
.plan-blurb { margin-top: 8px; font-size: 14px; color: var(--ink-mute); min-height: 38px; }
.plan.featured .plan-blurb { color: rgba(255,255,255,.65); }
.plan-price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price .currency { font-size: 18px; font-weight: 700; color: var(--ink); }
.plan.featured .plan-price .currency { color: #fff; }
.plan-price .amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 58px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.plan.featured .plan-price .amt { color: #fff; }
.plan-price .per { color: var(--ink-mute); font-size: 14px; }
.plan.featured .plan-price .per { color: rgba(255,255,255,.6); }

.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.plan.featured li { color: rgba(255,255,255,.85); }
.plan li svg { color: var(--green-500); flex-shrink: 0; }
.plan.featured li svg { color: var(--orange-300); }
.plan .btn { width: 100%; margin-top: auto; }

.pricing-foot {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--ink-mute);
}
.pricing-foot strong { color: var(--ink); }

/* ========== OBJEÇÕES ========== */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.obj {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
}
.obj .q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.obj .q::before {
  content: "—";
  color: var(--primary);
  font-weight: 400;
  flex-shrink: 0;
}
.obj .a { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.obj .a strong { color: var(--ink); font-weight: 600; }

/* ========== GARANTIA ========== */
.garantia {
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.garantia-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.garantia-shield {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.garantia h2 { font-size: clamp(34px, 4vw, 48px); }
.garantia p { font-size: 18px; margin-top: 20px; line-height: 1.6; }
.garantia .punch {
  margin-top: 28px;
  display: inline-block;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* ========== URGÊNCIA ========== */
.urg {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.urg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(242,112,11,.18), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(242,112,11,.10), transparent 45%);
  pointer-events: none;
}
.urg-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.urg .eyebrow { color: var(--orange-300); }
.urg .eyebrow::before { background: var(--orange-300); }
.urg h2 { color: #fff; margin-top: 14px; }
.urg p { color: rgba(255,255,255,.78); margin-top: 22px; font-size: 18px; line-height: 1.6; }
.urg .price-row {
  margin-top: 36px;
  display: inline-flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 6px;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.urg .price-tag {
  padding: 12px 22px;
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,.85);
}
.urg .price-tag .nm { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.55); font-weight: 600; }
.urg .price-tag .vl { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--orange-300); margin-top: 4px; }

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-q .ic {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.faq-item.open .faq-q .ic { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 4px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ========== CTA FINAL ========== */
.cta-final {
  text-align: center;
  background: var(--orange-500);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: .5;
  pointer-events: none;
}
.cta-final-wrap { max-width: 780px; margin: 0 auto; position: relative; }
.cta-final h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
}
.cta-final h2 em { font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.cta-final p {
  margin-top: 22px;
  font-size: 19px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.cta-final .btn-primary {
  margin-top: 36px;
  background: var(--ink);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.4);
}
.cta-final .btn-primary:hover { background: var(--navy-800); }
.cta-final .micro {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

/* ========== PS ========== */
.ps {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.ps-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px;
  background: var(--cream-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.ps-wrap .ps-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}
.ps-wrap p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.ps-wrap p + p { margin-top: 14px; }

/* ========== FOOTER ========== */
footer.ft {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
  font-size: 14px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff;
}
.ft-logo img { width: 40px; height: 40px; }
.ft p.tag { margin-top: 14px; max-width: 320px; line-height: 1.5; color: rgba(255,255,255,.6); }
.ft h5 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; }
.ft ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft a { color: rgba(255,255,255,.7); }
.ft a:hover { color: var(--orange-300); }
.ft-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
}

/* ========== FUNDADOR (Estamos começando) ========== */
.fundador {
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(242, 112, 11, 0.06), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.fundador-intro {
  max-width: 760px;
  margin: -16px auto 56px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}
.fundador-intro strong { color: var(--navy-900); }
.fundador-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.fundador-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fundador-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}
.fundador-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--orange-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.fundador-card h3 {
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.fundador-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.fundador-card p strong { color: var(--ink); font-weight: 700; }
.fundador-callout {
  max-width: 880px;
  margin: 56px auto 0;
  padding: 32px 40px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fundador-callout::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(242,112,11,.18), transparent 70%);
  pointer-events: none;
}
.fundador-callout-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 14px;
}
.fundador-callout p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: #fff;
  position: relative;
  font-weight: 500;
}
.fundador-callout p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}
.fundador-callout p strong { color: var(--orange-300); font-weight: 700; }

/* ========== CASE LOGUS ========== */
.case-logus {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.case-logus-main {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.case-logus-main::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(closest-side, rgba(242,112,11,.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.case-video-wrap { position: relative; }
.case-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border: 1px dashed rgba(255,255,255,0.18);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
}
.case-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 18px 18px;
  pointer-events: none;
}
.case-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px -12px rgba(242,112,11,.5);
  transition: transform .2s ease;
}
.case-video-placeholder:hover .case-video-play { transform: translate(-50%, -50%) scale(1.05); }
.case-video-play svg { margin-left: 4px; }
.case-video-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1;
}
.case-video-meta span:first-child {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-300);
}
.case-video-meta strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 2px;
}
.case-video-meta small {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 2px;
}

.case-logus-quote { position: relative; z-index: 1; }
.case-logus-quote .case-quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 10px;
}
.case-logus-quote .case-quote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
}
.case-author-logus {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.case-logo-box {
  width: 80px; height: 80px;
  border-radius: 14px;
  background: var(--cream-50);
  border: 1px dashed var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding: 6px;
}
.case-logo-box span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--navy-900);
}
.case-logo-box small {
  font-size: 9.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  line-height: 1.2;
}
.case-author-logus .who {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-author-logus .who span {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 13.5px;
  display: block;
}
.case-author-logus .who .case-city {
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 13px;
}

/* Stats column reuses .case-stats / .case-stat from above, but stacks side */
.case-logus .case-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.case-logus .case-stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 22px;
}
.case-logus .case-stat.hilite {
  background: var(--ink);
  color: #fff;
  border: 0;
}
.case-logus .case-stat.hilite .big { color: var(--orange-300); }
.case-logus .case-stat.hilite .lbl { color: rgba(255,255,255,.7); }
.case-logus .case-stat .big {
  font-size: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  line-height: 1;
}
.case-logus .case-stat .lbl {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 8px;
  line-height: 1.4;
}

.case-connect {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 22px 28px;
  background: var(--cream-50);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.case-connect-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1 1 320px;
  min-width: 0;
}
.case-connect-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

/* ========== VAGAS (counter + progress) ========== */
.vagas-bar {
  max-width: 880px;
  margin: 0 auto 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: var(--sh-sm);
}
.vagas-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.vagas-count {
  font-size: 15px;
  color: var(--ink-soft);
}
.vagas-count strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-right: 2px;
  line-height: 1;
}
.vagas-count strong[data-edit="vagas-ocupadas"] { color: var(--primary); }
.vagas-left {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 600;
  padding: 5px 12px;
  background: var(--orange-50);
  color: var(--orange-700);
  border-radius: 99px;
  letter-spacing: -0.005em;
}
.vagas-track {
  position: relative;
  height: 14px;
  background: var(--cream-100);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.vagas-fill {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  border-radius: 99px;
  transition: width .6s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 0 1px rgba(220, 95, 0, 0.2) inset;
  overflow: hidden;
}
.vagas-fill-stripes {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255,255,255,.16) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.16) 75%,
    transparent 75%
  );
  background-size: 16px 16px;
  animation: vagas-stripes 1.4s linear infinite;
}
@keyframes vagas-stripes {
  from { background-position: 0 0; }
  to   { background-position: 16px 0; }
}
.vagas-tick {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(15, 23, 42, 0.15);
  pointer-events: none;
}
.vagas-foot {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.45;
}

/* Pricing — Cliente Fundador flag on each plan */
.plan-fundador-flag {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 99px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  align-self: flex-start;
}
.plan.featured .plan-fundador-flag {
  background: rgba(255, 168, 102, 0.18);
  color: var(--orange-300);
}

/* ========== BÔNUS CLIENTE FUNDADOR ========== */
.bonus-wrap {
  margin-top: 60px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.bonus-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 50% at 100% 0%, rgba(242,112,11,.22), transparent 60%),
    radial-gradient(40% 45% at 0% 100%, rgba(242,112,11,.10), transparent 60%);
  pointer-events: none;
}
.bonus-head {
  text-align: center;
  position: relative;
  max-width: 680px;
  margin: 0 auto 36px;
}
.bonus-ribbon {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bonus-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}
.bonus-head p {
  margin-top: 14px;
  font-size: 15.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}
.bonus-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 22px 22px;
}
.bonus-card:nth-child(4),
.bonus-card:nth-child(5) {
  grid-column: span 1;
}
@media (min-width: 721px) {
  .bonus-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .bonus-card { grid-column: span 2; }
  .bonus-card:nth-child(4) { grid-column: 2 / span 2; }
  .bonus-card:nth-child(5) { grid-column: span 2; }
}
.bonus-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange-300);
  text-transform: uppercase;
}
.bonus-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 8px 0 8px;
}
.bonus-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

/* ========== GARANTIA DUPLA ========== */
.garantia-stack {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.garantia-tier-1 {
  padding-bottom: 12px;
}
.garantia-tier-2 {
  background: var(--cream-50);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-xl);
  padding: 40px 40px 36px;
  position: relative;
  margin-top: 12px;
}
.garantia-seal {
  position: absolute;
  /* Sits mostly INSIDE tier-2 card; only ~15% peeks above the top edge */
  top: clamp(-50px, -2.5vw, -30px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 22vw, 240px);
  height: clamp(180px, 22vw, 240px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(14, 23, 48, 0.35));
  animation: seal-float 4.5s ease-in-out infinite;
}
.garantia-seal::before {
  /* Pulsing halo behind the seal */
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242, 112, 11, 0.45), transparent 70%);
  z-index: -1;
  animation: seal-halo 2.8s ease-out infinite;
}
.garantia-seal::after {
  /* Slow rotating sheen ring */
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(242, 112, 11, 0.18) 40deg,
    transparent 90deg,
    transparent 180deg,
    rgba(242, 112, 11, 0.12) 220deg,
    transparent 270deg,
    transparent 360deg);
  filter: blur(6px);
  z-index: -2;
  animation: seal-rotate 16s linear infinite;
}
.garantia-seal img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}
@keyframes seal-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
  50%      { transform: translateX(-50%) translateY(-6px) rotate(2deg); }
}
@keyframes seal-halo {
  0%   { opacity: .35; transform: scale(.96); }
  50%  { opacity: .85; transform: scale(1.08); }
  100% { opacity: .35; transform: scale(.96); }
}
@keyframes seal-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .garantia-seal,
  .garantia-seal::before,
  .garantia-seal::after { animation: none; }
}
.garantia-tier-2 .eyebrow { margin-top: clamp(200px, 24vw, 230px); }
.garantia-tier-2 h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); }

/* ========== FAQ (hard tag) ========== */
.faq-q > span:first-child { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.faq-hard-tag {
  display: inline-block;
  padding: 3px 8px;
  background: var(--ink);
  color: var(--orange-300);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1.3;
  align-self: center;
}
.faq-item.hard .faq-q { color: var(--ink); }

/* ========== P.S. / P.P.S. divider ========== */
.ps-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
  margin: 24px 0 18px;
}

/* ========== Case Logus — actual client logo image ========== */
.case-logo-box { gap: 0; padding: 0; overflow: hidden; }
.case-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* ========== WhatsApp button accent ========== */
.btn-whatsapp svg { fill: #25D366; }
.btn-whatsapp { gap: 8px; }
.case-connect .btn { white-space: normal; text-align: center; line-height: 1.3; }

/* ========== PULSING HIGHLIGHT BUTTONS ==========
   Subtle radiating halo on the big primary CTAs to draw the eye.
   Used on Hero, Pricing featured, CTA Final, plus the WhatsApp connect button. */
@keyframes btn-pulse-orange {
  0%   { box-shadow: 0 14px 30px -12px rgba(242, 112, 11, 0.50),
                     0 0 0 0   rgba(242, 112, 11, 0.55); }
  60%  { box-shadow: 0 14px 30px -12px rgba(242, 112, 11, 0.50),
                     0 0 0 14px rgba(242, 112, 11, 0); }
  100% { box-shadow: 0 14px 30px -12px rgba(242, 112, 11, 0.50),
                     0 0 0 0   rgba(242, 112, 11, 0); }
}
@keyframes btn-pulse-dark {
  0%   { box-shadow: 0 18px 40px -16px rgba(14, 23, 48, 0.45),
                     0 0 0 0   rgba(14, 23, 48, 0.45); }
  60%  { box-shadow: 0 18px 40px -16px rgba(14, 23, 48, 0.45),
                     0 0 0 14px rgba(14, 23, 48, 0); }
  100% { box-shadow: 0 18px 40px -16px rgba(14, 23, 48, 0.45),
                     0 0 0 0   rgba(14, 23, 48, 0); }
}
@keyframes btn-pulse-whatsapp {
  0%   { box-shadow: 0 6px 16px -8px rgba(37, 211, 102, 0.5),
                     0 0 0 0   rgba(37, 211, 102, 0.55); }
  60%  { box-shadow: 0 6px 16px -8px rgba(37, 211, 102, 0.5),
                     0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 16px -8px rgba(37, 211, 102, 0.5),
                     0 0 0 0   rgba(37, 211, 102, 0); }
}

/* Apply to the big primary buttons */
.btn-primary.btn-lg {
  animation: btn-pulse-orange 2.2s ease-out infinite;
}
/* Pricing featured plan button — sits inside dark card, the pulse pops nicely */
.plan.featured .btn-primary {
  animation: btn-pulse-orange 2.2s ease-out infinite;
}
/* Nav CTA gets a softer pulse so it doesn't feel like a banner ad */
.nav-cta-trial {
  animation: btn-pulse-orange 2.6s ease-out infinite;
}
/* CTA Final button is dark over orange section — needs the dark halo */
.cta-final .btn-primary {
  animation: btn-pulse-dark 2.2s ease-out infinite;
}
/* WhatsApp button — green pulse */
.case-connect .btn-whatsapp {
  animation: btn-pulse-whatsapp 2.4s ease-out infinite;
}

/* Pause the pulse on hover/focus so the user can act without visual jitter */
.btn-primary.btn-lg:hover,
.btn-primary.btn-lg:focus-visible,
.plan.featured .btn-primary:hover,
.plan.featured .btn-primary:focus-visible,
.nav-cta-trial:hover,
.nav-cta-trial:focus-visible,
.cta-final .btn-primary:hover,
.cta-final .btn-primary:focus-visible,
.case-connect .btn-whatsapp:hover,
.case-connect .btn-whatsapp:focus-visible {
  animation-play-state: paused;
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .btn-primary.btn-lg,
  .plan.featured .btn-primary,
  .nav-cta-trial,
  .cta-final .btn-primary,
  .case-connect .btn-whatsapp { animation: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .dt-mockup { transform: none; }
  .solucao-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .case-wrap { grid-template-columns: 1fr; padding: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-2px); }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .case-logus { grid-template-columns: 1fr; max-width: 720px; }
  .case-logus-main { padding: 30px; }
  .case-logus .case-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
  .case-logus .case-stat .big { font-size: 36px; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-card,
  .bonus-card:nth-child(4),
  .bonus-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .nav-cta-enter { display: none; }
  .nav-cta .nav-cta-trial { padding: 10px 16px; font-size: 13.5px; }
  .nav-burger { display: inline-flex; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .container, .container-wide { padding: 0 18px; }
  .hero { padding: 32px 0 48px; }
  .h-display { font-size: clamp(34px, 9vw, 44px); line-height: 1.05; }
  .h-section { font-size: clamp(28px, 7vw, 38px); }
  .nav-inner { height: 64px; gap: 10px; }
  .nav-logo img { width: 40px; height: 40px; }
  .nav-logo span { font-size: 20px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 13px; }
  .announce { font-size: 12px; padding: 8px 14px; line-height: 1.4; }
  .announce .dot { margin: 0 6px; }
  body { font-size: 16px; }

  /* Hero desktop mockup adapts on phone */
  .dt-app { grid-template-columns: 1fr; min-height: 0; }
  .dt-side { display: none; }
  .dt-ai { display: none; }
  .hero-visual { padding: 0 4px; }

  .hero p.lede { font-size: 17px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn-lg { padding: 16px 22px; }
  .hero-micro { gap: 10px 14px; font-size: 13px; }

  .stats-strip { padding: 22px 0; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 18px 16px; padding: 0 6px; }
  .stat-item { gap: 10px; }
  .stat-item .num { font-size: 28px; }
  .stat-item .lbl { font-size: 12px; }
  .stat-item .lbl strong { font-size: 13px; }

  .dor-grid { grid-template-columns: 1fr; gap: 10px; }
  .dor-card { padding: 18px 18px; }
  .dor-card p { font-size: 14.5px; }
  .dor-bottom .punch { font-size: 22px; }

  .solucao-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature { padding: 22px 22px; }
  .feature h3 { font-size: 18px; }
  .feature p { font-size: 14.5px; }
  .feature .ic { width: 44px; height: 44px; margin-bottom: 14px; }

  .phone-row { gap: 20px 14px; }
  .phone { width: 180px; padding: 6px; border-radius: 30px; }
  .phone-screen { border-radius: 24px; }
  .phone::before { width: 70px; height: 18px; top: 11px; }
  .phone.mid { transform: none; }
  .phone-card { max-width: 200px; gap: 12px; }
  .phone-card .cap { font-size: 13px; }
  .phone-card .cap strong { font-size: 14px; }

  .beneficios-grid { grid-template-columns: 1fr; gap: 0; }
  .benefit { padding: 14px 0; }
  .benefit:nth-last-child(2) { border-bottom: 1px dashed var(--border-strong); }
  .benefit p { font-size: 14.5px; }

  .case-wrap { padding: 28px 24px; grid-template-columns: 1fr; gap: 28px; border-radius: 20px; }
  .case-quote { font-size: 18px; line-height: 1.4; }
  .case-quote-mark { font-size: 56px; }
  .case-author { margin-top: 20px; }
  .case-stat { padding: 14px 16px; }
  .case-stat .big { font-size: 28px; }

  .dep-grid { grid-template-columns: 1fr; gap: 14px; }
  .dep { padding: 22px 22px; }
  .dep-q { font-size: 15.5px; }
  .dep-av { width: 42px; height: 42px; font-size: 15px; }

  .obj-grid { grid-template-columns: 1fr; gap: 10px; }
  .obj { padding: 22px 20px; }
  .obj .q { font-size: 17px; }
  .obj .a { font-size: 14.5px; }

  .garantia-card { padding: 0 4px; }
  .garantia-shield { width: 72px; height: 72px; margin-bottom: 18px; }
  .garantia-shield svg { width: 36px; height: 36px; }
  .garantia p { font-size: 16px; margin-top: 16px; }
  .garantia .punch { padding: 12px 20px; font-size: 15px; }

  .urg p { font-size: 16px; }
  .urg .price-row { padding: 5px; gap: 2px; width: 100%; }
  .urg .price-tag { padding: 10px 14px; flex: 1; min-width: 0; }
  .urg .price-tag .nm { font-size: 10.5px; }
  .urg .price-tag .vl { font-size: 17px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .plan { padding: 28px 22px; border-radius: 20px; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-2px); }
  .plan-price .amt { font-size: 48px; }

  .faq-q { font-size: 16px; padding: 18px 4px; gap: 14px; }
  .faq-a-inner { font-size: 14.5px; padding-bottom: 18px; }

  .cta-final-wrap { padding: 0 4px; }
  .cta-final h2 { font-size: clamp(32px, 8vw, 42px); }
  .cta-final p { font-size: 16px; margin-top: 18px; }
  .cta-final .btn-primary { margin-top: 28px; width: 100%; }

  .ps-wrap { padding: 28px 22px; border-radius: 0 14px 14px 0; }
  .ps-wrap p { font-size: 15.5px; }
  .ps-divider { margin: 18px 0 14px; }

  /* Fundador */
  .fundador-intro { font-size: 16px; margin: 0 auto 36px; }
  .fundador-grid { grid-template-columns: 1fr; gap: 12px; }
  .fundador-card { padding: 22px 22px; }
  .fundador-card h3 { font-size: 17px; }
  .fundador-card p { font-size: 14.5px; }
  .fundador-callout { padding: 26px 24px; margin-top: 40px; border-radius: 20px; }
  .fundador-callout p { font-size: 17px; line-height: 1.4; }

  /* Case Logus */
  .case-logus-main { padding: 24px 22px; }
  .case-logus-quote .case-quote { font-size: 17px; line-height: 1.45; }
  .case-logus-quote .case-quote-mark { font-size: 52px; }
  .case-logus .case-stats { grid-template-columns: 1fr; }
  .case-logus .case-stat { padding: 18px 20px; }
  .case-logus .case-stat .big { font-size: 30px; }
  .case-author-logus { gap: 12px; flex-wrap: wrap; }
  .case-logo-box { width: 64px; height: 64px; }
  .case-logo-box span { font-size: 12px; }
  .case-logo-box small { font-size: 8.5px; }
  .case-author-logus .who { font-size: 15px; min-width: 0; flex: 1 1 200px; }
  .case-author-logus .who span { word-wrap: break-word; overflow-wrap: anywhere; }
  .case-connect { padding: 18px 20px; flex-direction: column; align-items: stretch; gap: 14px; }
  .case-connect .btn { width: 100%; justify-content: center; padding-left: 14px; padding-right: 14px; font-size: 14.5px; white-space: normal; text-align: center; line-height: 1.3; }
  .case-connect-text strong { font-size: 16px; }

  /* Vagas counter */
  .vagas-bar { padding: 18px 20px; margin-bottom: 36px; }
  .vagas-head { gap: 8px; }
  .vagas-count { font-size: 14px; }
  .vagas-count strong { font-size: 26px; }
  .vagas-left { font-size: 12px; padding: 4px 10px; }
  .vagas-foot { font-size: 12px; }

  /* Bonus */
  .bonus-wrap { padding: 32px 22px; margin-top: 40px; border-radius: 20px; }
  .bonus-grid { grid-template-columns: 1fr; gap: 10px; }
  .bonus-card { padding: 18px 18px; }
  .bonus-head { margin-bottom: 24px; }
  .bonus-head p { font-size: 14.5px; }

  /* Garantia dupla */
  .garantia-stack { gap: 20px; }
  .garantia-tier-2 { padding: 32px 22px 28px; border-radius: 20px; }
  .garantia-seal { width: clamp(150px, 36vw, 200px); height: clamp(150px, 36vw, 200px); top: clamp(-40px, -4vw, -25px); }
  .garantia-tier-2 .eyebrow { margin-top: clamp(170px, 38vw, 200px); }
  .garantia-tier-2 h2 { font-size: clamp(24px, 6.5vw, 32px); }

  /* FAQ hard */
  .faq-hard-tag { font-size: 9.5px; padding: 2px 6px; }

  /* Pricing flag */
  .plan-fundador-flag { font-size: 11.5px; padding: 5px 10px; }

  footer.ft { padding: 40px 0 24px; font-size: 13.5px; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .ft-bot { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 12.5px; }
}

@media (max-width: 420px) {
  .phone-row { flex-direction: column; align-items: center; }
  .phone-card { max-width: 260px; }
  .phone { width: 220px; }
  .stats-strip-inner { grid-template-columns: 1fr; gap: 16px; }
  .urg .price-tag .vl { font-size: 15px; }
  .urg .price-tag .nm { font-size: 9.5px; letter-spacing: 0.04em; }
  .urg .price-row { width: 100%; }
  .urg .price-tag { padding: 9px 8px; flex: 1; }

  /* Even tighter mobile (320–420) */
  .container, .container-wide { padding: 0 14px; }
  .h-display { font-size: clamp(30px, 8.2vw, 38px); }
  .h-section { font-size: clamp(24px, 7vw, 32px); }
  .hero .lede { font-size: 16px; }
  .nav-cta .nav-cta-trial { padding: 9px 12px; font-size: 12.5px; }
  .nav-logo span { font-size: 18px; }
  .nav-logo img { width: 36px; height: 36px; }
  .announce { font-size: 11.5px; padding: 7px 12px; }
  .announce .dot { display: none; }

  .case-connect .btn { font-size: 13.5px; padding: 12px 12px; }
  .case-connect .btn svg { width: 16px; height: 16px; }

  .vagas-bar { padding: 16px 16px; }
  .vagas-count strong { font-size: 22px; }
  .vagas-foot { font-size: 11.5px; }

  .bonus-wrap { padding: 26px 18px; }
  .bonus-head h3 { font-size: clamp(20px, 5.6vw, 24px); }

  .garantia-seal { width: clamp(130px, 38vw, 160px); height: clamp(130px, 38vw, 160px); top: -20px; }
  .garantia-tier-2 .eyebrow { margin-top: clamp(140px, 40vw, 160px); }

  .plan { padding: 24px 18px; }
  .plan-price .amt { font-size: 42px; }

  .faq-q { font-size: 15px; gap: 10px; }
  .faq-hard-tag { font-size: 9px; padding: 2px 5px; }

  .ps-wrap { padding: 24px 18px; }

  .dor-card { padding: 16px 16px; }
  .dor-card p { font-size: 14px; }

  .feature { padding: 20px 18px; }
  .feature h3 { font-size: 17px; }

  .obj { padding: 20px 18px; }
  .obj .q { font-size: 16px; }

  .fundador-callout { padding: 22px 18px; }
  .fundador-callout p { font-size: 15.5px; }
}
