/* =========================================================
   INSPFLOW — Landing Page CSS
   Design: Dark Premium Industrial (#0D1320 + #E8721A)
   ========================================================= */

/* --- Variables ------------------------------------------ */
:root {
  --lp-bg:          rgba(13,19,32,.85);
  --lp-bg-alt:      rgba(11,22,40,.85);
  --lp-bg-card:     #131F35;
  --lp-bg-card2:    #1A2540;
  --lp-accent:      #E8721A;
  --lp-accent-h:    #C05A10;
  --lp-accent-glow: rgba(232, 114, 26, 0.25);
  --lp-text:        #F1F5F9;
  --lp-muted:       #94A3B8;
  --lp-border:      rgba(255, 255, 255, 0.07);
  --lp-border-acc:  rgba(232, 114, 26, 0.35);
  --lp-radius:      14px;
  --lp-radius-sm:   8px;
  --lp-font:        'Inter', 'Segoe UI', Roboto, sans-serif;
  --lp-shadow-acc:  0 8px 32px rgba(232, 114, 26, 0.30);
  --lp-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.40);
}

/* --- Base ---------------------------------------------- */
.lp-page {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.lp-page a { color: var(--lp-accent); text-decoration: none; }
.lp-page a:hover { color: var(--lp-accent-h); }

/* --- Fixed background video (same pattern as the login screen) --- */
.lp-bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.lp-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(0.55);
}
.lp-bg-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(13,19,32,.55) 0%, rgba(10,20,37,.45) 50%, rgba(6,16,28,.60) 100%);
}

.lp-section { padding: 96px 0; }
.lp-section-alt { background: var(--lp-bg-alt); }

.lp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-accent);
  border: 1px solid var(--lp-border-acc);
  border-radius: 100px;
  padding: 5px 14px;
  background: rgba(232, 114, 26, 0.08);
  margin-bottom: 20px;
}

.lp-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lp-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--lp-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}

.lp-accent-word { color: var(--lp-accent); }

/* --- Navbar -------------------------------------------- */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

.lp-nav.scrolled {
  background: rgba(13, 19, 32, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -.02em;
}

.lp-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--lp-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--lp-shadow-acc);
}

.lp-logo span { color: var(--lp-accent); }

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-muted);
  transition: color .2s;
}

.lp-nav-links a:hover { color: #fff; }

.lp-nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-btn-primary {
  background: var(--lp-accent);
  color: #fff !important;
  border: none;
  border-radius: var(--lp-radius-sm);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: var(--lp-shadow-acc);
}

.lp-btn-primary:hover {
  background: var(--lp-accent-h);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(232,114,26,.40);
}

.lp-btn-primary:active { transform: translateY(0); }

.lp-btn-primary-lg {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: var(--lp-radius);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text) !important;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}

.lp-btn-outline:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent) !important;
  background: rgba(232, 114, 26, 0.06);
}

.lp-btn-outline-lg {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: var(--lp-radius);
}

/* --- Hero ---------------------------------------------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(232,114,26,.08) 0%, transparent 65%),
              linear-gradient(165deg, rgba(13,19,32,.85) 0%, rgba(10,20,37,.85) 60%, rgba(6,16,28,.88) 100%);
}

/* Grid overlay */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.lp-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: 0;
  animation: sparkFly var(--dur, 2.5s) var(--delay, 0s) infinite ease-out;
  transform-origin: center;
}

@keyframes sparkFly {
  0%   { opacity: .85; transform: translate(0, 0) scale(1); }
  60%  { opacity: .4; }
  100% { opacity: 0;   transform: translate(var(--dx, 40px), var(--dy, -60px)) scale(0); }
}

/* Welding arc glow */
.lp-hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(232,114,26,.14) 0%, transparent 70%);
  animation: glowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50%       { transform: translateY(-50%) scale(1.1); opacity: .7; }
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lp-accent);
  background: rgba(232,114,26,.10);
  border: 1px solid var(--lp-border-acc);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeSlideDown .7s ease both;
}

.lp-hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeSlideUp .7s .1s ease both;
}

.lp-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--lp-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeSlideUp .7s .2s ease both;
}

.lp-hero-sub strong { color: var(--lp-text); font-weight: 600; }

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeSlideUp .7s .3s ease both;
}

.lp-norm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  animation: fadeSlideUp .7s .4s ease both;
}

.lp-norm-badges span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,.03);
  transition: border-color .2s, color .2s;
}

.lp-norm-badges span:hover {
  border-color: var(--lp-border-acc);
  color: var(--lp-accent);
}

