/* Imobl — landing conversion-focused */
:root {
  --lp-ink: #0c1222;
  --lp-ink-soft: #1e293b;
  --lp-muted: #64748b;
  --lp-line: #e2e8f0;
  --lp-bg: #f1f5f9;
  --lp-surface: #ffffff;
  --lp-accent: #5b4dff;
  --lp-accent-dark: #4338ca;
  --lp-teal: #0d9488;
  --lp-success: #059669;
  --lp-radius: 14px;
  --lp-radius-sm: 10px;
  --lp-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --lp-shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12);
  --lp-header-h: 72px;
  --lp-max: 1280px;
  --lp-gradient: linear-gradient(135deg, #5b4dff 0%, #2563eb 45%, #0d9488 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-ink-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lp-wrap {
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Header */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--lp-header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}

.lp-header-inner {
  max-width: var(--lp-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-header {
  height: 60px;
  width: auto;
}

/* Buttons (names preserved for analytics / scripts) */
.btn-cta-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--lp-gradient);
  color: #fff !important;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(91, 77, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta-purple:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(91, 77, 255, 0.4);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--lp-accent) !important;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: var(--lp-shadow-lg);
  transition: transform 0.15s ease;
}

.btn-cta-white:hover {
  transform: translateY(-1px);
}

.btn-cta-outline-purple {
  background: var(--lp-surface);
  color: var(--lp-accent) !important;
  border: 2px solid var(--lp-accent);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-cta-outline-purple:hover {
  background: rgba(91, 77, 255, 0.06);
}

/* Hero */
.lp-hero {
  padding-top: calc(var(--lp-header-h) + 3rem);
  padding-bottom: 4rem;
  background: var(--lp-gradient);
  color: #fff;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -25%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 30%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

/* Decoração flutuante (quase transparente) */
.lp-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  animation: lp-hero-blob-drift 22s ease-in-out infinite;
}

.lp-hero-blob--a {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  top: -12%;
  right: -8%;
  background: rgba(255, 255, 255, 0.22);
  animation-delay: -4s;
}

.lp-hero-blob--b {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  bottom: -6%;
  left: -10%;
  background: rgba(165, 243, 252, 0.2);
  animation: lp-hero-blob-drift 26s ease-in-out infinite reverse;
  animation-delay: -8s;
}

.lp-hero-blob--c {
  width: 140px;
  height: 140px;
  top: 42%;
  left: 8%;
  background: rgba(199, 210, 254, 0.18);
  filter: blur(36px);
  animation: lp-hero-blob-drift 18s ease-in-out infinite;
  animation-delay: -2s;
}

.lp-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: lp-hero-float 16s ease-in-out infinite;
}

.lp-hero-ring--1 {
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  top: 12%;
  right: 8%;
  animation-delay: -1s;
}

.lp-hero-ring--2 {
  width: 72px;
  height: 72px;
  bottom: 28%;
  left: 6%;
  border-color: rgba(255, 255, 255, 0.1);
  animation: lp-hero-float 12s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.lp-hero-square {
  position: absolute;
  width: clamp(72px, 10vw, 120px);
  height: clamp(72px, 10vw, 120px);
  top: 22%;
  left: 18%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  animation: lp-hero-square-drift 24s ease-in-out infinite;
}

.lp-hero-svg {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  animation: lp-hero-float 14s ease-in-out infinite;
}

.lp-hero-svg--house {
  width: clamp(56px, 7vw, 88px);
  height: auto;
  top: 18%;
  left: 4%;
  animation-duration: 17s;
  animation-delay: -3s;
}

.lp-hero-svg--chart {
  width: clamp(48px, 6vw, 76px);
  height: auto;
  bottom: 14%;
  right: 6%;
  animation-duration: 19s;
  animation-delay: -6s;
}

.lp-hero-svg--coin {
  width: clamp(44px, 5.5vw, 68px);
  height: auto;
  top: 52%;
  right: 4%;
  animation: lp-hero-float 15s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.lp-hero-svg--shield {
  width: clamp(40px, 5vw, 64px);
  height: auto;
  bottom: 38%;
  left: 22%;
  opacity: 0.9;
  animation: lp-hero-float 21s ease-in-out infinite;
  animation-delay: -9s;
}

.lp-hero-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: lp-hero-twinkle 5s ease-in-out infinite;
}

.lp-hero-dot--1 {
  width: 6px;
  height: 6px;
  top: 30%;
  right: 22%;
  animation-delay: 0s;
}

.lp-hero-dot--2 {
  width: 4px;
  height: 4px;
  top: 62%;
  left: 14%;
  opacity: 0.8;
  animation-delay: -1.5s;
}

.lp-hero-dot--3 {
  width: 5px;
  height: 5px;
  bottom: 22%;
  right: 28%;
  animation-delay: -3s;
}

@keyframes lp-hero-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(10px, -14px);
  }
  66% {
    transform: translate(-8px, 10px);
  }
}

