/* ==========================================================================
   IMD DIGITAL — Design tokens
   Palette:  --bg #0A0A0C · --bg-alt #121317 · --surface #17181D
             --line (accent) #C6FF3D · --line-dim #8FCC1F
             --text #F2F3F0 · --text-muted #979AA3 · --border #24262B
   Type: Display "Anton" (condensed, heavy) / Body "Inter" / Mono "JetBrains Mono"
   ========================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-alt: #121317;
  --surface: #17181d;
  --surface-2: #1c1e24;
  --border: #26282e;
  --line: #c6ff3d;
  --line-dim: #8fcc1f;
  --text: #f2f3f0;
  --text-muted: #979aa3;
  --text-faint: #6a6d76;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--line); color: #0a0a0c; }

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 760px; }

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--line);
  margin-bottom: 14px;
  display: inline-block;
}

.text-accent { color: var(--line); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  font-size: clamp(28px, 4vw, 44px);
  max-width: 720px;
}
.section-title--center { margin: 0 auto 14px; text-align: center; max-width: 780px; }

.section-lead {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
}

.sobre-graphic { margin-top: 28px; opacity: 0.9; }

.section-copy { color: var(--text-muted); font-size: 16.5px; display: flex; flex-direction: column; gap: 16px; }
.section-copy-text { color: var(--text-muted); font-size: 16.5px; margin: 18px 0 26px; max-width: 480px; }
.section-copy strong, .section-copy-text strong { color: var(--text); }

.section-note {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 44px auto 0;
  font-size: 15px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--line);
  color: #0a0a0c;
  box-shadow: 0 0 0 0 rgba(198,255,61,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(198,255,61,0.45);
  background: #d4ff66;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--line);
  color: var(--line);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-nav-cta { display: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand { display: flex; align-items: baseline; gap: 6px; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--line);
}

.main-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 30px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--line);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-rings { width: 100%; height: 100%; opacity: 0.9; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-inner { max-width: 620px; }

/* ---- Phone mockup visual ---- */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone-mockup {
  width: 280px;
  background: linear-gradient(180deg, #1b1c21, #131318);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 10px 10px 18px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.phone-notch {
  width: 70px; height: 16px;
  background: #0a0a0c;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 10px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.phone-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--line), var(--line-dim));
  flex-shrink: 0;
}
.phone-header-text { display: flex; flex-direction: column; line-height: 1.25; }
.phone-header-text strong { font-size: 13.5px; }
.phone-header-text em { font-size: 11px; font-style: normal; color: var(--text-faint); }
.phone-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  margin-left: auto;
  box-shadow: 0 0 0 3px rgba(198,255,61,0.15);
}
.phone-body { display: flex; flex-direction: column; gap: 10px; padding: 0 6px 6px; min-height: 220px; }
.bubble {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  animation: bubbleIn 0.5s var(--ease) both;
}
.bubble-in { align-self: flex-start; background: var(--surface-2); border-bottom-left-radius: 4px; color: var(--text); }
.bubble-out { align-self: flex-end; background: var(--line); color: #0a0a0c; font-weight: 600; border-bottom-right-radius: 4px; }
.bubble:nth-child(2) { animation-delay: 0.2s; }
.bubble:nth-child(3) { animation-delay: 0.4s; }
.bubble:nth-child(4) { animation-delay: 0.6s; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.bubble.typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.bubble.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-faint);
  animation: typingDot 1.1s ease-in-out infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--line);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.6);
}
.chip-1 { top: 8%; left: -8%; animation: floatY 4s ease-in-out infinite; }
.chip-2 { bottom: 10%; right: -6%; animation: floatY 4s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.05;
  margin: 4px 0 20px;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-lead strong { color: var(--text); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-actions .btn-ghost svg { transition: transform 0.25s var(--ease); }
.hero-actions .btn-ghost:hover svg { transform: translateX(3px); }

.hero-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 24px;
  background: rgba(23,24,29,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.flow-node--accent {
  color: #0a0a0c;
  background: var(--line);
  border-color: var(--line);
}
.flow-node svg { flex-shrink: 0; }
.flow-arrow { color: var(--text-faint); font-size: 15px; }

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
.section { padding: 72px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.section-grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ==========================================================================
   SOLUÇÃO — diagram
   ========================================================================== */
.diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}
.diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 168px;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.diagram-node:hover { transform: translateY(-4px); border-color: var(--line-dim); }
.diagram-node--accent {
  border-color: var(--line);
  box-shadow: 0 0 0 1px var(--line) inset, 0 12px 34px -14px rgba(198,255,61,0.35);
}
.diagram-icon {
  color: var(--line);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(198,255,61,0.08);
  border-radius: 50%;
}
.diagram-label { font-weight: 700; font-size: 15px; }
.diagram-desc { font-size: 12.5px; color: var(--text-faint); line-height: 1.35; }

.diagram-connector {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--line-dim));
  position: relative;
  align-self: center;
  flex-shrink: 0;
}
.diagram-connector span {
  position: absolute;
  right: -3px; top: 50%;
  width: 6px; height: 6px;
  background: var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulseDot 2.2s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(0.8); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

/* ==========================================================================
   CARDS / BENEFÍCIOS
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-dim);
  background: var(--surface-2);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(198,255,61,0.09);
  color: var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.5; }

/* ==========================================================================
   STEPS — como funciona
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  padding: 32px 24px;
  border-top: 2px solid var(--line);
  background: var(--surface);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.step-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--line);
  margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--text-muted); font-size: 14.5px; }

/* ==========================================================================
   TAGS — para quem é
   ========================================================================== */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.tag {
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.tag:hover {
  border-color: var(--line);
  color: var(--line);
  transform: translateY(-2px);
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  max-width: 980px;
  margin: 0 auto;
}
.diff-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(198,255,61,0.14);
}
.diff-item p { color: var(--text-muted); font-size: 15px; padding-left: 20px; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.pricing-row:last-of-type { border-bottom: none; }
.pricing-row--head {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.pricing-row span:last-child { font-weight: 700; color: var(--line); }
.pricing-row--head span:last-child { color: var(--text-faint); font-weight: 400; }
.pricing-note {
  font-size: 12.5px;
  color: var(--text-faint);
  padding: 16px 0 8px;
  border-top: none;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--line);
  transition: transform 0.3s var(--ease);
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); font-size: 15px; padding-bottom: 20px; max-width: 640px; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  position: relative;
  text-align: center;
  padding: 84px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 50% 30%, rgba(198,255,61,0.14), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-lead { color: var(--text-muted); font-size: 17px; margin-bottom: 36px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-faint); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--text-muted); font-size: 14.5px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--line); }