/* Hero right SVG */
.lp-hero-diagram {
  position: relative;
  width: 100%;
  max-width: 460px;
  animation: fadeIn .9s .4s ease both;
}

/* Diagrama do hero — fluxo da REC ao RTM */
.lp-flow-track {
  stroke: rgba(232, 114, 26, .16);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5 5;
}

/* O traço, a bolinha e os nós são animados via SMIL dentro do próprio SVG
   (mesmo relógio → sincronia garantida). Aqui só ficam estilos estáticos.
   ATENÇÃO: não definir stroke/stroke-dashoffset/opacity destes elementos
   via CSS — regra CSS sobrepõe o atributo animado pelo SMIL. */
.lp-flow-draw {
  stroke: var(--lp-accent, #E8721A);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(232, 114, 26, .7));
}

.lp-flow-node {
  fill: #131F35;
}

.lp-flow-label {
  fill: #F1F5F9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  font-family: 'Inter', sans-serif;
  text-anchor: middle;
}

.lp-flow-label-end { fill: #fff; }

.lp-flow-cap {
  fill: rgba(241, 245, 249, .45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  font-family: 'Inter', sans-serif;
  text-anchor: middle;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .lp-flow-draw { display: none; }
  .lp-flow-dot  { display: none; }
  .lp-flow-track { stroke: rgba(232, 114, 26, .35); }
}

/* --- Stats Bar ----------------------------------------- */
.lp-stats {
  background: var(--lp-bg-alt);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 40px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.lp-stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--lp-border);
}

.lp-stat-item:last-child { border-right: none; }

.lp-stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--lp-accent);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.lp-stat-label {
  font-size: 13px;
  color: var(--lp-muted);
  font-weight: 500;
}

/* --- Problem Section ----------------------------------- */
.lp-problem {
  padding: 96px 0;
}

.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.lp-problem-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-left: 3px solid #D32F2F;
  border-radius: var(--lp-radius);
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .2s, border-color .2s;
}

.lp-problem-card:hover {
  transform: translateY(-3px);
  border-left-color: #E53935;
}

.lp-problem-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(211, 47, 47, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #EF5350;
}

.lp-problem-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 6px;
}

.lp-problem-desc {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Features ------------------------------------------ */
.lp-features {
  padding: 96px 0;
  background: var(--lp-bg-alt);
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.lp-feature-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.lp-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.lp-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--lp-border-acc);
  box-shadow: var(--lp-shadow-card), 0 0 0 1px var(--lp-border-acc);
}

.lp-feature-card:hover::after { opacity: 1; }

.lp-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 114, 26, .12);
  border: 1px solid rgba(232, 114, 26, .2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--lp-accent);
  margin-bottom: 20px;
  transition: background .2s, box-shadow .2s;
}

.lp-feature-card:hover .lp-feature-icon {
  background: rgba(232, 114, 26, .18);
  box-shadow: 0 4px 16px rgba(232,114,26,.2);
}

.lp-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-feature-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-accent);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}

.lp-feature-desc {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.65;
  margin: 0;
}

.lp-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.lp-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--lp-border);
  border-radius: 5px;
  padding: 3px 9px;
}

/* --- Normas -------------------------------------------- */
.lp-normas {
  padding: 96px 0;
  background: var(--lp-bg);
  position: relative;
  overflow: hidden;
}

.lp-normas::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,114,26,.05) 0%, transparent 65%);
  pointer-events: none;
}

.lp-normas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.lp-norma-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  transition: border-color .25s, transform .25s;
}

.lp-norma-card:hover {
  border-color: var(--lp-border-acc);
  transform: translateY(-3px);
}

.lp-norma-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lp-norma-badge {
  font-size: 13px;
  font-weight: 800;
  color: var(--lp-accent);
  background: rgba(232,114,26,.10);
  border: 1px solid rgba(232,114,26,.25);
  border-radius: 8px;
  padding: 6px 14px;
  white-space: nowrap;
}

.lp-norma-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0;
}

.lp-norma-name small {
  display: block;
  font-size: 12px;
  color: var(--lp-muted);
  font-weight: 400;
  margin-top: 2px;
}

.lp-norma-items {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-norma-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-norma-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--lp-accent);
  border-radius: 50%;
  margin-top: 8px;
}

.lp-norma-disclaimer {
  font-size: 11px;
  color: #4A5568;
  border-top: 1px solid var(--lp-border);
  padding-top: 16px;
  margin-top: 20px;
  line-height: 1.6;
}

/* --- How it works -------------------------------------- */
.lp-steps {
  padding: 96px 0;
  background: var(--lp-bg-alt);
}

