/* =====================================================================
   Interfala — Landing Page Vertical: Planos Funerários e Previdência
   CSS standalone (mantém identidade Interfala, com aplicação mais sóbria)
   ===================================================================== */

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

:root {
  /* Paleta Interfala — aplicação sóbria/institucional */
  --color-purple: #7130f0;
  --color-purple-deep: #4d387d;
  --color-purple-dark: #100a3c;
  --color-purple-darker: #0a0728;
  --color-purple-light: #ae62ff;
  --color-pink: #dd8cf5;
  --color-cyan: #00ffd2;
  --color-cyan-dark: #00ccaa;
  --color-lavender: #f7f5fc;
  --color-lavender-deep: #efeaf8;

  --color-ink: #100a3c;
  --color-ink-soft: #1a1340;

  --color-gray-900: #1a1130;
  --color-gray-800: #2a2348;
  --color-gray-700: #4a4365;
  --color-gray-500: #8b85a3;
  --color-gray-400: #b5b0c8;
  --color-gray-300: #d4d0e0;
  --color-gray-200: #e7e3ef;
  --color-gray-100: #f5f3fa;
  --color-white: #ffffff;

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 2px 8px rgba(16, 10, 60, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(16, 10, 60, 0.15);
  --shadow-lg: 0 30px 60px -20px rgba(16, 10, 60, 0.25);
  --shadow-purple: 0 20px 50px -15px rgba(113, 48, 240, 0.35);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-gray-900);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { color: var(--color-gray-700); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--color-lavender);
  border: 1px solid rgba(113, 48, 240, 0.18);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-purple);
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cyan-dark);
}
.eyebrow svg { width: 14px; height: 14px; }

.eyebrow.on-dark {
  background: rgba(0, 255, 210, 0.08);
  border-color: rgba(0, 255, 210, 0.25);
  color: var(--color-cyan);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header .eyebrow { margin-bottom: 18px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 17px;
  line-height: 1.55;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--color-purple);
  color: var(--color-white);
  box-shadow: 0 10px 24px -10px rgba(113, 48, 240, 0.55);
}
.btn-primary:hover {
  background: var(--color-purple-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(113, 48, 240, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--color-gray-900);
  border-color: var(--color-gray-200);
}
.btn-ghost:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.btn-lg { padding: 17px 32px; font-size: 16px; }

.btn-white {
  background: var(--color-white);
  color: var(--color-purple-dark);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
}
.btn-white:hover {
  background: var(--color-cyan);
  color: var(--color-purple-dark);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================================================
   HEADER (minimalista)
   ========================================================= */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(16, 10, 60, 0.06);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.lp-logo img { height: 30px; width: auto; }
.lp-logo-badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray-700);
  padding: 6px 11px;
  background: var(--color-lavender);
  border: 1px solid rgba(113, 48, 240, 0.14);
  border-radius: 999px;
  white-space: nowrap;
}
.lp-header-cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 720px) {
  .lp-logo-badge { display: none; }
  .lp-header-cta .btn { padding: 11px 18px; font-size: 14px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, #1a1450 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 90% 100%, #3a1f78 0%, transparent 55%),
              linear-gradient(180deg, var(--color-purple-darker) 0%, var(--color-purple-dark) 100%);
  color: var(--color-white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 255, 210, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 255, 210, 0.18);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 22px;
  font-weight: 700;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--color-cyan) 0%, #b3fff0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-microcopy svg {
  width: 14px; height: 14px;
  color: var(--color-cyan);
}

/* Hero Visual — dashboard sério */
.hero-visual { position: relative; }

.dashboard {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  border-radius: var(--radius-lg);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.5),
    0 20px 40px -20px rgba(113, 48, 240, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .dashboard {
  transform: perspective(1200px) rotateY(-1.5deg) rotateX(0deg);
}

.dashboard-chrome {
  background: linear-gradient(180deg, #f4f1fa 0%, #ece8f4 100%);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--color-gray-200);
}
.dashboard-chrome .dots {
  display: flex; gap: 6px;
}
.dashboard-chrome .dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-gray-300);
}
.dashboard-chrome .url {
  flex: 1;
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--color-gray-500);
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--color-gray-200);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 460px;
}

.dashboard-sidebar {
  background: var(--color-ink);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.dashboard-sidebar .logo-mini {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-light) 100%);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.dashboard-sidebar .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.dashboard-sidebar .icon svg { width: 16px; height: 16px; }
.dashboard-sidebar .icon.active {
  background: rgba(113, 48, 240, 0.25);
  color: white;
}

