/**
 * LeadFy — Landing page institucional
 * Paleta: #30b1b0 · #ddecef · tons escuros derivados
 */
:root {
  --lf-primary: #30b1b0;
  --lf-primary-dark: #248988;
  --lf-primary-darker: #165e5d;
  --lf-primary-light: #5ec9c6;
  --lf-light: #ddecef;
  --lf-light-soft: #eef5f6;
  --lf-dark: #0f2a2a;
  --lf-muted: #5a7172;
  --lf-white: #ffffff;
  /* Acentos vivos para reforçar a cara de tecnologia */
  --lf-cyan: #06d6c4;
  --lf-blue: #1f8ef1;
  --lf-violet: #7b5cff;
  --lf-lime: #8ee04a;
  --lf-amber: #ffb020;
  --lf-coral: #ff6b6b;
  /* Gradientes de marca */
  --lf-grad-brand: linear-gradient(120deg, #30b1b0 0%, #06d6c4 50%, #1f8ef1 100%);
  --lf-grad-brand-soft: linear-gradient(120deg, #30b1b0, #1f8ef1);
  --lf-grad-aurora: linear-gradient(135deg, #30b1b0 0%, #06d6c4 35%, #1f8ef1 70%, #7b5cff 100%);
  --lf-shadow: 0 12px 40px rgba(15, 42, 42, 0.08);
  --lf-shadow-lg: 0 24px 60px rgba(48, 177, 176, 0.22);
  --lf-glow: 0 18px 50px rgba(6, 214, 196, 0.28);
  --lf-radius: 1rem;
  --lf-radius-lg: 1.5rem;
  --lf-nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--lf-nav-h) + 16px);
}

body.lf-landing {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--lf-dark);
  background: var(--lf-white);
  overflow-x: hidden;
}

.lf-landing h1,
.lf-landing h2,
.lf-landing h3,
.lf-landing h4,
.lf-landing .display-5,
.lf-landing .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lf-landing p {
  line-height: 1.65;
}

.lf-text-primary {
  color: var(--lf-primary) !important;
}

.lf-text-muted {
  color: var(--lf-muted) !important;
}

.lf-bg-light {
  background: var(--lf-light-soft) !important;
}

.lf-bg-teal {
  background: linear-gradient(135deg, var(--lf-primary) 0%, var(--lf-primary-dark) 100%);
}

.lf-bg-mesh {
  background:
    radial-gradient(ellipse 70% 55% at 8% -5%, rgba(6, 214, 196, 0.20), transparent 55%),
    radial-gradient(ellipse 55% 50% at 95% 8%, rgba(31, 142, 241, 0.16), transparent 52%),
    radial-gradient(ellipse 60% 60% at 80% 95%, rgba(123, 92, 255, 0.12), transparent 55%),
    linear-gradient(180deg, var(--lf-light-soft) 0%, var(--lf-white) 100%);
}