.footer-heading { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 14px; }
.footer-whatsapp { color: var(--line); font-weight: 600; font-size: 15px; }
.footer-whatsapp:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 28px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-grid--2 { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { max-width: 100%; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 240px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-nav-cta { display: none; }
  .header-inner { height: 68px; }

  .hero { padding: 56px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-flow { gap: 10px; padding: 16px; }
  .flow-node { font-size: 12px; padding: 7px 10px; }
  .flow-node span:not(.flow-icon) { display: none; }

  .section { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .diagram { gap: 0; }
  .diagram-connector { width: 1px; height: 30px; }
  .diagram { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .floating-chip { display: none; }
  .phone-mockup { width: 220px; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}

/* Mobile nav panel */
@media (max-width: 760px) {
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px 28px;
    gap: 18px;
  }
}

/* ---------- Section CTA wrapper ---------- */
.section-cta { display: flex; justify-content: center; margin-top: 44px; }

/* ---------- Floating WhatsApp button ---------- */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 14px 32px -10px rgba(37,211,102,0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 40px -8px rgba(37,211,102,0.75);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 14px 32px -10px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 14px 32px -6px rgba(37,211,102,0.85); }
}
@media (max-width: 760px) {
  .floating-whatsapp { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

/* ---------- Hero examples strip (replaces phone mockup) ---------- */
.examples-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.example-img {
  width: 130px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -22px rgba(0,0,0,0.7);
  object-fit: cover;
  aspect-ratio: 9 / 16;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.example-img:hover {
  transform: translateY(-6px);
  border-color: var(--line-dim);
}

@media (max-width: 980px) {
  .examples-strip { gap: 12px; }
  .example-img { width: 112px; }
}
@media (max-width: 760px) {
  .examples-strip { gap: 10px; }
  .example-img { width: 100px; }
}
@media (max-width: 480px) {
  .example-img { width: 88px; }
}

/* ---------- Pricing highlight (replaces table) ---------- */
.pricing-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.pricing-highlight-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.pricing-highlight-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 68px);
  color: var(--line);
  line-height: 1;
}
.pricing-highlight-value small {
  font-size: 0.4em;
  vertical-align: top;
  margin-right: 4px;
  color: var(--line);
}
.pricing-highlight-unit {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-muted);
}
.pricing-highlight .pricing-note {
  margin-top: 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}

/* ---------- Depoimentos / testimonial cards (text-based) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--line-dim); }
.quote-icon { color: var(--line); opacity: 0.7; margin-bottom: 14px; }
.testimonial-text { font-size: 15.5px; color: var(--text); line-height: 1.55; margin-bottom: 20px; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { font-size: 14px; }
.testimonial-card footer span { font-size: 12.5px; color: var(--text-faint); }

@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 630px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
