/* ───────────────────────────────────────────────────────────────
   Landing Page — Ezza CRM
   Reutiliza tokens de styles.css; adiciona type, layout e secções.
   ─────────────────────────────────────────────────────────────── */

.landing-body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: oklch(0.98 0.008 95);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

/* container util */
.lp-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* eyebrow */
.lp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.lp-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acc-blue-strong);
  margin-right: 8px;
  vertical-align: 1px;
}

/* display headlines */
.lp-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink);
}
.lp-display em {
  font-style: italic;
  background: linear-gradient(95deg, oklch(0.55 0.16 250) 0%, oklch(0.62 0.18 25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* generic buttons */
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  cursor: default;
  text-decoration: none;
  transition: gap .2s, transform .12s, background .15s;
  box-shadow: 0 12px 28px -12px rgba(20,30,60,.35);
}
.lp-btn:hover { gap: 12px; background: oklch(0.10 0.008 255); }
.lp-btn:active { transform: scale(0.98); }
.lp-btn svg { width: 16px; height: 16px; }

.lp-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid oklch(0.85 0.012 255);
  box-shadow: none;
}
.lp-btn-ghost:hover { background: white; border-color: var(--ink); }

.lp-btn-light {
  background: white;
  color: var(--ink);
  box-shadow: 0 12px 28px -12px rgba(20,30,60,.22);
}
.lp-btn-light:hover { background: oklch(0.97 0.012 250); }

/* navbar */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: oklch(0.98 0.008 95 / 0.78);
  border-bottom: 0.5px solid oklch(0.92 0.012 255);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.lp-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink);
}
.lp-nav-brand img { width: 28px; height: 28px; }
.lp-nav-brand em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.lp-nav-links {
  display: flex; align-items: center; gap: 4px;
}
.lp-nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: -0.005em;
  cursor: default;
}
.lp-nav-link:hover { color: var(--ink); background: oklch(0.96 0.012 250); }

.lp-nav-actions { display: flex; align-items: center; gap: 10px; }
.lp-nav-login {
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  background: none; border: none;
  cursor: default;
  font-family: inherit;
}
.lp-nav-login:hover { text-decoration: underline; }
.lp-nav-cta {
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  cursor: default;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 6px;
}
.lp-nav-cta:hover { background: oklch(0.10 0.008 255); }
.lp-nav-cta svg { width: 14px; height: 14px; }

/* sections base */
.lp-section { padding: 100px 0; position: relative; }
.lp-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.lp-section-head .lp-eyebrow { margin-bottom: 14px; display: block; }
.lp-section-title {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}
.lp-section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 18px auto 0;
  max-width: 580px;
}

/* helpers */
.lp-strong { color: var(--ink); font-weight: 700; }
.lp-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: oklch(0.85 0.012 255);
  cursor: default;
}
.lp-link:hover { text-decoration-color: var(--ink); }

/* ───────────────────────────────────────────────────────────────
   HERO
   ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.4;
  pointer-events: none;
  animation: hero-float 18s ease-in-out infinite;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--acc-pink); top: -200px; left: -100px; }
.hero-blob-2 { width: 500px; height: 500px; background: var(--acc-blue); top: 200px; right: -150px; animation-delay: -6s; }
.hero-blob-3 { width: 400px; height: 400px; background: var(--acc-lav); bottom: -200px; left: 30%; animation-delay: -12s; }
@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -30px) scale(1.08); }
}

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

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 6px 18px -10px rgba(20,30,60,.18);
  letter-spacing: -0.005em;
  margin-bottom: 28px;
}
.hero-tag-badge {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--acc-pink), var(--acc-yellow));
  color: oklch(0.22 0.04 18);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 28px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(95deg, oklch(0.55 0.16 250) 0%, oklch(0.62 0.18 25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin-top: 48px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.hero-stat-l {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.35;
}
.hero-stat-divider { width: 1px; background: oklch(0.85 0.012 255); }

/* hero mockup */
.hero-visual { position: relative; }
.hero-mockup {
  position: relative;
  background: white;
  border-radius: 22px;
  box-shadow:
    0 40px 100px -30px rgba(20,30,60,.35),
    0 12px 24px -12px rgba(20,30,60,.18);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-8deg) rotateX(4deg) rotate(-1deg);
  animation: hero-mk-in 1s 0.2s cubic-bezier(.2,.8,.2,1) backwards;
}
@keyframes hero-mk-in {
  from { opacity: 0; transform: perspective(1600px) rotateY(-8deg) rotateX(4deg) rotate(-1deg) translateY(40px); }
  to   { opacity: 1; transform: perspective(1600px) rotateY(-8deg) rotateX(4deg) rotate(-1deg) translateY(0); }
}
.hero-mockup:hover { transform: perspective(1600px) rotateY(-4deg) rotateX(2deg) rotate(-0.5deg); transition: transform .5s; }