/* Texto com gradiente — destaque tech */
.lf-gradient-text {
  background: var(--lf-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Navbar */
.lf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: var(--lf-nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.lf-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(15, 42, 42, 0.06);
}

.lf-nav .navbar-brand img {
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.lf-nav .nav-link {
  color: var(--lf-dark);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s ease;
}

.lf-nav .nav-link:hover,
.lf-nav .nav-link:focus {
  color: var(--lf-primary);
}

.lf-nav .lf-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.65rem;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.lf-btn:hover {
  transform: translateY(-2px);
}

.lf-btn-primary {
  background: var(--lf-grad-brand-soft);
  background-size: 160% 160%;
  color: var(--lf-white);
  box-shadow: 0 10px 28px rgba(6, 214, 196, 0.38);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-position 0.45s ease;
}

.lf-btn-primary:hover {
  background-position: 100% 50%;
  color: var(--lf-white);
  box-shadow: var(--lf-glow);
}

.lf-btn-outline {
  background: transparent;
  color: var(--lf-primary-darker);
  border: 2px solid rgba(48, 177, 176, 0.45);
}

.lf-btn-outline:hover {
  background: rgba(48, 177, 176, 0.08);
  color: var(--lf-primary-darker);
}

.lf-btn-light {
  background: var(--lf-white);
  color: var(--lf-primary-darker);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.lf-btn-light:hover {
  color: var(--lf-primary-dark);
}

.lf-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.lf-nav .lf-btn-nav {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.lf-nav .lf-btn-nav.lf-btn-primary {
  box-shadow: 0 4px 14px rgba(6, 214, 196, 0.28);
}

.lf-nav .lf-btn-nav.lf-btn-primary:hover {
  box-shadow: 0 6px 18px rgba(6, 214, 196, 0.34);
}

/* Hero */
.lf-hero {
  min-height: 100vh;
  padding: calc(var(--lf-nav-h) + 3rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.lf-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(48, 177, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 177, 176, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
}

.lf-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.lf-hero__orb--1 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(6, 214, 196, 0.42), rgba(31, 142, 241, 0.28) 60%, transparent 75%);
  top: -90px;
  right: -110px;
  animation: lf-orb-drift 14s ease-in-out infinite;
}

.lf-hero__orb--2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.30), rgba(48, 177, 176, 0.22) 60%, transparent 75%);
  bottom: 8%;
  left: -90px;
  animation: lf-orb-drift 18s ease-in-out infinite reverse;
}

@keyframes lf-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -28px) scale(1.08); }
}

.lf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(6, 214, 196, 0.14), rgba(31, 142, 241, 0.14));
  border: 1px solid rgba(6, 214, 196, 0.35);
  color: var(--lf-primary-darker);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(6, 214, 196, 0.14);
}

.lf-hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lf-cyan);
  box-shadow: 0 0 0 0 rgba(6, 214, 196, 0.6);
  animation: lf-pulse 2s ease-in-out infinite;
}

@keyframes lf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.lf-hero__headline {
  font-size: clamp(2rem, 5vw, 3.35rem);
  max-width: 14ch;
}

.lf-hero__sub {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--lf-primary-darker);
  font-weight: 600;
  max-width: 22ch;
}

.lf-hero__desc {
  font-size: 1.08rem;
  color: var(--lf-muted);
  max-width: 34rem;
}

.lf-hero__visual {
  position: relative;
}

.lf-hero-card {
  background: var(--lf-white);
  border-radius: var(--lf-radius-lg);
  box-shadow: var(--lf-shadow-lg);
  border: 1px solid rgba(48, 177, 176, 0.12);
  padding: 1.5rem;
  position: relative;
}

.lf-hero-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lf-light);
}

.lf-hero-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lf-primary), var(--lf-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.lf-hero-card__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--lf-light);
  font-size: 0.92rem;
}

.lf-hero-card__stat:last-child {
  border-bottom: none;
}

.lf-hero-card__stat strong {
  color: var(--lf-primary-darker);
}

.lf-hero-card__tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(48, 177, 176, 0.12);
  color: var(--lf-primary-darker);
  font-size: 0.78rem;
  font-weight: 700;
}

.lf-float-badge {
  position: absolute;
  background: var(--lf-white);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  box-shadow: var(--lf-shadow);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  animation: lf-float 4s ease-in-out infinite;
}

.lf-float-badge--1 {
  top: -12px;
  right: -8px;
}

.lf-float-badge--2 {
  bottom: 24px;
  left: -20px;
  animation-delay: 1s;
}

@keyframes lf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
.lf-section {
  padding: 5.5rem 0;
  position: relative;
}

.lf-section--compact {
  padding: 4rem 0;
}

.lf-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lf-primary-darker);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(6, 214, 196, 0.16), rgba(31, 142, 241, 0.14));
  border: 1px solid rgba(6, 214, 196, 0.3);
}

.lf-section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lf-grad-brand-soft);
}

.lf-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.lf-section-lead {
  font-size: 1.12rem;
  color: var(--lf-muted);
  max-width: 40rem;
}