@keyframes lp-hero-blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-16px, 12px) scale(1.04);
  }
  70% {
    transform: translate(12px, -10px) scale(0.98);
  }
}

@keyframes lp-hero-square-drift {
  0%,
  100% {
    transform: rotate(14deg) translate(0, 0);
  }
  50% {
    transform: rotate(22deg) translate(-8px, 12px);
  }
}

@keyframes lp-hero-twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-blob,
  .lp-hero-ring,
  .lp-hero-square,
  .lp-hero-svg,
  .lp-hero-dot {
    animation: none !important;
  }

  .lp-hero-square {
    transform: rotate(16deg);
  }
}

.lp-hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.lp-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.lp-hero-lead {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.lp-hero-lead-mark {
  display: inline-block;
  padding: 0.06em 0.45em 0.08em;
  margin: 0 0.06em;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
}

.lp-hero-lead-mark-text {
  font-weight: 700;
  background: linear-gradient(135deg, var(--lp-accent) 0%, #4f46e8 42%, #3730a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lp-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.lp-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.975rem;
}

.lp-hero-bullets .material-symbols-outlined {
  font-size: 1.25rem;
  flex-shrink: 0;
  opacity: 0.95;
}

.lp-hero-bullets .lp-hero-bullet-icon--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0.95;
}

.lp-hero-bullets .lp-hero-bullet-icon--whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.lp-hero-note {
  font-size: 0.875rem;
  opacity: 0.88;
  margin: 0;
}

.lp-hero-visual {
  position: relative;
  padding-top: 0;
  padding-bottom: 1rem;
}

.lp-browser {
  background: var(--lp-surface);
  border-radius: var(--lp-radius);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--lp-line);
}

.lp-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ball-red {
  background: #fa3432;
}
.ball-yellow {
  background: #febc03;
}
.ball-green {
  background: #18c167;
}

.lp-browser-body {
  padding: 4px;
  background: #fff;
}

.lp-browser-body img {
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  max-height: min(52vh, 420px);
}

.lp-hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.lp-mini-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

/* Hero — pseudo-telas (estilo SaaS / referência) */
.lp-mock-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: min(100%, 432px);
  margin-left: auto;
  margin-right: 0;
}

.lp-mock-scene {
  position: relative;
  margin-bottom: clamp(1.1rem, 2.8vw, 1.85rem);
}

.lp-mock-scene:last-child {
  margin-bottom: 0;
}

.lp-mock-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  padding: 0.5rem 1rem 0.5rem 0.65rem;
  max-width: 100%;
  background: rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(147, 197, 253, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.12);
}

.lp-mock-title-badge .material-symbols-outlined {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lp-mock-title-text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.lp-mock-window {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 56px -22px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  overflow: visible;
}

.lp-mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 8px 10px;
  background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
  border-radius: 14px 14px 0 0;
}

.lp-mock-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 48px;
  flex-shrink: 0;
}

.lp-mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.lp-mock-dot--r {
  background: #fb7185;
}
.lp-mock-dot--y {
  background: #fbbf24;
}
.lp-mock-dot--g {
  background: #34d399;
}

.lp-mock-urlwrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.lp-mock-chrome-spacer {
  width: 48px;
  flex-shrink: 0;
}

.lp-mock-urlbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 5px 11px;
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-mock-url-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.lp-mock-body {
  padding: 10px 10px 11px;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 11px,
      rgba(148, 163, 184, 0.07) 11px,
      rgba(148, 163, 184, 0.07) 12px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 11px,
      rgba(148, 163, 184, 0.07) 11px,
      rgba(148, 163, 184, 0.07) 12px
    );
  border-radius: 0 0 12px 12px;
}