.hero-mk-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: oklch(0.97 0.012 250);
  border-bottom: 0.5px solid oklch(0.92 0.012 255);
}
.hero-mk-dots { display: flex; gap: 6px; }
.hero-mk-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hero-mk-dots span:nth-child(1) { background: #ff5f57; }
.hero-mk-dots span:nth-child(2) { background: #febc2e; }
.hero-mk-dots span:nth-child(3) { background: #28c840; }
.hero-mk-tab {
  font-size: 12px; font-weight: 600;
  padding: 4px 14px;
  background: white;
  border-radius: 999px;
  font-family: var(--font-display); font-style: italic;
  font-size: 14px;
}
.hero-mk-bar-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.hero-mk-pill {
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--acc-mint); color: oklch(0.32 0.12 160);
}

.hero-mk-body { padding: 20px 24px 28px; }
.hero-mk-stats-row { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 10px; margin-bottom: 18px; }
.hero-mk-stat {
  background: oklch(0.97 0.012 250);
  border-radius: 12px;
  padding: 12px 14px;
}
.hero-mk-stat-hl {
  background: linear-gradient(135deg, oklch(0.92 0.07 250) 0%, oklch(0.95 0.06 295) 100%);
}
.hero-mk-stat-lbl { font-size: 10px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-mk-stat-val { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-top: 6px; font-family: var(--font-mono); }
.hero-mk-stat-delta { font-size: 10.5px; font-weight: 700; color: oklch(0.45 0.13 155); margin-top: 2px; }

.hero-mk-chart { height: 90px; position: relative; margin-bottom: 14px; }
.hero-mk-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.hero-mk-chart-bars > div {
  flex: 1;
  background: var(--acc-blue);
  border-radius: 6px 6px 3px 3px;
  animation: bar-grow 1.4s 0.5s cubic-bezier(.2,.8,.2,1) backwards;
}
@keyframes bar-grow { from { height: 0; } }

.hero-mk-funnel { display: flex; flex-direction: column; gap: 6px; }
.hero-mk-funnel-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 10px;
}
.hero-mk-funnel-lbl { font-size: 10.5px; font-weight: 600; color: var(--ink-soft); }
.hero-mk-funnel-bar { height: 7px; background: oklch(0.95 0.012 250); border-radius: 99px; overflow: hidden; }
.hero-mk-funnel-fill {
  height: 100%; border-radius: 99px;
  animation: hero-fill 1.6s 0.6s cubic-bezier(.2,.8,.2,1) backwards;
}
@keyframes hero-fill { from { width: 0 !important; } }
.hero-mk-funnel-val { font-size: 10.5px; font-weight: 700; font-family: var(--font-mono); color: var(--ink); }

/* floating notifs */
.hero-notif {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 24px 48px -14px rgba(20,30,60,.3);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: notif-pop 0.7s cubic-bezier(.2,.8,.2,1) backwards;
}
.hero-notif-1 {
  top: -32px; right: -20px;
  transform: rotate(2deg);
  animation-delay: 1.3s;
}
.hero-notif-2 {
  bottom: -28px; left: -40px;
  transform: rotate(-2deg);
  animation-delay: 1.6s;
}
@keyframes notif-pop {
  from { opacity: 0; transform: translateY(16px) rotate(0deg) scale(0.85); }
}
.hero-notif-ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}
.hero-notif-ic-ok { background: var(--acc-mint); color: oklch(0.30 0.12 160); animation: ll-pulse 1.8s ease-in-out infinite; }
.hero-notif-ic-wa { background: oklch(0.55 0.13 145); color: white; }
.hero-notif-t { font-size: 13px; font-weight: 600; letter-spacing: -0.005em; }
.hero-notif-s { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
@keyframes ll-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.65 0.13 155 / 0.4); }
  50%      { box-shadow: 0 0 0 8px oklch(0.65 0.13 155 / 0); }
}

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 56px; }
  .lp-nav-links { display: none; }
}

/* ───────────────────────────────────────────────────────────────
   LOGOS SECTION
   ─────────────────────────────────────────────────────────────── */