/* Problem cards */
.lf-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lf-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(221, 236, 239, 0.8);
}

.lf-problem-list li:last-child {
  border-bottom: none;
}

.lf-problem-list .bi-x-circle-fill {
  color: #e57373;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lf-highlight-box {
  background: var(--lf-white);
  border-radius: var(--lf-radius-lg);
  border: 1px solid var(--lf-light);
  padding: 2rem;
  box-shadow: var(--lf-shadow);
  height: 100%;
}

.lf-highlight-box--accent {
  border-color: rgba(48, 177, 176, 0.25);
  background: linear-gradient(160deg, rgba(221, 236, 239, 0.5), var(--lf-white));
}

/* Flow comparison */
.lf-flow-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}

.lf-flow-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lf-primary);
  font-size: 1.5rem;
  padding: 0 0.25rem;
}

.lf-flow-panel {
  border-radius: var(--lf-radius-lg);
  padding: 1.75rem 1.35rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lf-flow-panel--old {
  background: #f3f6f7;
  border: 1px dashed #b8c8ca;
}

.lf-flow-panel--new {
  position: relative;
  background: linear-gradient(165deg, rgba(48, 177, 176, 0.1), rgba(221, 236, 239, 0.65));
  border: 2px solid rgba(48, 177, 176, 0.28);
  box-shadow: var(--lf-glow);
  overflow: hidden;
}

.lf-flow-panel--new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(6, 214, 196, 0.18), transparent 55%);
  pointer-events: none;
}

.lf-flow-panel__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.35rem;
  color: var(--lf-muted);
}

.lf-flow-panel__head--brand {
  color: var(--lf-primary-darker);
}

.lf-flow-panel__head .bi {
  font-size: 1.1rem;
}

.lf-flow-panel__note {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lf-muted);
  margin: 1rem 0 0;
  letter-spacing: 0.02em;
}

.lf-flow-panel__note--brand {
  color: var(--lf-primary-darker);
}

.lf-flow-panel__caption {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--lf-muted);
  margin: 0.65rem 0 0;
}

/* Portal tradicional — fluxo plano */
.lf-flow-flat {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 280px;
}

.lf-flow-flat__step {
  width: 100%;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: var(--lf-white);
  border: 1px solid #d5dfe0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #6b7f80;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.lf-flow-flat__step--end {
  background: #e8ecee;
  border-style: dashed;
}

.lf-flow-flat__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.65rem 0;
  color: #a8b8b9;
}

.lf-flow-flat__line {
  width: 2px;
  height: 28px;
  background: #c5d0d1;
  border-radius: 2px;
}

/* LeadFy — funil dinâmico */
.lf-funnel {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  padding: 0.25rem 0 0.35rem;
}

.lf-funnel__beam {
  position: absolute;
  top: 0.5rem;
  bottom: 4.5rem;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(6, 214, 196, 0.15), rgba(31, 142, 241, 0.45));
  border-radius: 999px;
  overflow: hidden;
}

.lf-funnel__pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 214, 196, 0.55), transparent);
  animation: lf-funnel-pulse 2.4s ease-in-out infinite;
}

.lf-funnel__dot {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--lf-cyan);
  box-shadow: 0 0 10px rgba(6, 214, 196, 0.8);
  animation: lf-funnel-dot 2.8s linear infinite;
}

.lf-funnel__dot--2 {
  animation-delay: 0.9s;
  background: var(--lf-blue);
  box-shadow: 0 0 10px rgba(31, 142, 241, 0.7);
}

.lf-funnel__dot--3 {
  animation-delay: 1.8s;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
}

.lf-funnel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.lf-funnel__item {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

.lf-reveal.is-visible .lf-funnel__item {
  animation: lf-funnel-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.09s);
}