.lp-mock-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.lp-mock-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.lp-mock-metric-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.lp-mock-metric-label {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-mock-metric-val {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.lp-mock-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 52px;
  margin-bottom: 8px;
  padding: 0 2px;
}

.lp-mock-bar {
  flex: 1;
  min-height: 8px;
  height: var(--lp-h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #a78bfa 0%, #6366f1 55%, #4f46e5 100%);
  opacity: 0.92;
}

.lp-mock-bar:nth-child(2) {
  background: linear-gradient(180deg, #7dd3fc 0%, #0ea5e9 100%);
}
.lp-mock-bar:nth-child(3) {
  background: linear-gradient(180deg, #c4b5fd 0%, #7c3aed 100%);
}
.lp-mock-bar:nth-child(4) {
  background: linear-gradient(180deg, #5eead4 0%, #14b8a6 100%);
}
.lp-mock-bar:nth-child(5) {
  background: linear-gradient(180deg, #93c5fd 0%, #2563eb 100%);
}
.lp-mock-bar:nth-child(6) {
  background: linear-gradient(180deg, #a5b4fc 0%, #6366f1 100%);
}

.lp-mock-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lp-mock-lines span {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #e2e8f0, #f1f5f9);
}

.lp-mock-lines span:nth-child(2) {
  width: 88%;
}
.lp-mock-lines span:nth-child(3) {
  width: 72%;
}

.lp-mock-toolbar {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.lp-mock-pill {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.lp-mock-pill--accent {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border-color: transparent;
}

.lp-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 7px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.lp-mock-avatar {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, #e0e7ff, #cffafe);
  flex-shrink: 0;
}

.lp-mock-row-text {
  flex: 1;
  min-width: 0;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.25;
}

.lp-mock-chip {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  flex-shrink: 0;
}

.lp-mock-chip--muted {
  background: #f1f5f9;
  color: #64748b;
}

.lp-mock-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.lp-mock-col {
  padding: 6px 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-mock-col-h {
  font-size: 0.5rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-mock-col-n {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
}

.lp-mock-col-line {
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
}

.lp-mock-col-line--short {
  width: 70%;
}

.lp-mock-wa-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-mock-wa-bubble {
  max-width: 58%;
  padding: 6px 8px;
  border-radius: 10px 10px 10px 4px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.lp-mock-wa-name {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 2px;
}

.lp-mock-wa-msg {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #064e3b;
  line-height: 1.3;
}

.lp-mock-spark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.lp-mock-spark-label {
  font-size: 0.5rem;
  font-weight: 600;
  color: #64748b;
}

.lp-mock-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 9px 11px;
  max-width: min(168px, 46vw);
  box-shadow:
    0 20px 44px -16px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(226, 232, 240, 0.95);
  font-size: 0.625rem;
  animation: lp-mock-float-card 5.5s ease-in-out infinite;
}

.lp-mock-float strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 4px 0 0;
}

.lp-mock-float-sub {
  display: block;
  font-size: 0.5625rem;
  color: #64748b;
  margin-top: 2px;
}

.lp-mock-float--finance {
  left: -6px;
  bottom: -8px;
  animation-delay: -1s;
}

.lp-mock-float--fup {
  right: -10px;
  bottom: -4px;
  animation-delay: -2.5s;
}

/* Pseudo-tela: chat FUP / WhatsApp no contexto do lead */
.lp-mock-body--fup-chat {
  padding: 0;
  background: #e5ddd5;
  background-image: none;
  display: flex;
  flex-direction: column;
  min-height: 148px;
}

.lp-mock-fup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  background: #075e54;
  color: #fff;
  border-radius: 0;
}

.lp-mock-fup-ava {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, #bae6fd, #a5b4fc);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp-mock-fup-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lp-mock-fup-name {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-mock-fup-sub {
  font-size: 0.5rem;
  font-weight: 600;
  opacity: 0.88;
}

.lp-mock-fup-pill {
  flex-shrink: 0;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp-mock-fup-thread {
  flex: 1;
  padding: 8px 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.lp-mock-fup-day {
  align-self: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #54656f;
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 8px;
  border-radius: 999px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.lp-mock-fup-msg {
  max-width: 88%;
  padding: 5px 7px 4px;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-mock-fup-msg--in {
  align-self: flex-start;
  background: #fff;
  border-radius: 0 8px 8px 8px;
}

.lp-mock-fup-msg--out {
  align-self: flex-end;
  background: #d9fdd3;
  border-radius: 8px 0 8px 8px;
}

.lp-mock-fup-msg--sys {
  align-self: center;
  max-width: 100%;
  background: rgba(255, 235, 156, 0.95);
  border: 1px solid rgba(234, 179, 8, 0.45);
  border-radius: 8px;
  box-shadow: none;
  padding: 4px 8px;
}

.lp-mock-fup-msg-text {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #111b21;
  line-height: 1.35;
}

.lp-mock-fup-msg--sys .lp-mock-fup-msg-text {
  font-size: 0.5rem;
  color: #713f12;
  text-align: center;
}

.lp-mock-fup-time {
  align-self: flex-end;
  font-size: 0.4375rem;
  font-weight: 600;
  color: #667781;
}

.lp-mock-fup-compose {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 8px;
  margin-top: auto;
  background: #f0f2f5;
  border-top: 1px solid #d1d7db;
  border-radius: 0 0 11px 11px;
}

.lp-mock-fup-input {
  flex: 1;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #8696a0;
  padding: 5px 9px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e9edef;
}

.lp-mock-fup-send {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #00a884;
  position: relative;
}

.lp-mock-fup-send::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.lp-mock-float--wa {
  right: -4px;
  top: -12px;
  animation-delay: -0.5s;
}

.lp-mock-float-icon {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 8px;
}

.lp-mock-float-icon--ok {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  position: relative;
}

.lp-mock-float-icon--ok::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lp-mock-float-icon--home {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  position: relative;
}

.lp-mock-float-icon--home::after {
  content: "";
  position: absolute;
  inset: 5px 4px 4px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

.lp-mock-wa-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@keyframes lp-mock-float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-mock-float {
    animation: none !important;
  }
}

/* Trust strip */
.lp-trust {
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-line);
  padding: 1.25rem 0;
}

.lp-trust-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-trust-inner strong {
  color: var(--lp-ink-soft);
}

/* Section shell */
.lp-section {
  padding: 4rem 0;
}

.lp-section-alt {
  background: var(--lp-surface);
}

.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.lp-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 0.75rem;
}

.lp-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--lp-ink);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.lp-section-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.0625rem;
}

/* Outcome cards */
.lp-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp-outcome {
  background: var(--lp-surface);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
}

.lp-outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--lp-radius-sm);
  background: linear-gradient(135deg, rgba(91, 77, 255, 0.12), rgba(13, 148, 136, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  margin-bottom: 1rem;
}

.lp-outcome h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--lp-ink);
}

.lp-outcome p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--lp-muted);
}

/* Feature grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp-fcard {
  background: var(--lp-surface);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  border: 1px solid var(--lp-line);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-fcard:hover {
  border-color: rgba(91, 77, 255, 0.25);
  box-shadow: var(--lp-shadow);
}

.lp-fcard-top {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.lp-fcard .box-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: var(--lp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0;
}

.box-icon-blue {
  background: var(--lp-gradient);
}

.lp-fcard h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-ink);
  line-height: 1.35;
}

.lp-fcard p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-cta-row {
  text-align: center;
  margin-top: 2.5rem;
  padding: 0 1.25rem;
}

.lp-cta-row p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

/* Plans */
.lp-plans-wrap {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp-plan-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .lp-plan-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.features-section-card.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
  margin-bottom: 0;
  text-align: left;
  align-items: stretch;
  padding: 1.5rem;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
}

.plan-card-top {
  flex-shrink: 0;
}

.plan-card-lead {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 0.4rem;
}

/* Títulos com altura mínima leve para alinhar preços sem “vão” enorme na descrição */
@media (min-width: 1024px) {
  .plan-card-top .features-section-card-header h4 {
    min-height: 2.5rem;
  }
}

.plan-price-block {
  flex-shrink: 0;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.plan-price-was-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  min-height: 2.125rem;
  margin-bottom: 0.35rem;
}

.plan-price-was-row--empty {
  visibility: hidden;
  pointer-events: none;
}

.plan-price-was {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.plan-offer-pill {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(45, 212, 191, 0.22);
  border: 1px solid rgba(45, 212, 191, 0.45);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  line-height: 1.2;
}

.plan-price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.35rem;
  margin-top: -15px;
}

.plan-card-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1.25rem;
}

.plan-card.plan-standard {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 1px rgba(91, 77, 255, 0.15), var(--lp-shadow-lg);
  position: relative;
}

.plan-card.plan-standard::before {
  content: "Mais vendido";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-gradient);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.plan-card.plan-premium {
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 8px 30px -22px rgba(13, 148, 136, 0.2), var(--lp-shadow);
  position: relative;
}

.plan-card.plan-premium::before {
  content: "Melhor custo-benefício";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0f766e;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.55);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.features-section-card-header h4 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lp-ink);
}

.text-plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-ink);
  letter-spacing: -0.02em;
}