.logos {
  padding: 56px 0;
  border-top: 0.5px solid oklch(0.92 0.012 255);
  border-bottom: 0.5px solid oklch(0.92 0.012 255);
  background: white;
}
.logos-lbl {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logos-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: oklch(0.55 0.012 255);
  letter-spacing: -0.015em;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.logo-chip:hover { opacity: 1; color: var(--ink); }
.logo-chip-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 800;
  letter-spacing: -0.01em;
  color: white;
  font-style: normal;
}

/* ───────────────────────────────────────────────────────────────
   HOW IT WORKS — 4 steps editorial
   ─────────────────────────────────────────────────────────────── */
.how { background: white; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: stretch;
  position: relative;
}
.how-step {
  position: relative;
  padding: 24px 20px;
  border-left: 0.5px solid oklch(0.92 0.012 255);
}
.how-step:first-child { border-left: none; }
.how-step-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--ink-faint);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.how-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.how-step-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-top: 20px;
  background: oklch(0.95 0.012 250);
}
.how-step-ic svg { width: 18px; height: 18px; }
@media (max-width: 980px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step:nth-child(3) { border-left: none; }
}

/* ───────────────────────────────────────────────────────────────
   FEATURES
   ─────────────────────────────────────────────────────────────── */
.features {
  background:
    radial-gradient(700px 500px at 80% 20%, oklch(0.94 0.05 245) 0%, transparent 60%),
    oklch(0.98 0.008 95);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 0.5px solid oklch(0.92 0.012 255);
  box-shadow: 0 8px 24px -16px rgba(20,30,60,.1);
  transition: transform .2s, box-shadow .2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -16px rgba(20,30,60,.18); }
.feat-card-hl {
  background: linear-gradient(180deg, oklch(0.20 0.012 255) 0%, oklch(0.16 0.008 255) 100%);
  color: white;
  border: none;
}
.feat-card-hl .feat-card-title { color: white; }
.feat-card-hl .feat-card-desc { color: oklch(0.85 0.012 255); }

.feat-card-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feat-card-ic svg { width: 22px; height: 22px; stroke-width: 1.8; }
.feat-card-ic-blue { background: var(--acc-blue); color: oklch(0.30 0.16 250); }
.feat-card-ic-pink { background: var(--acc-pink); color: oklch(0.36 0.15 18); }
.feat-card-ic-mint { background: var(--acc-mint); color: oklch(0.32 0.12 160); }
.feat-card-ic-yellow { background: var(--acc-yellow); color: oklch(0.34 0.13 80); }
.feat-card-ic-lav { background: var(--acc-lav); color: oklch(0.34 0.13 295); }
.feat-card-ic-dark { background: oklch(1 0 0 / 0.1); color: var(--acc-mint); }

.feat-card-title { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; }
.feat-card-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.feat-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.feat-card-link svg { width: 12px; height: 12px; transition: transform .2s; }
.feat-card:hover .feat-card-link svg { transform: translateX(3px); }
.feat-card-hl .feat-card-link { color: white; }

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

/* ───────────────────────────────────────────────────────────────
   SHOWCASE
   ─────────────────────────────────────────────────────────────── */
.showcase { background: white; }
.showcase-tabs {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.showcase-tab {
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid oklch(0.92 0.012 255);
  background: white;
  color: var(--ink-soft);
  cursor: default;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 6px;
}
.showcase-tab:hover { border-color: oklch(0.80 0.012 255); color: var(--ink); }
.showcase-tab-on {
  background: var(--ink); color: white; border-color: var(--ink);
}
/* aba ativa em hover continua legível (o :hover genérico pintava o texto de preto no fundo preto) */
.showcase-tab-on:hover { color: white; border-color: var(--ink); }
.showcase-tab svg { width: 13px; height: 13px; }

.showcase-stage {
  position: relative;
  background:
    radial-gradient(800px 500px at 50% 50%, oklch(0.94 0.04 245) 0%, transparent 70%),
    oklch(0.97 0.012 250);
  border-radius: 28px;
  padding: 56px;
  overflow: hidden;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.showcase-content { position: relative; z-index: 2; }
.showcase-eyebrow {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--acc-blue-strong);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.showcase-title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
.showcase-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 28px;
}
.showcase-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.showcase-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.showcase-feat-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--acc-mint); color: oklch(0.30 0.12 160);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.showcase-feat-check svg { width: 11px; height: 11px; stroke-width: 3; }

.showcase-screen {
  position: relative;
  background: white;
  border-radius: 18px;
  box-shadow: 0 32px 80px -32px rgba(20,30,60,.28), 0 8px 20px -10px rgba(20,30,60,.12);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg);
}