.dashboard-main { padding: 18px 20px; }

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dashboard-topbar .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
}
.dashboard-topbar .title small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--color-gray-500);
  margin-top: 2px;
  letter-spacing: 0;
}
.dashboard-topbar .pill {
  font-size: 10px;
  font-weight: 600;
  background: rgba(0, 255, 210, 0.14);
  color: var(--color-cyan-dark);
  padding: 4px 9px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
}
.dashboard-topbar .pill .live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-cyan-dark);
  animation: liveBlink 2s infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.kpi {
  padding: 11px 12px;
  background: var(--color-lavender);
  border-radius: 10px;
  border: 1px solid rgba(113, 48, 240, 0.08);
}
.kpi.kpi-feature {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-deep) 100%);
  border-color: transparent;
}
.kpi-label {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.kpi.kpi-feature .kpi-label { color: rgba(255, 255, 255, 0.7); }
.kpi-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpi.kpi-feature .kpi-value { color: white; }
.kpi-delta {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--color-cyan-dark);
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 3px;
}
.kpi.kpi-feature .kpi-delta { color: var(--color-cyan); }

.dashboard-section-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.dashboard-section-label a {
  color: var(--color-purple);
  font-size: 10px;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

.lead-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 9px;
  margin-bottom: 5px;
}
.lead-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600;
  flex-shrink: 0;
}
.lead-avatar.lc-2 { background: linear-gradient(135deg, #f09433, #dc2743); }
.lead-avatar.lc-3 { background: linear-gradient(135deg, var(--color-cyan-dark), var(--color-purple)); }
.lead-meta { flex: 1; min-width: 0; }
.lead-name {
  font-size: 11px; font-weight: 600;
  color: var(--color-gray-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lead-msg {
  font-size: 10px;
  color: var(--color-gray-500);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lead-chip {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.lead-chip.negociacao {
  background: rgba(113, 48, 240, 0.12);
  color: var(--color-purple);
}
.lead-chip.qualificado {
  background: rgba(0, 255, 210, 0.14);
  color: var(--color-cyan-dark);
}
.lead-chip.follow {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

/* Floating badges — sóbrios, sem boing */
.float-card {
  position: absolute;
  background: white;
  padding: 11px 14px 11px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.float-card .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card .ico svg { width: 16px; height: 16px; }
.float-card .ico.cyan { background: rgba(0, 255, 210, 0.18); color: var(--color-cyan-dark); }
.float-card .ico.purple { background: rgba(113, 48, 240, 0.12); color: var(--color-purple); }
.float-card .t-title {
  font-size: 12px; font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
}
.float-card .t-sub {
  font-size: 10.5px;
  color: var(--color-gray-500);
}

.float-1 { top: 14%; left: -8%; }
.float-2 { bottom: 12%; right: -8%; }

/* =========================================================
   BARRA DE IDENTIFICAÇÃO
   ========================================================= */
.id-bar {
  background: var(--color-lavender);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 24px 0;
}
.id-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-gray-700);
  text-align: center;
}
.id-bar-inner strong {
  font-weight: 600;
  color: var(--color-purple-dark);
}
.id-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-gray-900);
}
.id-bar-tag svg {
  width: 16px; height: 16px;
  color: var(--color-purple);
}
.id-bar-divider {
  width: 1px; height: 14px;
  background: var(--color-gray-300);
}
.id-bar-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.id-bar-item {
  font-weight: 600;
  color: var(--color-purple-dark);
}

/* =========================================================
   PROBLEMA
   ========================================================= */
.problem {
  padding: 96px 0;
  background: var(--color-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 64px;
}
.problem-card {
  padding: 26px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  position: relative;
}
.problem-card:hover {
  border-color: rgba(113, 48, 240, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(113, 48, 240, 0.08);
  color: var(--color-purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-icon svg { width: 19px; height: 19px; }
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: var(--color-gray-900);
}
.problem-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-gray-700);
}

.problem-transition {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-200);
}
.problem-transition p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.problem-transition span { color: var(--color-purple); }

/* =========================================================
   SOLUÇÃO (dark)
   ========================================================= */
.solution {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-ink) 0%, var(--color-purple-darker) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(113, 48, 240, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.solution::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 210, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.solution .container { position: relative; z-index: 1; }
.solution h2, .solution h3 { color: white; }
.solution .section-header p { color: rgba(255, 255, 255, 0.75); }

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.spotlight:first-of-type { border-top: none; padding-top: 24px; }
.spotlight.reverse .spotlight-visual { order: -1; }

.spotlight-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--color-cyan);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.spotlight h3 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.spotlight-text {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}
.spotlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.spotlight-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.spotlight-list svg {
  width: 16px; height: 16px;
  color: var(--color-cyan);
  flex-shrink: 0; margin-top: 2px;
  stroke-width: 2.5;
}

.spotlight-visual {
  position: relative;
}

/* Visual 1 — Lead funnel mockup */
.viz-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.viz-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-gray-200);
}
.viz-card-head .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gray-900);
  letter-spacing: -0.015em;
}
.viz-card-head .tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 9px;
  background: rgba(0, 204, 170, 0.14);
  color: var(--color-cyan-dark);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
}