.lp-steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.lp-steps-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--lp-accent), rgba(232,114,26,.3));
}

.lp-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.lp-step-number {
  width: 72px;
  height: 72px;
  background: var(--lp-bg-card);
  border: 2px solid var(--lp-border-acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--lp-accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background .2s, box-shadow .2s;
}

.lp-step:hover .lp-step-number {
  background: rgba(232,114,26,.1);
  box-shadow: 0 0 0 6px rgba(232,114,26,.08);
}

.lp-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 10px;
}

.lp-step-desc {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* --- Notifications ------------------------------------- */
.lp-notifications {
  padding: 96px 0;
  background: var(--lp-bg);
}

.lp-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.lp-channel-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}

.lp-channel-card:hover {
  border-color: var(--lp-border-acc);
  transform: translateY(-4px);
}

.lp-channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
  transition: box-shadow .2s;
}

.lp-channel-card:hover .lp-channel-icon {
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.lp-channel-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 6px;
}

.lp-channel-desc {
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- CTA Section --------------------------------------- */
.lp-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #C05A10 0%, #E8721A 45%, #C05A10 100%);
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.lp-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lp-cta-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.lp-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.80);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.lp-btn-white {
  background: #fff;
  color: var(--lp-accent) !important;
  border: none;
  border-radius: var(--lp-radius);
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.lp-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  color: var(--lp-accent-h) !important;
}

.lp-cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.lp-cta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  transition: color .2s;
}

.lp-cta-contact:hover { color: #fff; }

.lp-cta-contact i {
  font-size: 20px;
  opacity: .9;
}

/* --- Footer -------------------------------------------- */
.lp-footer {
  background: #070D18;
  border-top: 1px solid var(--lp-border);
  padding: 56px 0 32px;
}

.lp-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.lp-footer-brand p {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 300px;
}

.lp-footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lp-text);
  margin-bottom: 16px;
}

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-links a {
  font-size: 14px;
  color: var(--lp-muted);
  transition: color .2s;
}

.lp-footer-links a:hover { color: var(--lp-text); }

.lp-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-muted);
  text-decoration: none;
  transition: color .2s;
}

.lp-footer-contact-item:hover { color: var(--lp-text); }

.lp-footer-contact-item i { color: var(--lp-accent); font-size: 16px; }

.lp-footer-bottom {
  border-top: 1px solid var(--lp-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-footer-copy {
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-footer-copy a {
  color: var(--lp-accent);
  font-weight: 600;
}

.lp-footer-copy a:hover { color: var(--lp-accent-h); }

/* --- Scroll Animations --------------------------------- */
.lp-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.lp-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-fade-delay-1 { transition-delay: .1s; }
.lp-fade-delay-2 { transition-delay: .2s; }
.lp-fade-delay-3 { transition-delay: .3s; }
.lp-fade-delay-4 { transition-delay: .4s; }
.lp-fade-delay-5 { transition-delay: .5s; }
.lp-fade-delay-6 { transition-delay: .6s; }

/* --- Hero Entrance Animations -------------------------- */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Responsive ---------------------------------------- */
@media (max-width: 1200px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .lp-section { padding: 72px 0; }
  .lp-hero-content { padding-top: 80px; }
  .lp-hero-diagram { display: none !important; }
  .lp-bg-video-wrap { display: none; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-item:nth-child(2) { border-right: none; }
  .lp-stat-item:nth-child(3) { border-right: 1px solid var(--lp-border); border-top: 1px solid var(--lp-border); }
  .lp-stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--lp-border); }
  .lp-normas-grid { grid-template-columns: 1fr; }
  .lp-footer-top { grid-template-columns: 1fr 1fr; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-nav-links { display: none; }
}

@media (max-width: 768px) {
  .lp-problem-grid { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-steps-track { grid-template-columns: 1fr; gap: 40px; }
  .lp-steps-track::before { display: none; }
  .lp-channels { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-top { grid-template-columns: 1fr; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
  .lp-hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .lp-channels { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: 1fr; }
  .lp-stat-item { border-right: none !important; border-top: 1px solid var(--lp-border); }
  .lp-stat-item:first-child { border-top: none; }
}

@media (prefers-reduced-motion: reduce) {
  .spark,
  .lp-hero-glow,
  .lp-fade,
  .lp-hero-badge,
  .lp-hero-title,
  .lp-hero-sub,
  .lp-hero-ctas,
  .lp-norm-badges,
  .lp-hero-diagram {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   NOVOS BLOCOS — Conversão (hero microproof, videostrip,
   cordão de solda animado, planos, FAQ, WhatsApp flutuante)
   ========================================================= */

/* --- Hero: microprova social sob os CTAs ---------------- */
.lp-hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  margin: 18px 0 28px;
  font-size: 13.5px;
  color: var(--lp-muted);
}
.lp-hero-microproof i { color: var(--lp-accent); margin-right: 6px; }

/* --- Videostrip (seção imersiva com vídeo próprio) ------ */
.lp-videostrip {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}
.lp-videostrip-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: contrast(1.08) saturate(1.1) brightness(0.5);
}
.lp-videostrip-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,14,26,.92) 0%, rgba(8,14,26,.72) 45%, rgba(8,14,26,.30) 100%);
}
.lp-videostrip-content { position: relative; }
.lp-videostrip-text {
  font-size: clamp(16px, 2.2vw, 19px);
  color: #cbd5e1;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 24px;
}
.lp-videostrip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-videostrip-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--lp-text);
  font-size: 15px;
  line-height: 1.5;
}
.lp-videostrip-list li i { color: var(--lp-accent); flex-shrink: 0; margin-top: 3px; }

/* --- Cordão de solda animado (divisor premium) ---------- */
.lp-weld-bead {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(232, 114, 26, 0.12);
  overflow: hidden;
  z-index: 1;
}
.lp-weld-bead span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,114,26,.5) 25%,
    #ffd9a8 50%,
    rgba(232,114,26,.5) 75%,
    transparent 100%);
  box-shadow: 0 0 18px 3px rgba(255, 170, 60, 0.55);
  animation: weldBead 5.5s linear infinite;
}
@keyframes weldBead {
  from { left: -240px; }
  to   { left: 100%; }
}