.features-section-card.plan-card .plan-itens-section {
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 1.25rem;
}

.plan-itens-item {
  font-size: 0.875rem;
  color: var(--lp-ink-soft);
  font-weight: 500;
}

.lp-help-card {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(91, 77, 255, 0.06), rgba(13, 148, 136, 0.06));
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  text-align: center;
}

.lp-help-card h5 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--lp-ink);
}

.lp-help-card p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.9375rem;
}

/* Compare fees */
.lp-compare-head {
  text-align: center;
  margin-bottom: 2rem;
}

.lp-compare-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lp-ink);
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.card-blue {
  background: var(--lp-gradient) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--lp-radius) !important;
  box-shadow: var(--lp-shadow-lg);
}

.card-blue h4,
.card-blue p {
  color: inherit !important;
}

.lp-compare-grid .card {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
}

.lp-compare-grid .card-body {
  padding: 1.5rem;
}

.lp-compare-grid .material-symbols-outlined {
  font-size: 1.125rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* Testimonials — carrossel (suave, sem ícones de fonte) */
.feedback-section.lp-testimonials {
  margin-top: 0;
  width: 100%;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f6fb 38%, #fafbfc 100%);
  padding: 4.25rem 0 3.75rem;
}

.feedback-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  padding: 0 1.25rem;
}