.funnel-step {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--color-lavender);
  border-left: 3px solid var(--color-purple-light);
}
.funnel-step.s-2 { border-color: var(--color-purple); }
.funnel-step.s-3 { border-color: var(--color-cyan-dark); background: rgba(0, 204, 170, 0.06); }
.funnel-step .num {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-purple);
}
.funnel-step .info { flex: 1; }
.funnel-step .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-900);
  letter-spacing: -0.005em;
}
.funnel-step .desc {
  font-size: 11px;
  color: var(--color-gray-500);
  margin-top: 1px;
}
.funnel-step .count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
}

/* Visual 2 — WhatsApp painel mockup */
.wa-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.wa-head {
  background: linear-gradient(135deg, #128c7e, #25d366);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  color: white;
}
.wa-head .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.wa-head .sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}
.wa-head .icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
}
.wa-head .icon-circle svg { width: 18px; height: 18px; color: white; }
.wa-head .meta { flex: 1; }
.wa-head .badge-multi {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.wa-body {
  padding: 16px;
  background: #ece5dd;
  display: flex; flex-direction: column; gap: 10px;
}
.wa-msg {
  max-width: 78%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #1a1a1a;
  position: relative;
}
.wa-msg.in {
  background: white;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}
.wa-msg.out {
  background: #dcf8c6;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
}
.wa-msg .who {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 3px;
}
.wa-msg .time {
  font-size: 9.5px;
  color: rgba(0, 0, 0, 0.45);
  text-align: right;
  margin-top: 3px;
}
.wa-typing {
  align-self: flex-start;
  padding: 10px 13px;
  border-radius: 12px;
  background: white;
  display: flex; gap: 3px;
}
.wa-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-gray-400);
  animation: typing 1.4s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* Visual 3 — IA triagem */
.triage-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.triage-bot {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: var(--color-lavender);
  border: 1px solid rgba(113, 48, 240, 0.15);
  border-radius: 12px;
  margin-bottom: 14px;
}
.triage-bot-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.triage-bot-icon svg { width: 16px; height: 16px; }
.triage-bot-msg {
  flex: 1;
}
.triage-bot-msg .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 3px;
}
.triage-bot-msg .q {
  font-size: 13px;
  color: var(--color-gray-900);
  line-height: 1.4;
}
.triage-routes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.triage-route {
  padding: 14px 14px 12px;
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 11px;
  position: relative;
}
.triage-route.urgent {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, white 100%);
}
.triage-route .route-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 9px;
}
.triage-route.urgent .route-head { color: #dc2626; }
.triage-route .route-head svg { width: 12px; height: 12px; }
.triage-route .route-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-gray-900);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.triage-route .route-meta {
  font-size: 11px;
  color: var(--color-gray-500);
}
.triage-route .route-prio {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 204, 170, 0.14);
  color: var(--color-cyan-dark);
}
.triage-route.urgent .route-prio {
  background: rgba(239, 68, 68, 0.14);
  color: #dc2626;
}

/* =========================================================
   CASOS DE USO
   ========================================================= */
.cases {
  padding: 96px 0;
  background: var(--color-lavender);
  position: relative;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.case-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-gray-200);
  transition: all 0.3s var(--ease);
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(113, 48, 240, 0.2);
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
  background: rgba(113, 48, 240, 0.08);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.case-tag svg { width: 12px; height: 12px; }
.case-card h3 {
  font-size: 19px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.case-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.case-flow::before {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-purple);
  background: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(113, 48, 240, 0.2);
  z-index: 1;
}
.case-side {
  padding: 14px 14px 14px;
  border-radius: 12px;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
}
.case-side.after {
  background: linear-gradient(180deg, rgba(113, 48, 240, 0.04) 0%, rgba(0, 204, 170, 0.04) 100%);
  border-color: rgba(113, 48, 240, 0.18);
}
.case-side .side-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 6px;
}
.case-side.after .side-label { color: var(--color-purple); }
.case-side .side-body {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-gray-700);
}
.case-side.after .side-body { color: var(--color-gray-900); }

/* =========================================================
   RESULTADOS
   ========================================================= */
.results {
  padding: 96px 0;
  background: var(--color-white);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.result-card {
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-lavender) 100%);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.result-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(113, 48, 240, 0.08), transparent 65%);
  border-radius: 50%;
}
.result-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(113, 48, 240, 0.4);
}
.result-icon svg { width: 20px; height: 20px; }
.result-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  position: relative;
}
.result-card h3 .delta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-purple);
  margin-right: 4px;
}
.result-card h3 .delta.minus { color: var(--color-cyan-dark); }
.result-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-gray-700);
  position: relative;
}

