/* ============================================
   LEADMINDS INSIGHTS — Brand Identity CSS
   Colores: #1D5BF7 (azul) / #A3F71D (verde lima)
   Tipografías: Alexandria + Sofia Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Sofia+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  /* Brand colors */
  --lm-blue:       #1D5BF7;
  --lm-blue-dark:  #1447d4;
  --lm-blue-light: #4d7ff8;
  --lm-green:      #A3F71D;
  --lm-green-dark: #8ad914;
  --lm-black:      #000000;

  /* Override font vars with brand fonts */
  --font-head: 'Alexandria', sans-serif;
  --font-body: 'Sofia Sans', sans-serif;

  /* Override accent with brand blue */
  --accent:  #1D5BF7;
  --accent2: #4d7ff8;
  --accent3: #93b4fc;
  --green:   #A3F71D;
  --green2:  #8ad914;
}

/* ---- BRAND BUTTON OVERRIDES ---- */
.btn-primary {
  background: var(--lm-blue);
  box-shadow: 0 4px 24px rgba(29,91,247,0.35);
}
.btn-primary:hover {
  background: var(--lm-blue-dark);
  box-shadow: 0 8px 32px rgba(29,91,247,0.5);
}
.btn-lm-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  background: var(--lm-green);
  color: #000;
  box-shadow: 0 4px 24px rgba(163,247,29,0.3);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lm-green:hover {
  background: var(--lm-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(163,247,29,0.45);
}
.btn-lm-green.btn-xl { padding: 20px 48px; font-size: 1.15rem; border-radius: 16px; }
.btn-lm-green.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }

/* ---- NAV logo override ---- */
.nav-logo img { height: 36px; width: auto; display: block; }

/* Social footer btn */
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text2);
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { border-color: var(--lm-blue); color: var(--text); }

/* Feature icon brand colors */
.feature-icon.lm-green {
  background: rgba(163,247,29,0.08);
  border: 1px solid rgba(163,247,29,0.25);
}

/* Section label brand color */
.section-label { color: var(--lm-blue); }

/* ---- HERO FULL SCREEN ---- */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fake website background */
.hero-bg-site {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fake-site {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  padding: 0;
  overflow: hidden;
}

/* Fake nav */
.fake-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 48px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.fake-logo {
  width: 120px; height: 20px;
  background: #cbd5e1;
  border-radius: 4px;
  flex-shrink: 0;
}
.fake-nav-links {
  display: flex; gap: 20px; flex: 1;
}
.fake-link {
  width: 60px; height: 10px;
  background: #e2e8f0;
  border-radius: 3px;
}
.fake-link.w-short { width: 40px; }
.fake-btn {
  width: 80px; height: 28px;
  background: #1D5BF7;
  border-radius: 6px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Fake hero content */
.fake-hero-content {
  padding: 60px 48px 40px;
  max-width: 600px;
}
.fake-hero-tag {
  width: 120px; height: 22px;
  background: rgba(29,91,247,0.12);
  border: 1px solid rgba(29,91,247,0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}
.fake-h1 {
  height: 40px;
  background: #1e293b;
  border-radius: 6px;
  margin-bottom: 14px;
  opacity: 0.85;
}
.fake-h1.w-full { width: 100%; }
.fake-h1.w-75 { width: 75%; }
.fake-p {
  height: 14px;
  background: #94a3b8;
  border-radius: 4px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.fake-p.w-full { width: 100%; }
.fake-p.w-60 { width: 60%; }
.fake-btns {
  display: flex; gap: 12px; margin-top: 28px;
}
.fake-cta-btn {
  width: 160px; height: 44px;
  background: #A3F71D;
  border-radius: 10px;
  opacity: 0.8;
}
.fake-ghost-btn {
  width: 120px; height: 44px;
  background: transparent;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
}

/* Fake cards */
.fake-hero-cards {
  position: absolute;
  right: 48px;
  top: 80px;
  display: flex;
  gap: 16px;
}
.fake-card {
  width: 180px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.fake-card.active {
  border-color: rgba(29,91,247,0.3);
  box-shadow: 0 4px 20px rgba(29,91,247,0.12);
}
.fake-card-icon {
  width: 36px; height: 36px;
  background: #e2e8f0;
  border-radius: 8px;
  margin-bottom: 14px;
}
.fake-card-icon.green { background: rgba(163,247,29,0.2); }
.fake-card-icon.blue { background: rgba(29,91,247,0.15); }
.fake-card-line {
  height: 10px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 8px;
}
.fake-card-line.w-full { width: 100%; }
.fake-card-line.w-75 { width: 75%; }
.fake-card-line.w-50 { width: 50%; }

/* Fake stats row */
.fake-stats-row {
  display: flex;
  gap: 0;
  padding: 0 48px;
  margin-top: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}
.fake-stat {
  flex: 1;
  padding: 0 24px 0 0;
  border-right: 1px solid #e2e8f0;
  margin-right: 24px;
}
.fake-stat:last-child { border-right: none; }
.fake-stat-num {
  height: 28px;
  background: #1e293b;
  border-radius: 5px;
  margin-bottom: 8px;
  width: 80%;
  opacity: 0.7;
}
.fake-stat-num.w-short { width: 50%; }
.fake-stat-lbl {
  height: 10px;
  background: #cbd5e1;
  border-radius: 3px;
  width: 90%;
}

/* Dark gradient overlay on fake site */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,12,20,0.92) 0%,
    rgba(8,12,20,0.82) 40%,
    rgba(8,12,20,0.55) 70%,
    rgba(8,12,20,0.75) 100%
  );
}

/* Hero main content on top */
.hero-main-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,91,247,0.12);
  border: 1px solid rgba(29,91,247,0.35);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #93b4fc;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--lm-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lm-green);
  animation: pulse-badge 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 6px var(--lm-green); }
  50% { box-shadow: 0 0 18px var(--lm-green), 0 0 30px rgba(163,247,29,0.3); }
}

.hero-h1 {
  font-family: 'Alexandria', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(240,244,255,0.75);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: rgba(240,244,255,0.55);
}
.trust-item svg { color: var(--lm-green); flex-shrink: 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---- VISITOR NOTIFICATIONS ---- */
.visitor-notifs {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  width: 320px;
  pointer-events: none;
}

.vnotif {
  background: rgba(13,18,32,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transform: translateX(360px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), opacity 0.4s ease;
  pointer-events: auto;
}
.vnotif.show {
  transform: translateX(0);
  opacity: 1;
}
.vnotif.hide {
  transform: translateX(360px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.vnotif-avatar {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  font-family: 'Alexandria', sans-serif;
  flex-shrink: 0;
}
.vnotif-body { flex: 1; min-width: 0; }
.vnotif-type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.vnotif-type.nueva { color: var(--lm-green); }
.vnotif-type.segunda { color: #93b4fc; }
.vnotif-type.caliente { color: #fca5a5; }
.vnotif-company {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vnotif-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.vnotif-source {
  background: rgba(29,91,247,0.15);
  color: #93b4fc;
  border: 1px solid rgba(29,91,247,0.25);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: 600;
}
.vnotif-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lm-green);
  box-shadow: 0 0 8px var(--lm-green);
  flex-shrink: 0;
  margin-top: 2px;
  animation: pulse-badge 1.5s ease infinite;
}

/* ---- PRICING/BLOG NAV logo override ---- */
.nav.scrolled .nav-logo img { filter: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .fake-hero-cards { display: none; }
  .fake-stats-row { display: none; }
  .visitor-notifs { right: 16px; width: 280px; bottom: 60px; }
  .hero-main-content { padding-top: 100px; padding-bottom: 60px; }
}
