/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --primary:       #7c3aed;
  --primary-mid:   #6d28d9;
  --primary-dark:  #5b21b6;
  --primary-glow:  rgba(124, 58, 237, .22);
  --accent-soft:   #ede9fe;
  --accent-mid:    #ddd6fe;

  --text:          #0d0b18;
  --text-soft:     #52506a;
  --text-muted:    #9896b2;
  --border:        #eceaf5;
  --border-mid:    #dddaee;
  --bg:            #ffffff;
  --bg-soft:       #ffffff;
  --bg-tint:       #ffffff;

  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  40px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 4px rgba(13, 11, 24, .04);
  --shadow-sm: 0 4px 16px rgba(13, 11, 24, .06);
  --shadow-md: 0 12px 40px rgba(13, 11, 24, .09);
  --shadow-lg: 0 30px 72px rgba(13, 11, 24, .13);

  --container: 1240px;
  --section-y: 128px;
  --font-heading: "Geist", "Geist Fallback", "Plus Jakarta Sans", Inter, sans-serif;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

html { scroll-behavior: smooth; }

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

/* Headings usam Plus Jakarta Sans */
h1, h2, h3, h4,
.eyebrow, .section-kicker,
.stat-number, .price-name, .price-main strong,
.btn, .nav-links a, .brand, .step-number {
  font-family: var(--font-heading);
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

section { padding: var(--section-y) 0; }

/* ─────────────────────────────────────────────
   ANIMATION
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }
.delay-4 { transition-delay: .34s; }

@keyframes text-shimmer {
  0% { background-position: 120% 50%; }
  100% { background-position: -20% 50%; }
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: box-shadow .22s, transform .22s, background .22s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--primary-glow);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm  { min-height: 50px; padding: 0 22px; font-size: .92rem; }
.btn-lg  { min-height: 60px; padding: 0 36px; font-size: 1.05rem; }
.btn-full { display: flex; width: 100%; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(13,11,24,.06);
}
.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-toggle,
.nav-mobile-panel {
  display: none;
}
.brand-logo, .footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-xs);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.nav-mobile-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 24px;
  right: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s;
}
.nav-mobile-link {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link:last-of-type {
  border-bottom: none;
}
.nav-mobile-cta {
  margin-top: 8px;
}
.nav.nav-open .nav-mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────
   PILLS / KICKERS
───────────────────────────────────────────── */
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1px solid transparent;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-kicker--light {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

/* ─────────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────────── */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-heading h2 {
  margin-top: 20px;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
}
.ecosystem-sub {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -.01em;
}
.section-heading--light h2,
.section-heading--light p { color: #fff; }
.section-heading p {
  margin-top: 18px;
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: #ffffff;
}
.hero .container {
  width: min(86%, 1480px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* Copy */
.hero-copy h1 {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.7vw, 62px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.05em;
  color: var(--text);
  text-wrap: balance;
}
.hero-copy h1 em {
  font-style: normal;
  position: relative;
  color: transparent;
  background-image: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 42%, #c4b5fd 50%, var(--primary) 58%, var(--primary-dark) 100%);
  background-size: 220% 100%;
  background-position: 120% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-shimmer 1.2s ease-out 0.5s 1 forwards;
}
.hero-lead {
  margin-top: 22px;
  font-size: 17px;
  color: #000000;
  line-height: 1.65;
  max-width: 520px;
}
.hero-lead-sub {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}
.hero-actions { margin-top: 36px; }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  list-style: none;
}
.hero-checks li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}
.hero-checks li::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 800;
}
.pricing-checks {
  justify-content: center;
  margin-top: 48px;
}

/* Proof widget */
.hero-copy,
.hero-visual {
  min-width: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-proof {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
}
.hero-proof--showcase {
  width: 100%;
  max-width: none;
}
.hero-proof--showcase .hero-showcase:first-child {
  margin-top: 0;
}

.hero-proof-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px 16px;
}
.proof-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-label--before { color: var(--text-muted); }
.proof-label--after  { color: var(--primary); }
.proof-divider {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border-mid);
}
.hero-proof-labels--showcase {
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 18px;
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.12);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  white-space: nowrap;
}