/* =========================================================
   INTEGRAÇÃO
   ========================================================= */
.integration {
  padding: 80px 0;
  background: var(--color-gray-100);
}
.integration-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.integration-icon {
  width: 84px; height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-deep));
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 14px 32px -10px rgba(113, 48, 240, 0.45);
}
.integration-icon svg { width: 38px; height: 38px; }
.integration-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.integration-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-700);
}
.integration-card p strong {
  color: var(--color-purple-dark);
  font-weight: 600;
}

/* =========================================================
   CANAIS
   ========================================================= */
.channels {
  padding: 96px 0;
  background: var(--color-white);
}
.channels-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.channel {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s var(--ease);
}
.channel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(113, 48, 240, 0.2);
}
.channel.featured {
  grid-row: span 1;
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.5);
}
.channel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.channel-icon svg { width: 22px; height: 22px; }
.channel.wa .channel-icon { background: rgba(255, 255, 255, 0.2); }
.channel.ig .channel-icon { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.channel.tg .channel-icon { background: #0088cc; }
.channel.ms .channel-icon { background: linear-gradient(45deg, #0078FF, #00C6FF); }
.channel.em .channel-icon { background: #EA4335; }
.channel h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-gray-900);
}
.channel.featured h4 { color: white; font-size: 22px; }
.channel p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray-500);
  margin-top: -4px;
}
.channel.featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.55;
}
.channel.featured .channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 96px 0;
  background: var(--color-lavender);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(113, 48, 240, 0.2); }
.faq-item.active {
  border-color: rgba(113, 48, 240, 0.35);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-900);
  text-align: left;
  letter-spacing: -0.005em;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--color-purple); }
.faq-q .chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-lavender);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.3s var(--ease);
}
.faq-q .chev svg {
  width: 14px; height: 14px;
  color: var(--color-purple);
  transition: transform 0.3s var(--ease);
}
.faq-item.active .chev { background: var(--color-purple); }
.faq-item.active .chev svg { color: white; transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-a { max-height: 340px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-gray-700);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--color-purple-darker) 0%, var(--color-purple-dark) 60%, #2a1875 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(0, 255, 210, 0.13) 0%, transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(174, 98, 255, 0.28) 0%, transparent 45%);
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta .eyebrow.on-dark { margin-bottom: 22px; }
.final-cta h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  text-wrap: balance;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.final-cta-microcopy {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
}
.final-cta-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.final-cta-microcopy svg {
  width: 14px; height: 14px;
  color: var(--color-cyan);
}

/* =========================================================
   FOOTER MINIMALISTA
   ========================================================= */
.lp-footer {
  background: var(--color-purple-darker);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.lp-footer-brand img {
  height: 26px; width: auto;
  filter: brightness(1.1);
}
.lp-footer-links {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.lp-footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--color-cyan); }
.lp-footer-bottom {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
}
.lp-footer-bottom .heart { color: var(--color-purple-light); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dashboard, .hero-visual:hover .dashboard { transform: none; }
  .wa-typing span, .liveBlink { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .float-1 { left: 2%; }
  .float-2 { right: 2%; }
  .spotlight { grid-template-columns: 1fr; gap: 40px; padding: 44px 0; }
  .spotlight.reverse .spotlight-visual { order: -1; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .channel.featured { grid-column: span 2; }
}

@media (max-width: 720px) {
  .hero { padding: 56px 0 72px; }
  .problem, .solution, .cases, .results, .channels, .faq { padding: 72px 0; }
  .final-cta { padding: 80px 0; }
  .integration { padding: 64px 0; }
  .integration-card { padding: 32px 26px; grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .integration-icon { margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .results-grid .result-card { padding: 22px 18px; }
  .channels-grid { grid-template-columns: 1fr; }
  .channel.featured { grid-column: auto; }
  .spotlight-list { grid-template-columns: 1fr; }
  .case-flow { grid-template-columns: 1fr; }
  .case-flow::before {
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .id-bar-inner { gap: 12px; flex-direction: column; }
  .id-bar-list { justify-content: center; }
  .lp-header-cta .btn-ghost { display: none; }
  .float-card { transform: scale(0.85); transform-origin: top left; }
  .float-2 { transform: scale(0.85); transform-origin: bottom right; }
  .dashboard { transform: none; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  z-index: 90;
  display: none;
  box-shadow: 0 18px 40px -10px rgba(113, 48, 240, 0.55);
}
.sticky-cta .btn { width: 100%; padding: 16px 24px; font-size: 15.5px; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}