.lp-testimonials-kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.75rem;
}

.feedback-section-header h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.lp-testimonials-shell {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

.lp-testimonials-carousel.owl-carousel.owl-theme {
  position: relative;
}

.lp-testimonials-carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
  border-radius: 0;
}

.lp-testimonials-carousel.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.lp-t-card {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 0.125rem;
}

.lp-t-card-inner {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 1.75rem 1.75rem 1.5rem 1.85rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 48px -28px rgba(15, 23, 42, 0.12);
  text-align: left;
}

/* Traço lateral suave (substitui aspas grandes) */
.lp-t-card-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, rgba(129, 140, 248, 0.45) 0%, rgba(45, 212, 191, 0.35) 100%);
  opacity: 0.85;
}

.lp-t-quote {
  margin: 0 0 1.35rem;
  padding: 0 0 0 0.65rem;
  border: none;
  position: relative;
  z-index: 1;
}

.lp-t-quote p {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: #475569;
  letter-spacing: 0.01em;
}

.lp-t-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
  background-color: white;
}

.lp-t-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, #e0e7ff, #ccfbf1);
  box-shadow: 0 0 0 2px #fff, 0 2px 12px rgba(148, 163, 184, 0.2);
}

.lp-t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lp-t-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.lp-t-name {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
}

.lp-t-company {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Owl: neutralizar tema padrão (fundo escuro / cinza) */
.lp-testimonials-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.lp-testimonials-carousel.owl-theme .owl-nav .owl-prev,
.lp-testimonials-carousel.owl-theme .owl-nav .owl-next,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-prev,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #94a3b8 !important;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-testimonials-carousel.owl-theme .owl-nav .owl-prev:hover,
.lp-testimonials-carousel.owl-theme .owl-nav .owl-next:hover,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-prev:hover,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-next:hover {
  transform: none;
  background: #ffffff !important;
  border-color: rgba(199, 210, 254, 0.9) !important;
  color: #64748b !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1) !important;
}

.lp-testimonials-carousel.owl-theme .owl-nav .owl-prev:focus-visible,
.lp-testimonials-carousel.owl-theme .owl-nav .owl-next:focus-visible,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-prev:focus-visible,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-next:focus-visible {
  outline: 2px solid rgba(129, 140, 248, 0.55);
  outline-offset: 2px;
}

.lp-t-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.lp-t-nav-svg {
  display: block;
  flex-shrink: 0;
}

.lp-testimonials-carousel.owl-theme .owl-nav .owl-prev.disabled,
.lp-testimonials-carousel.owl-theme .owl-nav .owl-next.disabled,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-prev.disabled,
.lp-testimonials-carousel.owl-theme .owl-nav button.owl-next.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Dots — discretos */
.lp-testimonials-carousel.owl-theme .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0;
}