.lf-funnel__stage {
  width: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(48, 177, 176, 0.22);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--lf-dark);
  box-shadow: 0 6px 18px rgba(48, 177, 176, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lf-funnel__stage .bi {
  color: var(--lf-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lf-funnel__item:hover .lf-funnel__stage {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(48, 177, 176, 0.2);
}

.lf-funnel__out {
  position: relative;
  z-index: 2;
  margin-top: 0.65rem;
  width: 58%;
  min-width: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--lf-grad-brand-soft);
  color: var(--lf-white);
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(48, 177, 176, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.lf-funnel__out .bi {
  font-size: 1.15rem;
}

.lf-funnel__out em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.lf-reveal.is-visible .lf-funnel__out {
  animation: lf-funnel-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

@keyframes lf-funnel-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lf-funnel-dot {
  0% {
    top: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes lf-funnel-pulse {
  0%, 100% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(100%);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .lf-flow-compare {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lf-flow-vs {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .lf-flow-flat,
  .lf-funnel {
    min-height: auto;
  }

  .lf-funnel__stage {
    font-size: 0.78rem;
    padding: 0.55rem 0.7rem;
  }

  .lf-funnel__out {
    width: 68%;
  }
}

/* Feature grid */
.lf-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.lf-feature-card {
  position: relative;
  background: var(--lf-white);
  border-radius: var(--lf-radius);
  padding: 1.65rem 1.5rem;
  border: 1px solid var(--lf-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  overflow: hidden;
}

.lf-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lf-grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.lf-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lf-glow);
  border-color: rgba(6, 214, 196, 0.35);
}

.lf-feature-card:hover::before {
  transform: scaleX(1);
}

.lf-feature-card .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.35rem;
  color: var(--lf-white);
  background: var(--lf-grad-brand-soft);
  margin-bottom: 0.9rem;
  box-shadow: 0 8px 20px rgba(6, 214, 196, 0.28);
}

.lf-feature-card.text-center .bi {
  margin-left: auto;
  margin-right: auto;
}

.lf-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lf-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.lf-check-list .bi-check-circle-fill {
  color: var(--lf-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Lead example — ficha (aligned with apresentação) */
.lf-section--exemplo .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lf-lead-section-head {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.lf-lead-section-head .lf-section-title {
  max-width: none;
}

.lf-lead-section-head .lf-section-lead {
  margin-left: auto;
  margin-right: auto;
}

.lf-lead-sheet {
  background: var(--lf-white);
  border-radius: 18px;
  border: 1px solid rgba(48, 177, 176, 0.2);
  box-shadow: 0 20px 60px rgba(6, 214, 196, 0.15);
  overflow: hidden;
  width: 100%;
}

.lf-lead-sheet--wide {
  max-width: 960px;
  margin: 0 auto;
}

.lf-lead-sheet__bar {
  background: var(--lf-grad-brand-soft);
  color: white;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lf-lead-sheet__body {
  padding: 0.5rem 1.25rem 1rem;
}

.lf-lead-sheet__body--grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  padding: 1rem 1.25rem 1.15rem;
}

.lf-lead-sheet__col {
  min-width: 0;
}

@media (max-width: 767px) {
  .lf-lead-sheet__body--grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.lf-lead-field {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--lf-light);
  font-size: 0.95rem;
}

.lf-lead-field:last-of-type {
  border-bottom: none;
}

.lf-lead-field__label {
  color: var(--lf-muted);
  font-weight: 500;
}

.lf-lead-field__value {
  font-weight: 600;
  color: var(--lf-dark);
}

.lf-intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--lf-lime), var(--lf-cyan));
  color: #06332f;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(142, 224, 74, 0.3);
}

.lf-lead-wa {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lf-light);
  margin-bottom: 0.85rem;
}

.lf-lead-wa strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lf-muted);
  margin-bottom: 0.35rem;
}

.lf-lead-wa p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--lf-dark);
}

.lf-lead-wa__num {
  font-weight: 700;
}

.lf-lead-wa__demo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--lf-light-soft);
  border: 1px solid var(--lf-light);
  color: var(--lf-primary-darker);
  font-size: 0.82rem;
  font-weight: 700;
}