@media (max-width: 980px) {
  .showcase-stage { grid-template-columns: 1fr; padding: 36px; }
  .showcase-screen { transform: none; }
}

/* ───────────────────────────────────────────────────────────────
   TESTIMONIALS
   ─────────────────────────────────────────────────────────────── */
.testimonials {
  background:
    radial-gradient(700px 500px at 20% 50%, oklch(0.94 0.06 320) 0%, transparent 60%),
    radial-gradient(700px 500px at 80% 50%, oklch(0.94 0.04 95) 0%, transparent 60%),
    oklch(0.98 0.008 95);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.test-card {
  background: white;
  border-radius: 22px;
  padding: 32px;
  border: 0.5px solid oklch(0.92 0.012 255);
  box-shadow: 0 8px 24px -16px rgba(20,30,60,.1);
  display: flex; flex-direction: column;
  position: relative;
}
.test-card-hl {
  background: linear-gradient(180deg, oklch(0.20 0.012 255) 0%, oklch(0.16 0.008 255) 100%);
  color: white;
  border: none;
}
.test-quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 88px;
  line-height: 0.5;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.test-card-hl .test-quote-mark { color: oklch(0.40 0.012 255); }

.test-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
}
.test-card-hl .test-text { color: white; }

.test-author { display: flex; align-items: center; gap: 12px; }
.test-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.test-name { font-size: 14px; font-weight: 700; letter-spacing: -0.005em; }
.test-role { font-size: 11.5px; color: var(--ink-muted); margin-top: 2px; }
.test-card-hl .test-role { color: oklch(0.72 0.012 255); }

.test-metric {
  position: absolute;
  top: 28px; right: 28px;
  text-align: right;
}
.test-metric-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.test-card-hl .test-metric-n { color: var(--acc-mint); }
.test-metric-l {
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.test-card-hl .test-metric-l { color: oklch(0.72 0.012 255); }

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

/* ───────────────────────────────────────────────────────────────
   COMPARE TABLE
   ─────────────────────────────────────────────────────────────── */
.compare { background: white; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}
.compare-table th, .compare-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid oklch(0.94 0.012 255);
}
.compare-table th { font-weight: 600; color: var(--ink-soft); font-size: 12.5px; }
.compare-table thead th {
  text-align: center;
  font-size: 13px;
  padding-bottom: 14px;
  border-bottom: 1px solid oklch(0.92 0.012 255);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td { text-align: center; }
.compare-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--ink); }

.compare-table .compare-col-ezza {
  background: linear-gradient(180deg, oklch(0.95 0.06 245) 0%, oklch(0.96 0.04 245 / 0.6) 100%);
  position: relative;
}
.compare-table thead .compare-col-ezza {
  border-radius: 16px 16px 0 0;
}
.compare-table tbody tr:last-child .compare-col-ezza {
  border-radius: 0 0 16px 16px;
}

.compare-brand-ezza {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  justify-content: center;
}
.compare-brand-ezza em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.compare-brand-ezza img { width: 22px; height: 22px; }

.compare-brand {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: -0.005em;
}
.compare-yes {
  color: oklch(0.45 0.13 155);
  font-weight: 700;
}
.compare-no {
  color: var(--ink-faint);
}
.compare-partial { color: var(--ink-muted); }
.compare-yes svg, .compare-no svg { width: 18px; height: 18px; }

/* ───────────────────────────────────────────────────────────────
   PRICING INLINE
   ─────────────────────────────────────────────────────────────── */
.pricing-inline {
  background:
    radial-gradient(700px 500px at 50% 0%, oklch(0.94 0.04 245) 0%, transparent 60%),
    oklch(0.97 0.012 250);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 32px 28px 26px;
  border: 0.5px solid oklch(0.92 0.012 255);
  box-shadow: 0 12px 32px -16px rgba(20,30,60,.15);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -16px rgba(20,30,60,.22); }
.price-card-hl {
  background: linear-gradient(180deg, oklch(0.20 0.012 255) 0%, oklch(0.16 0.008 255) 100%);
  color: white;
  border: none;
  transform: scale(1.02);
}
.price-card-hl:hover { transform: scale(1.02) translateY(-4px); }
.price-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(95deg, var(--acc-pink), var(--acc-yellow));
  color: oklch(0.20 0.04 18);
  font-size: 10.5px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.price-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.price-card-hl .price-name { color: white; }