/* --- Planos --------------------------------------------- */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}
.lp-price-card {
  position: relative;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lp-price-card:hover {
  transform: translateY(-6px);
  border-color: var(--lp-border-acc);
  box-shadow: var(--lp-shadow-card);
}
.lp-price-featured {
  background: linear-gradient(160deg, #182741 0%, #131F35 100%);
  border: 1.5px solid var(--lp-border-acc);
  box-shadow: 0 12px 48px rgba(232, 114, 26, 0.18);
  transform: scale(1.03);
}
.lp-price-featured:hover { transform: scale(1.03) translateY(-6px); }
.lp-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-h));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.lp-price-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin-bottom: 4px;
}
.lp-price-ideal {
  font-size: 13px;
  color: var(--lp-muted);
  margin-bottom: 18px;
}
.lp-price-row { display: flex; align-items: baseline; gap: 3px; }
.lp-price-curr { font-size: 16px; font-weight: 700; color: var(--lp-accent); }
.lp-price-amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--lp-text);
  line-height: 1;
}
.lp-price-period { font-size: 14px; color: var(--lp-muted); }
.lp-price-annual { font-size: 12.5px; color: var(--lp-muted); margin: 8px 0 20px; }
.lp-price-annual span { color: var(--lp-accent); font-weight: 700; }
.lp-price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.lp-price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.45;
}
.lp-price-feats li i { color: var(--lp-accent); flex-shrink: 0; margin-top: 2px; }
.lp-price-enterprise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border-acc);
  border-radius: var(--lp-radius);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.lp-pricing-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--lp-muted);
  margin: 0;
}
.lp-pricing-note i { color: var(--lp-accent); margin-right: 6px; }

/* --- FAQ ------------------------------------------------ */
.lp-faq-list { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.lp-faq-item[open] { border-color: var(--lp-border-acc); }
.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-text);
  position: relative;
  padding-right: 48px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--lp-accent);
  transition: transform .25s ease;
}
.lp-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--lp-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* --- WhatsApp flutuante --------------------------------- */
.lp-wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  border-radius: 100px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.lp-wa-float i { font-size: 22px; line-height: 1; }

/* --- Responsivo dos novos blocos ------------------------ */
@media (max-width: 991px) {
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .lp-price-featured { transform: none; }
  .lp-price-featured:hover { transform: translateY(-6px); }
  .lp-price-enterprise { flex-direction: column; text-align: center; }
  .lp-videostrip { padding: 90px 0; }
  .lp-videostrip-overlay {
    background: linear-gradient(180deg, rgba(8,14,26,.9) 0%, rgba(8,14,26,.75) 100%);
  }
}
@media (max-width: 480px) {
  .lp-wa-float-label { display: none; }
  .lp-wa-float { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-weld-bead span { animation: none !important; }
  .lp-price-card, .lp-price-featured { transform: none !important; transition: none !important; }
}