.lf-lead-demo-tag {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lf-lead-wa__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.lf-lead-wa__link:hover {
  opacity: 0.92;
  color: #fff;
}

.lf-lead-qual {
  padding: 0;
}

.lf-lead-qual strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lf-muted);
  margin-bottom: 0.45rem;
}

.lf-lead-qual p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--lf-muted);
}

.lf-lead-table-wrap {
  height: 100%;
}

.lf-lead-table__title {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lf-muted);
  margin-bottom: 0.55rem;
}

.lf-lead-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.lf-lead-table th,
.lf-lead-table td {
  padding: 0.35rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(221, 236, 239, 0.9);
  vertical-align: top;
}

.lf-qual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(142, 224, 74, 0.2);
  color: var(--lf-primary-darker);
  font-weight: 800;
  font-size: 0.78rem;
}

.lf-lead-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lf-muted);
  background: var(--lf-light-soft);
}

.lf-lead-table td:first-child {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--lf-muted);
  width: 42%;
}

.lf-lead-table td:last-child {
  font-weight: 600;
  color: var(--lf-dark);
}

.lf-lead-preview__approach {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--lf-light-soft);
  border-radius: 12px;
  border-left: 4px solid var(--lf-primary);
}

.lf-lead-preview__approach p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--lf-muted);
}

/* Stats row */
.lf-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.lf-stat {
  text-align: center;
}

.lf-stat__num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--lf-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}

.lf-stat__label {
  font-size: 0.9rem;
  color: var(--lf-muted);
  margin-top: 0.35rem;
}

/* Portal contrast */
.lf-contrast-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--lf-radius-lg);
  height: 100%;
}

.lf-contrast-card--portal {
  background: #f0f2f3;
  border: 1px solid #dce0e1;
}

.lf-contrast-card--leadsfy {
  background: var(--lf-grad-aurora);
  background-size: 180% 180%;
  color: white;
  box-shadow: var(--lf-glow);
  animation: lf-grad-shift 8s ease infinite;
}

@keyframes lf-grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lf-contrast-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.lf-contrast-card p {
  margin: 0;
  opacity: 0.92;
  font-size: 1.05rem;
}

/* CTA final */
.lf-cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0c3b3a 0%, var(--lf-primary-darker) 30%, var(--lf-primary) 70%, var(--lf-blue) 120%);
  background-size: 180% 180%;
  color: white;
  position: relative;
  overflow: hidden;
  animation: lf-grad-shift 12s ease infinite;
}

.lf-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(6, 214, 196, 0.25), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(123, 92, 255, 0.22), transparent 40%);
  pointer-events: none;
}

.lf-cta-final .lf-section-title,
.lf-cta-final .lf-hero__sub {
  color: white;
}