.hero-showcase {
  position: relative;
  padding: 0;
  background: transparent;
}
.hero-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-proof-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: transparent;
  border-top: none;
}
.proof-foot-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
}
.proof-foot-item {
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-foot-item--before {
  background: transparent;
}
.proof-foot-item--after {
  background: transparent;
  position: relative;
}
.proof-foot-item strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.proof-foot-item--before strong { color: var(--text-muted); }
.proof-foot-item--after strong  { color: var(--primary-dark); }
.proof-foot-item--before strong::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.proof-foot-item--after strong::before {
  content: "✓";
  font-size: 11px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-foot-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.proof-foot-item--after p { color: var(--primary-mid); }
.hero-proof-footer--showcase {
  grid-template-columns: 1fr;
}
.hero-proof-footer--showcase .proof-foot-item--after {
  background: #ffffff;
}

/* ─────────────────────────────────────────────
   HERO LEAD HIGHLIGHT
───────────────────────────────────────────── */
.hero-lead-highlight {
  display: inline;
  font-weight: 800;
  color: #fff;
  background: #4c1d95;
  padding: 2px 6px 3px;
  border-radius: 6px;
}

/* ─────────────────────────────────────────────
   NICHOS
───────────────────────────────────────────── */
.niches-section {
  padding: 40px 0;
  background: #ffffff;
  text-align: center;
}

.niches-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #191328;
  margin-bottom: 24px;
}

.niches-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

.niches-list li {
  padding: 10px 20px;
  border-radius: 999px;
  background: #4c1d95;
  border: 1px solid #4c1d95;
  color: #ffffff;
  font-size: .88rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .niches-section { padding: 32px 0; }
  .niches-list { gap: 8px; }
  .niches-list li { padding: 8px 14px; font-size: .82rem; }
}

/* ─────────────────────────────────────────────
   SEÇÃO DE DOR
───────────────────────────────────────────── */
.pain-section {
  background: var(--primary);
  color: #fff;
  padding: var(--section-y) 0;
}

.pain-inner {
  max-width: var(--container);
}

.pain-section .eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #ffffff;
}

.pain-copy {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.pain-copy h2 {
  margin-top: 18px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: #ffffff;
}

.pain-storytelling {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.pain-story-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 0 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%),
    rgba(255,255,255,.02);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  text-align: center;
  overflow: hidden;
}

.pain-story-step h3 {
  padding: 0 16px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: #fff;
}

.pain-story-media {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pain-story-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.pain-story-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pain-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pain-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}

.pain-list li:first-child { border-top: 1px solid rgba(255,255,255,.07); }