.lp-testimonials-carousel.owl-theme .owl-dots .owl-dot {
  margin: 0;
}

.lp-testimonials-carousel.owl-theme .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: rgba(148, 163, 184, 0.35) !important;
  border-radius: 999px;
  transition: width 0.35s ease, background 0.35s ease, opacity 0.35s ease;
}

.lp-testimonials-carousel.owl-theme .owl-dots .owl-dot.active span {
  width: 22px;
  background: linear-gradient(90deg, rgba(129, 140, 248, 0.75), rgba(45, 212, 191, 0.65)) !important;
  opacity: 1;
}

.lp-testimonials-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(148, 163, 184, 0.55) !important;
}

/* Clients */
.clients-section {
  background: var(--lp-surface);
  padding: 3rem 0 2rem;
}

.clients-section .row {
  max-width: var(--lp-max);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.img-slide {
  width: 100%;
  max-width: 110px;
  height: auto;
  margin: 0 auto;
  opacity: 0.85;
  filter: grayscale(0.15);
}

/* Final CTA */
.lp-final {
  background: var(--lp-gradient);
  color: #fff;
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.lp-final h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lp-final p {
  margin: 0 auto 1.5rem;
  max-width: 480px;
  opacity: 0.95;
  font-size: 1.0625rem;
}

.lp-final .btn-cta-white {
  color: var(--lp-accent-dark) !important;
}

/* Footer */
footer {
  background: var(--lp-ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0;
  border: none;
}

footer .container {
  max-width: var(--lp-max);
}

footer p {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.img-footer {
  width: 200px;
  margin-bottom: 0.5rem;
}

/* Float WhatsApp — expande com texto no hover */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  max-width: 56px;
  padding: 0;
  border: none;
  border-radius: 28px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition:
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  max-width: min(288px, calc(100vw - 2.5rem));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.whatsapp-float-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 14px;
  white-space: nowrap;
}

.whatsapp-float-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float-label {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.32s ease 0.06s,
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* Sticky mobile CTA */
.lp-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--lp-line);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.lp-sticky .btn-cta-purple {
  width: 100%;
}

/* Utilities */
.pointer {
  cursor: pointer;
}

.features-section-card-header {
  flex-direction: column;
  align-items: flex-start;
}

.features-section-card.plan-card .features-section-card-header {
  flex-direction: column;
}

/* Owl */
.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-mock-stack {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 400px);
  }

  .lp-mock-float--finance {
    left: 4px;
    bottom: -6px;
  }

  .lp-mock-float--fup {
    right: 4px;
    bottom: -4px;
  }

  .lp-mock-float--wa {
    right: 4px;
    top: -8px;
  }

  .lp-outcomes {
    grid-template-columns: 1fr;
  }

  .lp-plan-row,
  .lp-compare-grid {
    grid-template-columns: 1fr;
  }

  .lp-testimonials-shell {
    padding: 0 2.75rem;
  }
}

@media (max-width: 575px) {
  .lp-testimonials-shell {
    padding: 0 2.25rem;
  }

  .lp-testimonials-carousel .owl-nav button.owl-prev,
  .lp-testimonials-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  .lp-t-card-inner {
    padding: 1.45rem 1.15rem 1.3rem 1.35rem;
  }

  .lp-t-quote p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .lp-header .btn-cta-purple {
    font-size: 0.8125rem;
    padding: 0.6rem 1rem;
  }

  .logo-header {
    height: 36px;
  }

  .lp-sticky {
    display: block;
  }

  .whatsapp-float {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  body {
    padding-bottom: 5rem;
  }
}

@media (min-width: 641px) {
  .lp-header {
    padding: 0 2rem;
  }
}