.price-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 22px;
}
.price-card-hl .price-eyebrow { color: oklch(0.78 0.012 255); }
.price-row { display: flex; align-items: baseline; gap: 4px; min-height: 52px; }
.price-currency { font-size: 16px; font-weight: 700; color: var(--ink-soft); }
.price-card-hl .price-currency { color: oklch(0.85 0.012 255); }
.price-n {
  font-size: 48px; font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.price-card-hl .price-n { color: white; }
.price-unit { font-size: 11px; font-weight: 600; color: var(--ink-muted); line-height: 1.2; margin-left: 4px; }
.price-card-hl .price-unit { color: oklch(0.78 0.012 255); }
.price-custom { font-family: var(--font-display); font-style: italic; font-size: 28px; color: var(--ink); align-self: center; }
.price-card-hl .price-custom { color: white; }
.price-setup { font-size: 12px; color: var(--ink-muted); margin-top: 8px; padding-bottom: 4px; border-bottom: 1px solid oklch(0.92 0.012 255); }
.price-card-hl .price-setup { color: oklch(0.80 0.012 255); border-color: oklch(1 0 0 / 0.14); }
.price-card-hl .price-setup b { color: oklch(0.86 0.12 155) !important; }
.price-features {
  list-style: none; padding: 0; margin: 24px 0 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}
.price-card-hl .price-features li { color: oklch(0.92 0.012 255); }
.price-features .price-feat-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--acc-mint); color: oklch(0.30 0.12 160);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card-hl .price-feat-check { background: oklch(0.65 0.13 155); color: oklch(0.18 0.008 255); }
.price-features .price-feat-check svg { width: 10px; height: 10px; stroke-width: 3; }
.price-cta {
  background: oklch(0.95 0.012 250);
  color: var(--ink);
  border: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  cursor: default;
  letter-spacing: -0.005em;
}
.price-cta-hl {
  background: white;
  color: var(--ink);
}
.price-cta:hover { background: oklch(0.92 0.012 250); }
.price-cta-hl:hover { background: oklch(0.97 0.012 250); }
.pricing-foot {
  text-align: center;
  margin-top: 32px;
}
.pricing-foot a { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-hl { transform: none; }
}

/* ───────────────────────────────────────────────────────────────
   ROI CALCULATOR
   ─────────────────────────────────────────────────────────────── */
.roi {
  background:
    radial-gradient(800px 500px at 20% 50%, oklch(0.94 0.06 320) 0%, transparent 60%),
    oklch(0.98 0.008 95);
}
.roi-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  background: white;
  border-radius: 28px;
  padding: 48px;
  border: 0.5px solid oklch(0.92 0.012 255);
  box-shadow: 0 16px 48px -20px rgba(20,30,60,.18);
}
.roi-side h3 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.roi-side > p {
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
  margin: 0 0 28px;
}
.roi-controls { display: flex; flex-direction: column; gap: 22px; }
.roi-control { }
.roi-control-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.roi-control-lbl { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.roi-control-val {
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 700;
  color: var(--ink);
}
.roi-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 99px;
  background: oklch(0.92 0.012 250);
  outline: none;
}
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(20,30,60,.25);
}
.roi-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); border: 3px solid white;
}