.pain-x {
  font-size: 16px;
  font-weight: 800;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-list em {
  font-style: italic;
  color: rgba(255,255,255,.9);
}

.pain-reveal {
  margin-top: 34px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.pain-reveal-intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pain-reveal-title {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.pain-capabilities {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.pain-capabilities li {
  position: relative;
  padding: 4px 0 4px 38px;
  font-size: 24px;
  font-weight: 500;
  font-family: 'Newsreader', serif;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0;
}

.pain-capabilities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   FUNDADOR
───────────────────────────────────────────── */
.founder {
  display: none;
  background: var(--bg);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.founder-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── photo column ── */
.founder-photo-wrap {
  position: sticky;
  top: 104px;
}

.founder-photo-img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: var(--shadow-lg);
}

.founder-namecard {
  margin-top: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-namecard strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
}
.founder-namecard span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── copy column ── */
.founder-copy .section-kicker { margin-bottom: 20px; }

.founder-intro {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 28px;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -.02em;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.founder-body p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
}

.founder-nots {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.founder-nots li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.founder-nots li:last-child { border-bottom: none; }
.founder-nots li::before {
  content: "—";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.founder-quote {
  border-left: 4px solid var(--primary);
  margin: 0 0 32px;
  padding: 20px 24px;
  background: var(--bg-tint);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  font-style: normal;
  color: var(--text);
  line-height: 1.4;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -.02em;
}

.founder-credentials {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.founder-credentials-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
}
.founder-credentials p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* kicker mobile-only — hidden on desktop */
.founder-kicker-mobile { display: none; }

@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-kicker-mobile { display: inline-flex; }
  .founder-copy .section-kicker { display: none; }
  .founder-photo-wrap {
    position: static;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: end;
  }
  .founder-photo-img { aspect-ratio: 1; }
  .founder-namecard { margin-top: 0; }
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 112px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 48px;
  text-align: center;
}
.stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  max-width: 160px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   ECOSYSTEM / STEPS
───────────────────────────────────────────── */
.ecosystem {
  background: var(--bg-soft);
  padding: var(--section-y) 0;
}

.ecosystem-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

/* ── copy column ── */
.ecosystem-copy .section-kicker { margin-bottom: 20px; }

.ecosystem-copy h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.ecosystem-lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ecosystem-hook {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}
.ecosystem-hook strong { color: var(--primary); }

.ecosystem-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.ecosystem-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.5;
}
.ecosystem-checks li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ecosystem-closing {
  border-top: 1px solid var(--border-mid);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ecosystem-closing p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.ecosystem-closing strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -.01em;
}

/* ── steps column ── */
.ecosystem-steps {
  position: sticky;
  top: 104px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.eco-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.eco-step--last { border-bottom: none; }

.eco-step-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1.5px solid transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-step-badge--final {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.eco-step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
}
.eco-step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────
   BENEFITS
───────────────────────────────────────────── */
.benefits {
  background: var(--primary);
  padding: var(--section-y) 0;
}

.benefits-heading {
  text-align: center;
  margin-bottom: 64px;
}
.benefits-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-top: 16px;
}

.benefits-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 56px;
}

.benefit-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 28px;
  color: rgba(255,255,255,.7);
}

.benefit-step {
  background: #fff;
  border: 1px solid rgba(91,33,182,.16);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: 0 20px 44px rgba(59, 18, 120, .16);
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}
.benefit-step:hover {
  background: #fff;
  border-color: rgba(91,33,182,.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(59, 18, 120, .22);
}
.benefit-step--highlight {
  background: #fff;
  border-color: rgba(91,33,182,.24);
}
.benefit-step--highlight:hover {
  background: #fff;
  border-color: rgba(91,33,182,.34);
}

.benefit-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}

.benefit-step-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #4c1d95;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -.02em;
}
.benefit-step-body p {
  font-size: 15px;
  color: rgba(76,29,149,.78);
  line-height: 1.7;
}

.benefits-urgency {
  background: #fff;
  border: 1px solid rgba(91,33,182,.16);
  border-radius: var(--r-xl);
  padding: 28px 36px;
  text-align: center;
  box-shadow: 0 24px 52px rgba(59, 18, 120, .16);
}
.benefits-urgency p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(76,29,149,.82);
  line-height: 1.75;
}
.benefits-urgency strong {
  color: #4c1d95;
  font-weight: 700;
}
.benefits-urgency-alert {
  margin-top: 20px;
  font-size: clamp(17px, 1.8vw, 21px) !important;
  font-weight: 700 !important;
  color: #4c1d95 !important;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -.02em;
  opacity: .95;
  border-top: 1px solid rgba(91,33,182,.12);
  padding-top: 18px;
}