.lf-cta-final .lf-section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.lf-contact-form {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--lf-radius-lg);
  padding: 2rem;
  color: var(--lf-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.lf-contact-form .form-control {
  border-radius: 10px;
  border-color: var(--lf-light);
  padding: 0.75rem 1rem;
}

.lf-contact-form .form-control:focus {
  border-color: var(--lf-primary);
  box-shadow: 0 0 0 0.2rem rgba(48, 177, 176, 0.2);
}

.lf-form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.lf-form-success.is-visible {
  display: block;
}

.lf-form-success .bi {
  font-size: 3rem;
  color: var(--lf-primary);
  margin-bottom: 1rem;
}

/* Thank you page */
.lf-thankyou-hero {
  min-height: calc(100vh - var(--lf-nav-h));
  padding-top: calc(var(--lf-nav-h) + 2rem);
  padding-bottom: 4rem;
}

.lf-thankyou-card {
  background: var(--lf-white);
  border-radius: var(--lf-radius-lg);
  box-shadow: var(--lf-shadow-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(48, 177, 176, 0.12);
}

@media (min-width: 768px) {
  .lf-thankyou-card {
    padding: 2.5rem 2.25rem;
  }
}

.lf-thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(48, 177, 176, 0.12);
  color: var(--lf-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lf-thankyou-icon--success {
  background: rgba(30, 216, 133, 0.15);
  color: #1a9d5c;
}

.lf-thankyou-summary__inner {
  background: var(--lf-light-soft);
  border-radius: var(--lf-radius);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(48, 177, 176, 0.15);
}

.lf-thankyou-card .form-control,
.lf-thankyou-card .form-select {
  border-radius: 0.65rem;
  border-color: rgba(15, 42, 42, 0.12);
}

.lf-thankyou-card .form-control:focus,
.lf-thankyou-card .form-select:focus {
  border-color: var(--lf-primary);
  box-shadow: 0 0 0 0.2rem rgba(48, 177, 176, 0.2);
}

.lf-pricing-note {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.lf-pricing-note__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--lf-radius);
  background: var(--lf-white);
  border: 1px solid rgba(6, 214, 196, 0.22);
  font-size: 0.92rem;
  color: var(--lf-muted);
  box-shadow: 0 4px 16px rgba(6, 214, 196, 0.08);
}

.lf-pricing-note__item .bi {
  font-size: 1.25rem;
  color: var(--lf-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lf-pricing-note__item .bi-x-circle {
  color: var(--lf-coral);
}

.lf-pricing-includes {
  max-width: 52rem;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: var(--lf-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.lf-pricing-includes__title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lf-primary-darker);
  text-align: center;
  margin-bottom: 1rem;
}

.lf-pricing-includes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .lf-pricing-includes__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
  }
}

.lf-pricing-includes__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--lf-dark);
  line-height: 1.45;
}

.lf-pricing-includes__list .bi-check-circle-fill {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--lf-primary);
}

.lf-pricing-grid {
  margin-bottom: 3rem;
}

.lf-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--lf-white);
  border-radius: var(--lf-radius-lg);
  border: 1px solid var(--lf-light);
  padding: 2rem 1.65rem;
  box-shadow: var(--lf-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lf-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lf-glow);
  border-color: rgba(6, 214, 196, 0.3);
}

.lf-pricing-card--featured {
  border: 2px solid rgba(6, 214, 196, 0.45);
  background: linear-gradient(180deg, rgba(6, 214, 196, 0.06) 0%, var(--lf-white) 35%);
  box-shadow: var(--lf-glow);
  transform: scale(1.02);
}

.lf-pricing-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.lf-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: var(--lf-grad-brand-soft);
  color: var(--lf-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(6, 214, 196, 0.35);
}

.lf-pricing-card__head {
  margin-bottom: 1.25rem;
}

.lf-pricing-card__tier {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--lf-dark);
  margin-bottom: 0.35rem;
}

.lf-pricing-card--featured .lf-pricing-card__tier {
  background: var(--lf-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lf-pricing-card__tagline {
  font-size: 0.9rem;
  color: var(--lf-muted);
  margin: 0;
  line-height: 1.5;
}

.lf-pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.lf-pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lf-muted);
  margin-top: 0.5rem;
}

.lf-pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--lf-grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lf-pricing-card__period {
  font-size: 0.95rem;
  color: var(--lf-muted);
  align-self: flex-end;
  margin-bottom: 0.35rem;
}

.lf-pricing-card__limit {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(6, 214, 196, 0.12), rgba(31, 142, 241, 0.1));
  border: 1px solid rgba(6, 214, 196, 0.25);
  font-size: 0.92rem;
  color: var(--lf-dark);
  margin-bottom: 0.5rem;
  line-height: 1.45;
  width: 100%;
  box-sizing: border-box;
}