.roi-output {
  background:
    radial-gradient(400px 300px at 50% 0%, oklch(0.30 0.05 245) 0%, transparent 70%),
    var(--ink);
  border-radius: 22px;
  padding: 36px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.roi-output::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--acc-pink); border-radius: 50%;
  filter: blur(60px); opacity: 0.25;
}
.roi-output-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: oklch(0.78 0.012 255); margin-bottom: 14px; text-transform: uppercase; }
.roi-output-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  background: linear-gradient(95deg, var(--acc-mint), var(--acc-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.roi-output-unit { font-size: 13px; color: oklch(0.78 0.012 255); margin-bottom: 28px; position: relative; }
.roi-output-rows { display: flex; flex-direction: column; gap: 12px; position: relative; }
.roi-output-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 0.5px solid oklch(1 0 0 / 0.1); font-size: 13px; }
.roi-output-row strong { font-weight: 700; }
.roi-output-row span { color: oklch(0.82 0.012 255); }
.roi-output-row .roi-out-val { font-family: var(--font-mono); font-weight: 600; color: white; }
.roi-output-cta { margin-top: 24px; width: 100%; justify-content: center; }

@media (max-width: 980px) {
  .roi-inner { grid-template-columns: 1fr; padding: 32px; }
  .roi-side h3 { font-size: 36px; }
}

/* ───────────────────────────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────────────────────────── */
.faq { background: white; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 0.5px solid oklch(0.92 0.012 255);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  transition: background .15s;
}
.faq-item-open { background: oklch(0.98 0.008 95); border-color: oklch(0.85 0.012 255); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: default;
  width: 100%;
  text-align: left;
  letter-spacing: -0.005em;
}
.faq-q-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: oklch(0.94 0.012 250);
  display: grid; place-items: center;
  color: var(--ink-soft);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .25s, background .15s;
}
.faq-item-open .faq-q-mark {
  background: var(--ink);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 20px 20px 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 90%;
  letter-spacing: -0.005em;
  animation: faq-open .25s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────────────────────────────────────
   CTA FINAL
   ─────────────────────────────────────────────────────────────── */
.cta-final {
  background:
    radial-gradient(900px 600px at 20% 30%, oklch(0.30 0.05 250) 0%, transparent 60%),
    radial-gradient(900px 600px at 80% 70%, oklch(0.30 0.08 18) 0%, transparent 60%),
    var(--ink);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-final::before { width: 400px; height: 400px; background: var(--acc-blue); top: -120px; left: 20%; opacity: 0.18; }
.cta-final::after  { width: 400px; height: 400px; background: var(--acc-pink); bottom: -120px; right: 20%; opacity: 0.18; }

.cta-final-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 24px;
  color: white;
}
.cta-final h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--acc-mint), var(--acc-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final p {
  font-size: 17px;
  color: oklch(0.85 0.012 255);
  line-height: 1.5;
  margin: 0 0 40px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.cta-final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-final-trust {
  margin-top: 40px;
  display: flex; justify-content: center; align-items: center; gap: 20px;
  font-size: 12px;
  color: oklch(0.72 0.012 255);
}
.cta-final-trust > span { display: flex; align-items: center; gap: 6px; }
.cta-final-trust svg { width: 12px; height: 12px; color: var(--acc-mint); stroke-width: 3; }

@media (max-width: 980px) {
  .cta-final h2 { font-size: 56px; }
  .cta-final-trust { flex-direction: column; gap: 8px; }
}

/* ───────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────────── */
.lp-footer {
  background: oklch(0.97 0.008 95);
  padding: 64px 0 32px;
  border-top: 0.5px solid oklch(0.92 0.012 255);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid oklch(0.92 0.012 255);
}
.footer-brand { }
.footer-brand img { width: 32px; height: 32px; margin-bottom: 14px; }
.footer-brand-name {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.footer-brand-name em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.footer-brand p {
  font-size: 12.5px; color: var(--ink-muted); line-height: 1.5;
  margin: 0 0 18px;
  max-width: 260px;
}
.footer-newsletter {
  display: flex; gap: 4px;
  background: white;
  padding: 4px;
  border-radius: 999px;
  border: 0.5px solid oklch(0.90 0.012 255);
  box-shadow: 0 4px 14px -8px rgba(20,30,60,.12);
  max-width: 320px;
}
.footer-newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12.5px;
  padding: 8px 14px;
  outline: none;
  letter-spacing: -0.005em;
}
.footer-newsletter button {
  background: var(--ink);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: default;
  letter-spacing: -0.005em;
}
.footer-newsletter button:hover { background: oklch(0.10 0.008 255); }

.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11.5px;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-badges { display: flex; align-items: center; gap: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: white;
  border: 0.5px solid oklch(0.92 0.012 255);
  color: var(--ink-soft);
}
.footer-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

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

/* ── Aviso de cookies (LGPD) ─────────────────────────────────── */
.lp-cookies {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 900;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid rgba(20,30,60,.10);
  border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 18px 48px -18px rgba(20,30,60,.35);
  animation: lpCookiesUp .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes lpCookiesUp { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
.lp-cookies-txt { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.lp-cookies-txt strong { font-size: 13.5px; color: var(--ink); }
.lp-cookies-txt span { font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }
.lp-cookies-txt a { color: var(--acc-lav); font-weight: 600; text-decoration: none; }
.lp-cookies-txt a:hover { text-decoration: underline; }
.lp-cookies-btn {
  flex-shrink: 0; border: none; cursor: pointer;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600; font-family: var(--font-ui);
  padding: 11px 22px; border-radius: 999px;
}
.lp-cookies-btn:hover { opacity: .88; }
@media (max-width: 640px) {
  .lp-cookies { flex-direction: column; align-items: stretch; gap: 12px; text-align: left; }
  .lp-cookies-btn { width: 100%; }
}