/* ─────────────────────────────────────────────
   INTEGRATIONS
───────────────────────────────────────────── */
.integrations { background: var(--bg-soft); }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.integration {
  min-height: 108px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s;
}
.integration:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.integration img {
  width: 100%;
  max-width: 140px;
  max-height: 46px;
  object-fit: contain;
}
.integration--named {
  flex-direction: column;
  gap: 10px;
}
.integration-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.integration--stripe img,
.integration--whatsapp img {
  max-width: 46px;
  max-height: 46px;
  border-radius: var(--r-sm);
}
.integration--mercadopago img,
.integration--melhorenvio img {
  max-width: 175px;
  max-height: 57.5px;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials {
  background: var(--primary);
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(91,33,182,.16);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 44px rgba(59, 18, 120, .16);
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.testimonial-card:hover {
  background: #fff;
  border-color: rgba(91,33,182,.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(59, 18, 120, .22);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
}
.testimonial-card > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(76,29,149,.82);
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(91,33,182,.12);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-footer strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #4c1d95;
}
.testimonial-footer span {
  display: block;
  font-size: 13px;
  color: rgba(76,29,149,.62);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   PRICING
───────────────────────────────────────────── */
.pricing { background: #fff; }

.addon-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 28px;
  margin-bottom: 32px;
  border-radius: var(--r-xl);
  background: var(--bg-tint);
  border: 1.5px solid var(--accent-mid);
}
.addon-callout-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--r-md);
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.addon-callout-text {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.addon-callout-text strong { font-weight: 800; }
.addon-callout > p {
  font-size: 14px;
  color: var(--text-soft);
  flex-basis: 100%;
  margin-top: -6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 48px rgba(124,58,237,.15);
  transform: translateY(-6px);
}
.price-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(124,58,237,.2);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.price-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  display: block;
}
.price-main strong {
  display: block;
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.price-main span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}
.pricing-tag {
  display: inline-flex;
  align-items: center;
  height: 34px;
  margin-top: 14px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1px solid transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.price-features-intro {
  margin: 24px 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}
.price-features {
  list-style: none;
  margin: 24px 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features-intro + .price-features {
  margin-top: 0;
}
.price-features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}
.feat-off { color: var(--text-muted); }
.feat-off::before { background: var(--border-mid) !important; }

.price-card .btn {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.pricing-addon-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq {
  background: var(--bg);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.faq .section-heading { margin-bottom: 52px; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  transition: background .2s;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--bg-soft); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 1.5px solid var(--accent-mid);
  position: relative;
  transition: background .2s, transform .3s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px;  height: 12px; }

.faq-item[open] .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 0 28px 22px;
  background: #fff;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(255,255,255,.08), transparent);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.final-cta p {
  font-size: 20px;
  opacity: .85;
  margin-top: 18px;
}
.final-cta .btn { margin-top: 36px; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-copy {
  text-align: right;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 1100px
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-visual { justify-content: center; }
  .hero-proof--showcase { max-width: 100%; margin: 0 auto; }
  .hero-copy h1 { font-size: clamp(38px, 6vw, 60px); }
  .benefits-steps { grid-template-columns: 1fr; gap: 16px; }
  .benefit-step-arrow { display: none; }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 24px 32px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .ecosystem-split { grid-template-columns: 1fr; gap: 48px; }
  .ecosystem-steps { position: static; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 820px
───────────────────────────────────────────── */
@media (max-width: 820px) {
  .nav {
    position: sticky;
  }
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle,
  .nav-mobile-panel { display: flex; }
  .stat-divider { display: none; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: auto;
  }
  .stat-item {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 768px
───────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-y: 72px; }

  .container { width: min(100% - 36px, var(--container)); }
  .hero .container { width: min(100% - 36px, var(--container)); }

  /* ── Hero ── */
  .hero { padding: 15px 0 64px; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { font-size: 38px; letter-spacing: -.04em; line-height: 1.2; }
  .hero-lead { font-size: 15px; max-width: 100%; text-align: center; }
  .hero-lead-sub { font-size: 13px; }
  .hero-checks:not(.pricing-checks) { display: none; }
  .hero-proof-labels--showcase {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 14px;
  }
  .hero-proof-footer { grid-template-columns: 1fr 1fr; }
  .proof-foot-divider { display: none; }
  .proof-foot-item { padding: 14px 0 0; }
  .hero-proof-footer--showcase { grid-template-columns: 1fr; }
  .hero-proof-footer--showcase .proof-foot-item {
    text-align: center;
    align-items: center;
  }

  /* ── Section headings ── */
  .section-heading h2 { font-size: 30px; letter-spacing: -.025em; }
  .section-heading p  { font-size: 16px; }
  .section-heading    { margin-bottom: 48px; }

  /* ── Pain section ── */
  .pain-inner { text-align: center; }
  .pain-copy h2 { font-size: 28px; }
  .pain-storytelling {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 4px 0;
    margin: 0 -16px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }
  .pain-storytelling::-webkit-scrollbar { display: none; }
  .pain-storytelling.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }
  .pain-story-step {
    flex: 0 0 74%;
    scroll-snap-align: center;
    padding: 0 0 16px;
    text-align: center;
  }
  .pain-story-step:first-child { margin-left: 16px; }
  .pain-story-step h3 { font-size: 16px; }
  .pain-story-placeholder {
    aspect-ratio: 4 / 3;
  }
  .pain-reveal { text-align: left; }
  .pain-capabilities { grid-template-columns: 1fr; gap: 18px; }
  .pain-capabilities li { font-size: 22px; padding-left: 36px; }

  /* ── Ecosystem ── */
  .ecosystem-copy { text-align: center; }
  .ecosystem-copy h2 { font-size: 28px; }
  .ecosystem-hook { text-align: left; }
  .ecosystem-checks { text-align: left; }
  .ecosystem-closing { text-align: left; }

  /* ── Benefits ── */
  .benefits-steps { grid-template-columns: 1fr; gap: 12px; }
  .benefit-step-arrow { display: none; }
  .benefit-step { padding: 24px 20px; }

  /* ── Integrations ── */
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Testimonials / Pricing ── */
  .testimonials-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  .price-card--featured,
  .price-card--featured:hover { transform: none; }

  .price-card,
  .testimonial-card { padding: 24px; }

  /* ── Addon callout ── */
  .addon-callout { flex-direction: column; align-items: flex-start; }

  /* ── Founder ── */
  .founder-photo {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .founder-photo-wrap {
    display: block;
    width: 96px;
    flex-shrink: 0;
  }
  .founder-photo-img { aspect-ratio: 1; width: 100%; }
  .founder-namecard {
    flex: 1;
    margin-top: 0;
    background: transparent;
    border: none;
    padding: 0;
  }
  .founder-intro { font-size: 18px; }
  .founder-quote { font-size: 17px; }

  /* ── Footer ── */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-copy { text-align: center; }

  /* ── Final CTA ── */
  .final-cta { padding: 72px 0; }
  .final-cta h2 { font-size: 28px; }
}

/* =====================================================
   CASE ENCANTTO
   ===================================================== */
#case-encantto {
  background: #fff;
  padding: 80px 0;
}

.case-proof {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.case-proof-media {
  position: relative;
}

.case-proof-media::after {
  content: "";
  position: absolute;
  inset: auto 18px -14px 18px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,58,237,.26) 0%, rgba(124,58,237,0) 72%);
  filter: blur(12px);
}

.case-proof-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(32, 18, 58, .22);
}

.case-proof-content {
  min-width: 0;
  padding: clamp(8px, 1vw, 12px) 0;
}

.case-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-proof-content h2 {
  color: #191328;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  max-width: 14ch;
}

.case-proof-quote {
  margin: 0 0 28px;
  color: #52486a;
}

.case-proof-quote p {
  font-size: 1.03rem;
  line-height: 1.78;
  margin-bottom: 16px;
}

.case-proof-quote p:last-child {
  margin-bottom: 0;
}

.case-proof-highlight {
  color: #4c1d95;
  font-weight: 700;
}

.case-proof-result {
  margin: 0 0 28px;
  padding: 16px 20px;
  border-radius: var(--r-lg, 16px);
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(124,58,237,.04));
  border: 1px solid rgba(124,58,237,.18);
}

.case-proof-result strong {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: #4c1d95;
  letter-spacing: -.01em;
  line-height: 1.4;
}

.case-proof-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(124,58,237,.12);
}

.case-proof-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #5e5375;
  font-size: .95rem;
}

.case-proof-logo {
  width: min(208px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.case-proof-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.case-proof-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 150px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(124,58,237,.14);
  color: #4c1d95;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(91, 33, 182, .08);
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}

.case-proof-links a:hover {
  color: #6d28d9;
  border-color: rgba(124,58,237,.26);
  box-shadow: 0 16px 28px rgba(91, 33, 182, .12);
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .case-proof-links {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  .case-proof-links a {
    min-width: 176px;
  }
}

@media (max-width: 900px) {
  #case-encantto { padding: 56px 0; }
  .case-proof {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .case-proof-content h2 {
    max-width: none;
  }
  .case-proof-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .case-proof-brand {
    align-items: center;
  }
  .case-proof-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .case-proof-photo {
    aspect-ratio: 4 / 4.65;
    border-radius: 22px;
  }
  .case-proof-content h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.06;
    margin-bottom: 18px;
  }
  .case-proof-quote p {
    font-size: .98rem;
    line-height: 1.68;
  }
}

/* ─────────────────────────────────────────────
   SUPPORT FAB (floating WhatsApp/support button)
───────────────────────────────────────────── */
.support-fab {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .18s ease;
}

.support-fab svg {
  width: 26px;
  height: 26px;
}

.support-fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .support-fab {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
  .support-fab svg {
    width: 24px;
    height: 24px;
  }
}