.lf-pricing-card__limit .bi {
  color: var(--lf-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lf-pricing-card__limit-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.lf-pricing-card__unit {
  font-size: 0.82rem;
  color: var(--lf-muted);
  margin-bottom: 1.25rem;
}

.lf-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.lf-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(221, 236, 239, 0.7);
}

.lf-pricing-card__features li:last-child {
  border-bottom: none;
}

.lf-pricing-card__features .bi-check-circle-fill {
  color: var(--lf-primary);
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.lf-pricing-card__features .bi-dash-circle {
  color: #b0bec0;
}

.lf-pricing-card__muted {
  color: var(--lf-muted);
}

.lf-pricing-card__ideal {
  text-align: center;
  font-size: 0.78rem;
  color: var(--lf-muted);
  margin: 0.85rem 0 0;
}

.lf-pricing-compare {
  padding: 2rem;
  border-radius: var(--lf-radius-lg);
  background: var(--lf-white);
  border: 1px solid var(--lf-light);
  box-shadow: var(--lf-shadow);
}

.lf-pricing-compare__title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.lf-pricing-compare__cell {
  height: 100%;
  padding: 1.25rem;
  border-radius: var(--lf-radius);
  text-align: center;
}

.lf-pricing-compare__cell p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lf-pricing-compare__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lf-pricing-compare__cell--no {
  background: #f3f5f6;
  border: 1px dashed #c5d0d1;
  color: var(--lf-muted);
}

.lf-pricing-compare__cell--mid {
  background: linear-gradient(160deg, rgba(48, 177, 176, 0.08), rgba(221, 236, 239, 0.5));
  border: 1px solid rgba(48, 177, 176, 0.25);
  color: var(--lf-dark);
}

.lf-pricing-compare__cell--yes {
  background: var(--lf-grad-brand-soft);
  color: var(--lf-white);
  box-shadow: 0 8px 24px rgba(6, 214, 196, 0.28);
}

.lf-pricing-compare__cell--yes .lf-pricing-compare__label {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
  .lf-pricing-card--featured {
    transform: none;
  }

  .lf-pricing-card--featured:hover {
    transform: translateY(-6px);
  }
}

/* Footer */
.lf-footer {
  padding: 2rem 0;
  background: var(--lf-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.lf-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.lf-footer a:hover {
  color: var(--lf-primary-light, #5ec9c6);
}

.lf-footer .brand-logo--inverted {
  filter: brightness(0) invert(1);
}

/* Reveal animations */
.lf-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.lf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lf-reveal-delay-1 { transition-delay: 0.1s; }
.lf-reveal-delay-2 { transition-delay: 0.2s; }
.lf-reveal-delay-3 { transition-delay: 0.3s; }

/* Journey progress */
.lf-journey {
  position: fixed;
  top: var(--lf-nav-h);
  left: 0;
  height: 3px;
  background: var(--lf-primary);
  z-index: 1029;
  width: 0;
  transition: width 0.1s linear;
}

/* WhatsApp float */
.lf-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1020;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.lf-wa-float:hover {
  transform: scale(1.08);
  color: white;
}

@media (max-width: 991px) {
  .lf-nav .nav-item .lf-btn-nav {
    width: 100%;
    margin-top: 0.5rem;
  }

  .lf-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .lf-hero__visual {
    margin-top: 2.5rem;
  }

  .lf-float-badge--1 {
    right: 0;
  }

  .lf-float-badge--2 {
    left: 0;
  }
}

/* Guia cards na home */
.lf-guia-card {
  display: block;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--lf-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lf-guia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(48, 177, 176, 0.35);
  color: inherit;
}

.lf-guia-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lf-primary);
  margin-bottom: 0.75rem;
}

.lf-guia-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lf-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.lf-guia-card__desc {
  font-size: 0.875rem;
  color: var(--lf-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.lf-guia-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lf-primary);
}

.lf-guia-card:hover .lf-guia-card__link i {
  transform: translateX(3px);
}

.lf-guia-card__link i {
  transition: transform 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lf-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lf-hero__badge-dot,
  .lf-funnel__dot,
  .lf-funnel__pulse,
  .lf-float-badge {
    animation: none;
  }

  .lf-funnel__item,
  .lf-funnel__out {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
