/* ============================================================
   MeuCash Landing Page — Premium Design System
   ============================================================ */

/* ---- PWA Banner ---- */
.pwa-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white; border-top: 1px solid rgba(255,255,255,.08);
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---- Navigation ---- */
.ln-nav {
  position: sticky; top: 0; z-index: 1000; height: 72px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
[data-theme="dark"] .ln-nav { background: rgba(15,23,42,.88); }
.ln-nav-scrolled { border-bottom-color: var(--mc-border); box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.ln-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }

.ln-brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; flex-shrink: 0; }
.ln-brand-icon { font-size: 1.375rem; }
.ln-brand-name { font-weight: 900; font-size: 1.25rem; color: var(--mc-green); letter-spacing: -.04em; }

.ln-nav-link { color: var(--mc-text-secondary); text-decoration: none; font-size: .9rem; font-weight: 500;
  padding: .375rem .625rem; border-radius: 8px; transition: color .15s, background .15s; white-space: nowrap; }
.ln-nav-link:hover { color: var(--mc-text); background: var(--mc-gray-100); }
[data-theme="dark"] .ln-nav-link:hover { background: rgba(255,255,255,.06); }

.ln-nav-btn { background: none; border: none; padding: .375rem .625rem; border-radius: 8px; cursor: pointer;
  color: var(--mc-text-secondary); font-size: .9rem; font-weight: 500; display: flex; align-items: center;
  gap: .3rem; transition: color .15s, background .15s; white-space: nowrap; }
.ln-nav-btn:hover { color: var(--mc-text); background: var(--mc-gray-100); }
[data-theme="dark"] .ln-nav-btn:hover { background: rgba(255,255,255,.06); }
.ln-caret { font-size: .7rem; transition: transform .2s; }
.ln-nav-btn[aria-expanded="true"] .ln-caret { transform: rotate(180deg); }

.ln-btn-primary { display: inline-flex; align-items: center; gap: .375rem; background: var(--mc-green);
  color: white; text-decoration: none; padding: .5rem 1rem; border-radius: 10px; font-weight: 700;
  font-size: .875rem; transition: background .15s, transform .15s, box-shadow .15s; white-space: nowrap; border: none; cursor: pointer; }
.ln-btn-primary:hover { background: var(--mc-green-dark); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,.3); }

.ln-theme-btn { background: none; border: 1px solid var(--mc-border); border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--mc-text-secondary);
  font-size: .9rem; transition: background .15s, color .15s; flex-shrink: 0; }
.ln-theme-btn:hover { background: var(--mc-gray-100); color: var(--mc-text); }
[data-theme="dark"] .ln-theme-btn:hover { background: rgba(255,255,255,.08); }

/* Hamburger */
.ln-hamburger { background: none; border: none; padding: .25rem; cursor: pointer; display: flex; flex-direction: column;
  gap: 5px; width: 36px; height: 36px; align-items: center; justify-content: center; }
.ln-hamburger span { display: block; width: 22px; height: 2px; background: var(--mc-text); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s; transform-origin: center; }
.ln-ham-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ln-ham-open span:nth-child(2) { opacity: 0; width: 0; }
.ln-ham-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.ln-dropdown { position: relative; }
.ln-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--mc-surface); border: 1px solid var(--mc-border); border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.05);
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .2s, transform .2s; padding: .5rem;
}
.ln-dropdown-panel.ln-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.ln-mega-menu { min-width: 700px; }

.ln-mega-grid { display: grid; grid-template-columns: 1fr 1fr 220px; gap: 0; }
.ln-mega-col { padding: 1rem; }
.ln-mega-col + .ln-mega-col { border-left: 1px solid var(--mc-border); }
.ln-mega-heading { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--mc-text-muted); margin-bottom: .75rem; padding: 0 .5rem; }
.ln-mega-item { display: flex; align-items: center; gap: .75rem; padding: .625rem .75rem; border-radius: 10px;
  text-decoration: none; color: var(--mc-text); transition: background .15s; margin-bottom: .25rem; }
.ln-mega-item:hover { background: var(--mc-gray-50); }
[data-theme="dark"] .ln-mega-item:hover { background: rgba(255,255,255,.06); }
.ln-mega-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ln-mega-item-title { font-weight: 600; font-size: .875rem; line-height: 1.2; }
.ln-mega-item-desc { font-size: .75rem; color: var(--mc-text-muted); line-height: 1.3; margin-top: .125rem; }
.ln-mega-highlight { background: linear-gradient(135deg, #7c3aed, #6d28d9); border-radius: 12px; border-left: none !important; }
.ln-mega-promo { padding: 1.25rem; color: white; height: 100%; }

/* Mobile menu */
.ln-mobile-menu { display: none; border-top: 1px solid var(--mc-border); max-height: 0; overflow: hidden;
  transition: max-height .35s ease; }
.ln-mobile-menu.ln-mobile-open { display: block; max-height: 600px; }
.ln-mobile-link { display: block; padding: .625rem .75rem; color: var(--mc-text-secondary); text-decoration: none;
  font-size: .9375rem; border-radius: 8px; transition: color .15s, background .15s; }
.ln-mobile-link:hover { color: var(--mc-text); background: var(--mc-gray-100); }
.ln-mobile-group-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--mc-text-muted); padding: .75rem .75rem .25rem; }

/* ---- HERO ---- */
.ln-hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 72px); display: flex; align-items: center;
  padding: 5rem 0 4rem;
}
.ln-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 40%, rgba(16,185,129,.12) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 60%, rgba(124,58,237,.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 50% -10%, rgba(14,165,233,.07) 0%, transparent 60%),
              var(--mc-bg);
}
[data-theme="dark"] .ln-hero-bg {
  background: radial-gradient(ellipse 60% 50% at 20% 40%, rgba(16,185,129,.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 60%, rgba(124,58,237,.15) 0%, transparent 60%),
              var(--mc-bg);
}
.ln-hero-content { position: relative; z-index: 1; }
.ln-hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem 1rem;
  background: var(--mc-green-100); color: var(--mc-green-dark); border-radius: 999px;
  font-size: .8125rem; font-weight: 700; margin-bottom: 1.5rem; border: 1px solid rgba(22,163,74,.15); }
[data-theme="dark"] .ln-hero-badge { background: rgba(16,185,129,.15); color: #4ade80; border-color: rgba(74,222,128,.2); }
.ln-hero-title { font-size: clamp(2.75rem, 6.5vw, 5rem); font-weight: 900; letter-spacing: -.05em; line-height: 1.0;
  margin-bottom: 1.25rem; color: var(--mc-text); }
.ln-hero-title .grad { background: linear-gradient(135deg, var(--mc-green), #059669, #0d9488);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ln-hero-sub { font-size: 1.125rem; color: var(--mc-text-secondary); max-width: 540px; line-height: 1.7; margin-bottom: 2rem; }
.ln-hero-cta { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 3rem; }
.ln-btn-hero-primary { display: inline-flex; align-items: center; gap: .5rem; background: var(--mc-green);
  color: white; text-decoration: none; padding: .875rem 2rem; border-radius: 14px; font-weight: 800;
  font-size: 1.0625rem; transition: all .2s; box-shadow: 0 8px 32px rgba(22,163,74,.3); }
.ln-btn-hero-primary:hover { color: white; background: var(--mc-green-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(22,163,74,.4); }
.ln-btn-hero-secondary { display: inline-flex; align-items: center; gap: .5rem; background: var(--mc-surface);
  color: var(--mc-text); text-decoration: none; padding: .875rem 2rem; border-radius: 14px; font-weight: 700;
  font-size: 1.0625rem; transition: all .2s; border: 1.5px solid var(--mc-border); }
.ln-btn-hero-secondary:hover { color: var(--mc-text); border-color: var(--mc-green); box-shadow: var(--mc-shadow); transform: translateY(-2px); }
.ln-hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.ln-stat-value { font-size: 1.75rem; font-weight: 900; color: var(--mc-text); letter-spacing: -.03em; }
.ln-stat-label { font-size: .8125rem; color: var(--mc-text-muted); margin-top: .125rem; }

/* Floating cards */
.ln-floating-card { background: var(--mc-surface); border: 1px solid var(--mc-border); border-radius: 16px;
  padding: .875rem 1.125rem; box-shadow: 0 8px 32px rgba(0,0,0,.09);
  display: flex; align-items: center; gap: .75rem; max-width: 240px; }
.ln-floating-card .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.ln-float-1 { animation: lnFloat 4s ease-in-out infinite; }
.ln-float-2 { animation: lnFloat 4.5s ease-in-out infinite .7s; }
.ln-float-3 { animation: lnFloat 5s ease-in-out infinite 1.4s; }
@keyframes lnFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Phone Mockup */
.ln-phone { width: 220px; height: 440px; border-radius: 36px; background: var(--mc-graphite);
  border: 6px solid #252d3d; box-shadow: 0 32px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.05);
  position: relative; overflow: hidden; }
.ln-phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px; background: #0f172a; border-radius: 0 0 16px 16px; z-index: 1; }
.ln-phone-screen { position: absolute; inset: 0; padding: 28px 14px 14px;
  background: linear-gradient(180deg, #0f172a 0%, #1a1f2e 100%); overflow: hidden; }
.ln-app-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ln-app-balance { text-align: center; margin-bottom: 16px; }
.ln-app-bal-label { font-size: 9px; color: rgba(255,255,255,.5); }
.ln-app-bal-val { font-size: 28px; font-weight: 900; color: white; letter-spacing: -.04em; }
.ln-app-notification { background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); border-radius: 10px;
  padding: 10px; margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.ln-app-notification-icon { width: 28px; height: 28px; background: #16a34a; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }
.ln-app-stores { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ln-app-store-card { background: rgba(255,255,255,.05); border-radius: 8px; padding: 8px; text-align: center; }

/* ---- MARQUEE / PARTNERS ---- */
.ln-marquee-wrap { overflow: hidden; position: relative; }
.ln-marquee-wrap::before, .ln-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1;
  pointer-events: none;
}
.ln-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--mc-bg), transparent); }
.ln-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--mc-bg), transparent); }
.ln-marquee { display: flex; gap: 2rem; animation: marqueeScroll 30s linear infinite; width: max-content; }
.ln-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ln-partner-logo { background: var(--mc-surface); border: 1px solid var(--mc-border); border-radius: 12px;
  padding: .75rem 1.5rem; font-weight: 700; font-size: .9rem; color: var(--mc-text-secondary);
  white-space: nowrap; display: flex; align-items: center; gap: .5rem; transition: border-color .2s, color .2s; }
.ln-partner-logo:hover { border-color: var(--mc-green); color: var(--mc-green); }

/* ---- SECTION COMMONS ---- */
.ln-section { padding: 5rem 0; }
.ln-section-alt { padding: 5rem 0; background: var(--mc-gray-50); }
[data-theme="dark"] .ln-section-alt { background: rgba(255,255,255,.02); }
.ln-section-dark { padding: 5rem 0; background: #0f172a; color: white; }
.ln-overline { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--mc-green); margin-bottom: .625rem; }
.ln-section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -.04em;
  line-height: 1.1; margin-bottom: .75rem; color: var(--mc-text); }
.ln-section-sub { font-size: 1rem; color: var(--mc-text-secondary); max-width: 560px; line-height: 1.7; }
.text-grad { background: linear-gradient(135deg, var(--mc-green), #059669); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; }
.text-grad-purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- HOW IT WORKS ---- */
.ln-how-step { text-align: center; }
.ln-how-num { width: 48px; height: 48px; border-radius: 14px; background: var(--mc-green);
  color: white; font-weight: 900; font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; }
.ln-how-icon-wrap { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 2rem; margin: 0 auto 1rem; }
.ln-how-connector { flex: 1; height: 2px; background: linear-gradient(to right, var(--mc-green), transparent);
  margin-top: -60px; }

/* ---- FEATURE CARDS ---- */
.ln-feat-card { background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 20px;
  padding: 1.75rem; transition: border-color .2s, box-shadow .2s, transform .2s; height: 100%;
  position: relative; overflow: hidden; }
.ln-feat-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 0%, var(--ln-feat-color, rgba(22,163,74,.06)) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; }
.ln-feat-card:hover { border-color: var(--ln-feat-border, var(--mc-green)); box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.ln-feat-card:hover::before { opacity: 1; }
.ln-feat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.ln-feat-title { font-size: 1.0625rem; font-weight: 800; margin-bottom: .5rem; letter-spacing: -.02em; }
.ln-feat-desc { font-size: .875rem; color: var(--mc-text-secondary); line-height: 1.6; }
.ln-feat-tag { display: inline-block; margin-top: .875rem; padding: .25rem .625rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; }

/* ---- AI SECTION ---- */
.ln-ai-chat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: 1.5rem; max-width: 440px; }
.ln-chat-msg { display: flex; gap: .625rem; margin-bottom: 1rem; align-items: flex-end; }
.ln-chat-msg.ln-chat-right { flex-direction: row-reverse; }
.ln-chat-avatar { width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .875rem; }
.ln-chat-bubble { padding: .625rem 1rem; border-radius: 16px; font-size: .875rem; max-width: 280px; line-height: 1.5; }
.ln-chat-bubble-ai { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.9); border-radius: 4px 16px 16px 16px; }
.ln-chat-bubble-user { background: var(--mc-green); color: white; border-radius: 16px 16px 4px 16px; }
.ln-typing { display: flex; gap: 4px; padding: .625rem 1rem; background: rgba(255,255,255,.08); border-radius: 16px; width: fit-content; }
.ln-typing span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); animation: typingDot 1.2s infinite; }
.ln-typing span:nth-child(2) { animation-delay: .2s; }
.ln-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-6px); opacity: 1; } }

/* ---- CALCULATOR ---- */
.ln-calc-card { background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 24px; padding: 2.5rem; }
.ln-calc-slider { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 3px;
  background: linear-gradient(to right, var(--mc-green) 0%, var(--mc-green) var(--fill, 50%), var(--mc-gray-200) var(--fill, 50%), var(--mc-gray-200) 100%);
  outline: none; cursor: pointer; }
.ln-calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mc-green); box-shadow: 0 2px 8px rgba(22,163,74,.4); cursor: pointer; transition: transform .15s; }
.ln-calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.ln-calc-result { background: linear-gradient(135deg, var(--mc-green), #059669); color: white;
  border-radius: 16px; padding: 1.5rem; text-align: center; margin-top: 1.5rem; }
.ln-calc-amount { font-size: 2.5rem; font-weight: 900; letter-spacing: -.04em; }
.ln-calc-note { font-size: .8125rem; opacity: .8; margin-top: .25rem; }

/* ---- COMPARISON ---- */
.ln-comp-table { border-radius: 20px; overflow: hidden; border: 1.5px solid var(--mc-border); }
.ln-comp-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.ln-comp-row:not(:last-child) { border-bottom: 1px solid var(--mc-border); }
.ln-comp-cell { padding: .875rem 1.25rem; font-size: .875rem; display: flex; align-items: center; justify-content: center; }
.ln-comp-cell:first-child { justify-content: flex-start; font-weight: 500; color: var(--mc-text-secondary); }
.ln-comp-header { background: var(--mc-gray-50); font-size: .8rem; font-weight: 700; }
[data-theme="dark"] .ln-comp-header { background: rgba(255,255,255,.04); }
.ln-comp-highlight { background: rgba(22,163,74,.05); }
.ln-comp-brand { font-weight: 800; color: var(--mc-green) !important; font-size: .9375rem !important; }
.bi-check2-circle { color: var(--mc-green); font-size: 1.1rem; }
.bi-x-circle-fill { color: var(--mc-gray-300); font-size: 1rem; }

/* ---- COFRES ---- */
.ln-vault-card { background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 18px; padding: 1.5rem;
  transition: transform .2s, box-shadow .2s; }
.ln-vault-card:hover { transform: translateY(-4px); box-shadow: var(--mc-shadow-lg); }
.ln-vault-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ln-vault-progress { height: 8px; border-radius: 4px; background: var(--mc-gray-100); margin: .75rem 0; overflow: hidden; }
.ln-vault-bar { height: 100%; border-radius: 4px; transition: width 1s ease; }

/* ---- MEUSCORE ---- */
.ln-score-gauge-wrap { position: relative; width: 200px; height: 110px; margin: 0 auto 1.5rem; }
.ln-score-gauge-svg { width: 200px; height: 110px; }
.ln-score-track { fill: none; stroke: var(--mc-gray-200); stroke-width: 16; stroke-linecap: round; }
.ln-score-bar { fill: none; stroke: url(#scoreGrad); stroke-width: 16; stroke-linecap: round;
  stroke-dasharray: 314; stroke-dashoffset: 314; transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1) .3s; }
.ln-score-num { position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  font-size: 2.25rem; font-weight: 900; color: var(--mc-green); letter-spacing: -.04em; }
.ln-score-cat { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0;
  border-bottom: 1px solid var(--mc-border); }
.ln-score-cat:last-child { border-bottom: none; }
.ln-score-mini-bar { height: 6px; border-radius: 3px; }

/* ---- GARANTIAS ---- */
.ln-guarantee-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem;
  background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 18px;
  transition: border-color .2s, box-shadow .2s; }
.ln-guarantee-card:hover { border-color: var(--mc-green); box-shadow: 0 8px 32px rgba(22,163,74,.08); }
.ln-guarantee-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.375rem; flex-shrink: 0; }

/* ---- EMPRESAS ---- */
.ln-b2b-card { border: 1.5px solid rgba(255,255,255,.1); border-radius: 18px; padding: 1.5rem;
  background: rgba(255,255,255,.04); }
.ln-b2b-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
.ln-b2b-title { font-weight: 700; font-size: .9375rem; color: white; margin-bottom: .375rem; }
.ln-b2b-desc { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ---- PRICING ---- */
.ln-pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; }
.ln-toggle-switch { position: relative; width: 48px; height: 26px; cursor: pointer; }
.ln-toggle-switch input { opacity: 0; width: 0; height: 0; }
.ln-toggle-slider { position: absolute; inset: 0; background: var(--mc-gray-200); border-radius: 999px; transition: background .2s; }
.ln-toggle-switch input:checked + .ln-toggle-slider { background: var(--mc-green); }
.ln-toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; bottom: 3px;
  background: white; border-radius: 50%; transition: transform .2s; box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.ln-toggle-switch input:checked + .ln-toggle-slider::before { transform: translateX(22px); }
.ln-plan-card { background: var(--mc-surface); border: 2px solid var(--mc-border); border-radius: 24px;
  padding: 2rem; height: 100%; transition: border-color .2s, box-shadow .2s, transform .2s; }
.ln-plan-card.ln-plan-featured { border-color: var(--mc-green); box-shadow: 0 16px 48px rgba(22,163,74,.15); transform: translateY(-8px); }
.ln-plan-badge { display: inline-block; padding: .25rem .75rem; background: var(--mc-green); color: white;
  border-radius: 999px; font-size: .75rem; font-weight: 700; margin-bottom: 1rem; }
.ln-plan-price { font-size: 2.5rem; font-weight: 900; letter-spacing: -.04em; color: var(--mc-text); }
.ln-plan-price sub { font-size: 1rem; font-weight: 500; letter-spacing: 0; }
.ln-plan-price sup { font-size: 1.25rem; font-weight: 700; }
.ln-plan-feature { display: flex; align-items: center; gap: .625rem; padding: .375rem 0;
  font-size: .875rem; color: var(--mc-text-secondary); border-bottom: 1px solid var(--mc-border); }
.ln-plan-feature:last-of-type { border-bottom: none; }
.ln-plan-feature .bi-check2 { color: var(--mc-green); font-weight: 700; font-size: 1rem; }
.ln-plan-feature .bi-dash { color: var(--mc-gray-300); }
.ln-plan-feature.active { color: var(--mc-text); }

/* ---- TESTIMONIALS ---- */
.ln-testimonial-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
.ln-testimonial-track::-webkit-scrollbar { display: none; }
.ln-testimonial-card { flex: 0 0 320px; scroll-snap-align: start; background: var(--mc-surface);
  border: 1.5px solid var(--mc-border); border-radius: 20px; padding: 1.5rem; }
.ln-stars { color: #f59e0b; font-size: .9375rem; letter-spacing: .1em; }
.ln-test-body { font-size: .9rem; color: var(--mc-text-secondary); line-height: 1.7; margin: .75rem 0 1rem; }
.ln-test-avatar { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 1rem; color: white; flex-shrink: 0; }
.ln-test-name { font-weight: 700; font-size: .875rem; }
.ln-test-role { font-size: .75rem; color: var(--mc-text-muted); }

/* ---- FAQ ---- */
.ln-faq-item { border: 1.5px solid var(--mc-border); border-radius: 16px; overflow: hidden; margin-bottom: .75rem; transition: border-color .2s; }
.ln-faq-item.ln-open { border-color: var(--mc-green); }
.ln-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.125rem 1.25rem;
  cursor: pointer; font-weight: 600; font-size: .9375rem; background: none; border: none; width: 100%;
  text-align: left; color: var(--mc-text); transition: background .15s; }
.ln-faq-q:hover { background: var(--mc-gray-50); }
[data-theme="dark"] .ln-faq-q:hover { background: rgba(255,255,255,.04); }
.ln-faq-icon { width: 24px; height: 24px; border-radius: 6px; background: var(--mc-gray-100); display: flex;
  align-items: center; justify-content: center; font-size: .8125rem; flex-shrink: 0; transition: background .2s, transform .3s; color: var(--mc-text-secondary); }
.ln-faq-item.ln-open .ln-faq-icon { background: var(--mc-green); color: white; transform: rotate(45deg); }
.ln-faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.ln-faq-item.ln-open .ln-faq-a { max-height: 300px; padding: 0 1.25rem 1.25rem; }
.ln-faq-a p { font-size: .9rem; color: var(--mc-text-secondary); line-height: 1.7; margin: 0; }

/* ---- BLOG ---- */
.ln-blog-card { background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 20px;
  overflow: hidden; text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; height: 100%; }
.ln-blog-card:hover { transform: translateY(-4px); box-shadow: var(--mc-shadow-lg); }
.ln-blog-img { width: 100%; height: 180px; object-fit: cover; background: linear-gradient(135deg, var(--mc-green-100), #dbeafe); }
.ln-blog-img-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.ln-blog-body { padding: 1.25rem; }
.ln-blog-tag { font-size: .7rem; font-weight: 700; color: var(--mc-green); text-transform: uppercase; letter-spacing: .06em; }
.ln-blog-title { font-weight: 700; font-size: 1rem; color: var(--mc-text); margin: .375rem 0 .5rem; line-height: 1.4; }
.ln-blog-excerpt { font-size: .8125rem; color: var(--mc-text-secondary); line-height: 1.6; }

/* ---- FINAL CTA ---- */
.ln-cta-section { padding: 6rem 0; background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0d9488 100%); position: relative; overflow: hidden; }
.ln-cta-section::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,.08) 0%, transparent 60%); }
.ln-cta-title { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; letter-spacing: -.04em; color: white; margin-bottom: 1rem; line-height: 1.1; }
.ln-cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,.85); max-width: 480px; line-height: 1.7; margin-bottom: 2rem; }
.ln-btn-cta-white { display: inline-flex; align-items: center; gap: .5rem; background: white; color: var(--mc-green);
  text-decoration: none; padding: .875rem 2rem; border-radius: 14px; font-weight: 800; font-size: 1.0625rem; transition: all .2s; }
.ln-btn-cta-white:hover { color: var(--mc-green-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.ln-btn-cta-ghost { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15);
  color: white; text-decoration: none; padding: .875rem 2rem; border-radius: 14px; font-weight: 700;
  font-size: 1.0625rem; border: 1.5px solid rgba(255,255,255,.3); transition: all .2s; }
.ln-btn-cta-ghost:hover { color: white; background: rgba(255,255,255,.25); }

/* ---- FOOTER ---- */
.ln-footer { background: var(--mc-gray-900); color: rgba(255,255,255,.9); padding: 0 0 1.5rem; }
[data-theme="dark"] .ln-footer { background: #070c18; }
.ln-footer .ln-brand-name { color: #4ade80; }
.ln-footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 260px; margin-bottom: 1.5rem; }
.ln-footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.ln-footer-links { list-style: none; padding: 0; margin: 0; }
.ln-footer-links li { margin-bottom: .5rem; }
.ln-footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem;
  transition: color .15s; }
.ln-footer-links a:hover { color: rgba(255,255,255,.9); }
.ln-social { display: flex; gap: .625rem; }
.ln-social-btn { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .9375rem; transition: background .15s, color .15s; }
.ln-social-btn:hover { background: rgba(255,255,255,.12); color: white; }
.ln-store-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .875rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  color: rgba(255,255,255,.8); text-decoration: none; transition: background .15s; }
.ln-store-badge:hover { background: rgba(255,255,255,.12); color: white; }
.ln-footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; margin-top: 1rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  font-size: .8125rem; color: rgba(255,255,255,.35); }
.ln-trust-badge { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .625rem;
  background: rgba(255,255,255,.06); border-radius: 6px; font-size: .7rem; color: rgba(255,255,255,.5); }
.ln-footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ln-anim { animation: fadeInUp .7s ease both; }
.ln-d1 { animation-delay: .1s; }
.ln-d2 { animation-delay: .2s; }
.ln-d3 { animation-delay: .3s; }

/* ---- SCROLL INDICATOR ---- */
.ln-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--mc-text-muted); font-size: .75rem; animation: lnFloat 2s ease-in-out infinite; }
.ln-scroll-arrow { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--mc-border);
  display: flex; align-items: center; justify-content: center; font-size: .75rem; }

/* ---- SHARED CASHBACK ---- */
.ln-shared-visual { position: relative; width: 100%; max-width: 440px; margin: 0 auto; }
.ln-shared-center { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--mc-green), #059669);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto;
  box-shadow: 0 12px 40px rgba(22,163,74,.3); position: relative; z-index: 1; }
.ln-shared-orbit { position: absolute; inset: -60px; border-radius: 50%; border: 1.5px dashed var(--mc-border);
  display: flex; align-items: center; justify-content: center; }
.ln-shared-member { width: 48px; height: 48px; border-radius: 12px; background: var(--mc-surface);
  border: 1.5px solid var(--mc-border); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; position: absolute; box-shadow: var(--mc-shadow); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .ln-hero { min-height: auto; padding: 3.5rem 0; }
  .ln-hero-title { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .ln-section, .ln-section-alt, .ln-section-dark { padding: 3.5rem 0; }
  .ln-comp-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .ln-comp-cell { padding: .625rem .75rem; font-size: .8rem; }
}
@media (max-width: 575px) {
  .ln-hero-stats { gap: 1.5rem; }
  .ln-stat-value { font-size: 1.375rem; }
  .ln-comp-table { display: none; }
  .ln-mega-menu { min-width: 100vw; }
}

/* ================================================================
   MEUCASH CIDADES — Extended Design System v2.0
   ================================================================ */

/* ---- New Color Tokens ---- */
:root {
  --mc-city: #0ea5e9;
  --mc-city-dark: #0284c7;
  --mc-city-100: #e0f2fe;
  --mc-assoc: #7c3aed;
  --mc-assoc-100: #ede9fe;
  --mc-govt: #1d4ed8;
  --mc-govt-100: #dbeafe;
}

/* ---- HERO ECOSYSTEM REDESIGN ---- */
.ln-hero-cidades-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; background: rgba(14,165,233,.12); color: #7dd3fc;
  border-radius: 999px; font-size: .8125rem; font-weight: 700;
  margin-bottom: 1.5rem; border: 1px solid rgba(14,165,233,.25);
}
.ln-hero-eco-grid {
  position: relative; width: 100%; height: 460px;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: .875rem;
}
.ln-hero-eco-panel {
  border-radius: 18px; overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,.08); animation: ecoFadeIn .8s ease both;
}
.ln-hero-eco-panel:nth-child(1) { animation-delay: .1s; }
.ln-hero-eco-panel:nth-child(2) { animation-delay: .25s; }
.ln-hero-eco-panel:nth-child(3) { animation-delay: .4s; }
.ln-hero-eco-panel:nth-child(4) { animation-delay: .55s; }
@keyframes ecoFadeIn { from { opacity:0; transform: scale(.96) translateY(8px); } to { opacity:1; transform: scale(1) translateY(0); } }
.ln-eco-panel-label {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  border-radius: 8px; padding: .375rem .625rem;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: .375rem;
}
.ln-eco-panel-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: dotBlink 2s ease-in-out infinite; }
@keyframes dotBlink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ---- AUDIENCE PILLS ---- */
.ln-audience-strip {
  padding: 2rem 0; border-bottom: 1px solid var(--mc-border);
  overflow-x: auto; scrollbar-width: none;
}
.ln-audience-strip::-webkit-scrollbar { display: none; }
.ln-audience-inner { display: flex; gap: .875rem; min-width: max-content; padding: 0 1rem; }
.ln-aud-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5625rem 1.125rem; border-radius: 12px; font-size: .875rem; font-weight: 700;
  text-decoration: none; border: 2px solid currentColor; transition: all .2s;
  white-space: nowrap;
}
.ln-aud-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); opacity: .85; }
.ln-aud-pill.consumer { background: #dcfce7; color: #16a34a; }
.ln-aud-pill.business { background: #ede9fe; color: #7c3aed; }
.ln-aud-pill.assoc { background: #e0f2fe; color: #0284c7; }
.ln-aud-pill.govt { background: #dbeafe; color: #1d4ed8; }
[data-theme="dark"] .ln-aud-pill.consumer { background: rgba(22,163,74,.15); }
[data-theme="dark"] .ln-aud-pill.business { background: rgba(124,58,237,.15); }
[data-theme="dark"] .ln-aud-pill.assoc { background: rgba(14,165,233,.15); }
[data-theme="dark"] .ln-aud-pill.govt { background: rgba(29,78,216,.15); }

/* ---- MEUCASH CIDADES FLAGSHIP ---- */
.ln-cidades-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #050d1f 0%, #0a1628 50%, #050d1f 100%);
  position: relative; overflow: hidden; color: white;
}
.ln-cidades-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(14,165,233,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(22,163,74,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(124,58,237,.1) 0%, transparent 60%);
}
.ln-cidades-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Orbital Diagram */
.ln-orbital-wrap {
  position: relative; width: 380px; height: 380px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ln-orbital-ring {
  position: absolute; border-radius: 50%; border: 1px dashed;
  pointer-events: none;
}
.ln-orbital-r1 { width: 160px; height: 160px; border-color: rgba(14,165,233,.25); animation: ringRotate 18s linear infinite; }
.ln-orbital-r2 { width: 280px; height: 280px; border-color: rgba(22,163,74,.15); animation: ringRotate 30s linear infinite reverse; }
.ln-orbital-r3 { width: 370px; height: 370px; border-color: rgba(255,255,255,.07); }
@keyframes ringRotate { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.ln-orbital-center {
  width: 88px; height: 88px; border-radius: 22px; position: relative; z-index: 3;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  display: flex; align-items: center; justify-content: center; font-size: 2.25rem;
  box-shadow: 0 0 0 16px rgba(14,165,233,.1), 0 0 0 32px rgba(14,165,233,.05), 0 12px 40px rgba(14,165,233,.4);
  animation: centerBreath 4s ease-in-out infinite;
}
@keyframes centerBreath {
  0%,100%{ box-shadow: 0 0 0 16px rgba(14,165,233,.1), 0 0 0 32px rgba(14,165,233,.05), 0 12px 40px rgba(14,165,233,.4); }
  50%{ box-shadow: 0 0 0 22px rgba(14,165,233,.12), 0 0 0 44px rgba(14,165,233,.06), 0 16px 50px rgba(14,165,233,.5); }
}

.ln-eco-node {
  position: absolute; width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.375rem;
  z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,.4); cursor: default;
  transition: transform .3s;
}
.ln-eco-node:hover { transform: scale(1.12) !important; }
.ln-eco-node-label {
  position: absolute; background: rgba(0,0,0,.8); backdrop-filter: blur(8px);
  color: white; padding: .2rem .625rem; border-radius: 8px;
  font-size: .65rem; font-weight: 700; white-space: nowrap; opacity: 0;
  transition: opacity .2s; pointer-events: none; bottom: -28px; left: 50%; transform: translateX(-50%);
}
.ln-eco-node:hover .ln-eco-node-label { opacity: 1; }

/* Node positions on 380px container */
.ln-eco-n-top    { top: 4px;   left: 50%;  transform: translateX(-50%); }
.ln-eco-n-right  { top: 50%;  right: 4px;  transform: translateY(-50%); }
.ln-eco-n-bottom { bottom: 4px; left: 50%; transform: translateX(-50%); }
.ln-eco-n-left   { top: 50%;  left: 4px;   transform: translateY(-50%); }
/* Inner ring nodes */
.ln-eco-n-tl { top: 70px;  left: 70px; }
.ln-eco-n-tr { top: 70px;  right: 70px; }
.ln-eco-n-bl { bottom: 70px; left: 70px; }
.ln-eco-n-br { bottom: 70px; right: 70px; }

/* Flow SVG */
.ln-orbital-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.ln-flow-line { stroke-dasharray: 8 5; animation: flowDash 1.8s linear infinite; }
.ln-flow-line.reverse { animation-direction: reverse; }
@keyframes flowDash { to{ stroke-dashoffset: -26; } }

/* Stakeholder cards */
.ln-stk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.ln-stk-card {
  padding: 1.375rem; border-radius: 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: all .25s; cursor: default;
}
.ln-stk-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.ln-stk-ico { font-size: 2rem; margin-bottom: .75rem; }
.ln-stk-title { font-weight: 800; font-size: .9375rem; color: white; margin-bottom: .3rem; }
.ln-stk-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.ln-stk-badge {
  display: inline-block; margin-top: .625rem; padding: .2rem .625rem;
  border-radius: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .02em;
}

/* ---- COMPRE NA SUA CIDADE ---- */
.ln-local-section { padding: 5rem 0; }
.ln-local-card {
  padding: 2rem; border-radius: 22px; text-align: center; height: 100%;
  border: 1.5px solid var(--mc-border); background: var(--mc-surface);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ln-local-card:hover { transform: translateY(-5px); box-shadow: var(--mc-shadow-lg); }
.ln-local-icon { width: 80px; height: 80px; border-radius: 22px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 2.25rem; }
.ln-local-num { font-size: 2.75rem; font-weight: 900; letter-spacing: -.06em; margin-bottom: .25rem; }
.ln-local-title { font-size: 1rem; font-weight: 800; margin-bottom: .375rem; }
.ln-local-desc { font-size: .8125rem; color: var(--mc-text-secondary); line-height: 1.7; }

/* ---- CITY MAP ---- */
.ln-city-map-section { padding: 5rem 0; background: var(--mc-gray-50); }
[data-theme="dark"] .ln-city-map-section { background: rgba(255,255,255,.015); }
.ln-map-container {
  position: relative; width: 100%; max-width: 820px; margin: 0 auto;
  height: 420px; border-radius: 24px; overflow: hidden;
  background: #0b1220; border: 1px solid var(--mc-border); box-shadow: var(--mc-shadow-lg);
}
.ln-map-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ln-map-road-h { position: absolute; height: 3px; left: 0; right: 0; background: rgba(255,255,255,.06); }
.ln-map-road-v { position: absolute; width: 3px; top: 0; bottom: 0; background: rgba(255,255,255,.06); }
.ln-map-block { position: absolute; background: rgba(255,255,255,.025); border-radius: 3px; border: 1px solid rgba(255,255,255,.04); }
.ln-map-pin {
  position: absolute; transform: translate(-50%, -100%); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; z-index: 2;
  transition: transform .2s; will-change: transform;
}
.ln-map-pin:hover { transform: translate(-50%, -100%) scale(1.3); z-index: 10; }
.ln-map-pin-body {
  width: 34px; height: 34px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.35); transition: box-shadow .2s;
}
.ln-map-pin:hover .ln-map-pin-body { box-shadow: 0 6px 20px rgba(0,0,0,.5); }
.ln-map-pin-ico { transform: rotate(45deg); font-size: .875rem; line-height: 1; }
.ln-map-pin-tooltip {
  position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.85); backdrop-filter: blur(10px); color: white;
  padding: .25rem .625rem; border-radius: 8px; font-size: .65rem; font-weight: 700;
  white-space: nowrap; opacity: 0; transition: opacity .2s; pointer-events: none;
}
.ln-map-pin:hover .ln-map-pin-tooltip { opacity: 1; }
.ln-map-pulse-ring {
  position: absolute; border-radius: 50%; animation: mapPulse 2.5s ease-out infinite;
  transform: translate(-50%, -50%); pointer-events: none;
}
@keyframes mapPulse { 0%{transform:translate(-50%,-50%) scale(.6);opacity:.8;} 100%{transform:translate(-50%,-50%) scale(2.5);opacity:0;} }
.ln-map-heat {
  position: absolute; border-radius: 50%; transform: translate(-50%, -50%);
  animation: heatBreath 3.5s ease-in-out infinite alternate; pointer-events: none;
}
@keyframes heatBreath { from{opacity:.25;} to{opacity:.5;} }
.ln-map-ui-top { position: absolute; top: 12px; left: 12px; display: flex; gap: .5rem; flex-wrap: wrap; }
.ln-map-pill {
  padding: .25rem .75rem; background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: .68rem;
  font-weight: 700; color: rgba(255,255,255,.85); cursor: pointer; transition: all .15s;
}
.ln-map-pill:hover, .ln-map-pill.active { background: var(--mc-green); border-color: var(--mc-green); }
.ln-map-pill.city-pill.active { background: var(--mc-city); border-color: var(--mc-city); }
.ln-map-bottom { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: flex-end; }
.ln-map-stats-box {
  background: rgba(0,0,0,.7); backdrop-filter: blur(12px); border-radius: 12px; padding: .75rem 1rem;
  display: flex; gap: 1.25rem; border: 1px solid rgba(255,255,255,.08);
}
.ln-map-stat-item { text-align: center; }
.ln-map-stat-v { font-size: .875rem; font-weight: 900; color: white; }
.ln-map-stat-l { font-size: .62rem; color: rgba(255,255,255,.45); }
.ln-cashback-pop {
  position: absolute; pointer-events: none; z-index: 10;
  background: rgba(22,163,74,.9); backdrop-filter: blur(6px); color: white;
  padding: .3rem .75rem; border-radius: 10px; font-size: .75rem; font-weight: 800;
  animation: cbPop 2.5s ease-out forwards;
}
@keyframes cbPop { 0%{opacity:0;transform:translateY(10px) scale(.8);} 15%{opacity:1;transform:translateY(0) scale(1);} 70%{opacity:1;transform:translateY(-20px);} 100%{opacity:0;transform:translateY(-40px);} }

/* ---- CASHBACK OFFLINE ---- */
.ln-offline-section { padding: 5rem 0; }
.ln-offline-card {
  background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 22px;
  padding: 2rem; text-align: center; height: 100%;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ln-offline-card:hover { border-color: var(--mc-city); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,165,233,.1); }
.ln-offline-icon-wrap { width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.875rem; }
.ln-offline-title { font-weight: 800; font-size: 1rem; margin-bottom: .375rem; }
.ln-offline-desc { font-size: .8125rem; color: var(--mc-text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.ln-qr-visual {
  width: 64px; height: 64px; margin: 0 auto 1rem; padding: 6px;
  background: white; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1.5px;
}
.ln-qr-cell { border-radius: 1px; }

/* ---- ASSOCIATIONS SECTION ---- */
.ln-assoc-section {
  padding: 6rem 0; color: white; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a0a3d 0%, #2a1060 40%, #1a0a3d 100%);
}
.ln-assoc-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(124,58,237,.25) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(14,165,233,.1) 0%, transparent 60%);
}
.ln-assoc-type {
  display: flex; align-items: center; gap: .875rem; padding: 1rem 1.25rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; margin-bottom: .625rem; transition: all .2s; cursor: default;
}
.ln-assoc-type:hover { background: rgba(255,255,255,.09); border-color: rgba(192,132,252,.35); transform: translateX(4px); }
.ln-assoc-type-ico { width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.ln-assoc-type-name { font-weight: 700; font-size: .9375rem; color: rgba(255,255,255,.9); margin-bottom: .1rem; }
.ln-assoc-type-sub { font-size: .78rem; color: rgba(255,255,255,.5); }
.ln-assoc-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 1.5rem; overflow: hidden;
}
.ln-assoc-panel-hdr {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.ln-assoc-panel-title { font-weight: 800; font-size: .9rem; color: white; }
.ln-assoc-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1.25rem; }
.ln-assoc-kpi { background: rgba(255,255,255,.05); border-radius: 12px; padding: .875rem; text-align: center; }
.ln-assoc-kpi-val { font-size: 1.25rem; font-weight: 900; color: white; letter-spacing: -.03em; }
.ln-assoc-kpi-lbl { font-size: .65rem; color: rgba(255,255,255,.45); margin-top: .15rem; }
.ln-assoc-bar-row { display: flex; gap: 5px; align-items: flex-end; height: 70px; padding: 0 .25rem; }
.ln-assoc-bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(192,132,252,.3); min-height: 6px; }
.ln-assoc-bar.hi { background: #c084fc; }
.ln-assoc-rank-list { display: flex; flex-direction: column; gap: .4rem; }
.ln-assoc-rank-item {
  display: flex; align-items: center; gap: .625rem; padding: .5rem .75rem;
  background: rgba(255,255,255,.04); border-radius: 9px;
}
.ln-assoc-rank-n { width: 22px; height: 22px; border-radius: 6px; background: rgba(192,132,252,.15);
  display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #c084fc; flex-shrink: 0; }
.ln-assoc-rank-name { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); flex: 1; }
.ln-assoc-rank-val { font-size: .8rem; font-weight: 800; color: #4ade80; }

/* ---- MUNICIPALITIES ---- */
.ln-govt-section { padding: 5rem 0; }
.ln-govt-feat-card {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem;
  background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 18px;
  height: 100%; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ln-govt-feat-card:hover { border-color: var(--mc-govt); box-shadow: 0 12px 36px rgba(29,78,216,.1); transform: translateY(-3px); }
.ln-govt-feat-ico { width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }
.ln-govt-feat-title { font-weight: 800; font-size: .9375rem; margin-bottom: .3rem; }
.ln-govt-feat-desc { font-size: .8rem; color: var(--mc-text-secondary); line-height: 1.6; }

.ln-govt-dashboard {
  background: #0b1220; border-radius: 22px; padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--mc-shadow-lg);
  overflow: hidden;
}
.ln-govt-dash-hdr {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.ln-govt-dash-title { font-weight: 800; font-size: .9rem; color: white; }
.ln-govt-kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .625rem; margin-bottom: 1.25rem; }
.ln-govt-kpi { background: rgba(255,255,255,.04); border-radius: 11px; padding: .875rem; }
.ln-govt-kpi-val { font-size: 1.25rem; font-weight: 900; color: white; letter-spacing: -.04em; }
.ln-govt-kpi-lbl { font-size: .65rem; color: rgba(255,255,255,.4); margin-top: .15rem; }
.ln-govt-kpi-trend { font-size: .72rem; font-weight: 700; margin-top: .375rem; }
.ln-govt-chart { display: flex; gap: 5px; align-items: flex-end; height: 70px; }
.ln-govt-bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 6px; opacity: .75; transition: opacity .2s; }
.ln-govt-bar:hover { opacity: 1; }
.ln-govt-map-blip { display: flex; flex-wrap: wrap; gap: 5px; margin-top: .875rem; }
.ln-govt-blip { width: 10px; height: 10px; border-radius: 3px; animation: blipFade 2.5s ease-in-out infinite; }
@keyframes blipFade { 0%,100%{opacity:.4;} 50%{opacity:1;} }

/* ---- IMPACT SECTION ---- */
.ln-impact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 55%, #1d4ed8 100%);
  color: white; position: relative; overflow: hidden;
}
.ln-impact-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,.08) 0%, transparent 60%);
}
.ln-impact-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ln-impact-inner { position: relative; z-index: 1; }
.ln-impact-stat { text-align: center; padding: 1.5rem 1rem; }
.ln-impact-num { font-size: clamp(2.75rem, 5.5vw, 4.25rem); font-weight: 900; letter-spacing: -.07em; color: white; line-height: 1; margin-bottom: .375rem; }
.ln-impact-lbl { font-size: .9375rem; color: rgba(255,255,255,.75); font-weight: 600; }
.ln-impact-divider { width: 1px; height: 60px; background: rgba(255,255,255,.2); margin: auto; }
.ln-impact-note {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .375rem .875rem; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 2.5rem;
}

/* ---- DASHBOARDS SHOWCASE ---- */
.ln-dash-showcase { padding: 5rem 0; background: var(--mc-gray-50); }
[data-theme="dark"] .ln-dash-showcase { background: rgba(255,255,255,.015); }
.ln-dash-nav {
  display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem;
  background: var(--mc-surface); border-radius: 16px; padding: .375rem;
  border: 1px solid var(--mc-border); width: fit-content; margin-left: auto; margin-right: auto;
}
.ln-dash-tab {
  display: flex; align-items: center; gap: .5rem; padding: .625rem 1.25rem;
  border-radius: 11px; background: none; border: none; cursor: pointer;
  font-size: .875rem; font-weight: 600; color: var(--mc-text-secondary);
  transition: all .2s; white-space: nowrap;
}
.ln-dash-tab.active { background: var(--mc-green); color: white; box-shadow: 0 4px 16px rgba(22,163,74,.3); }
.ln-dash-tab.city-tab.active { background: var(--mc-city); box-shadow: 0 4px 16px rgba(14,165,233,.3); }
.ln-dash-tab.assoc-tab.active { background: var(--mc-assoc); box-shadow: 0 4px 16px rgba(124,58,237,.3); }
.ln-dash-tab.govt-tab.active { background: var(--mc-govt); box-shadow: 0 4px 16px rgba(29,78,216,.3); }
.ln-dash-panel { display: none; }
.ln-dash-panel.active { display: block; animation: fadeInUp .4s ease; }
.ln-dash-mockup {
  background: #0b1220; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07); max-width: 880px; margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.ln-dash-topbar { background: #111827; padding: .875rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; }
.ln-dash-topbar-name { font-weight: 800; font-size: .9rem; color: white; }
.ln-dash-topbar-badge { font-size: .7rem; padding: .2rem .625rem; border-radius: 999px; font-weight: 700; }
.ln-dash-body { padding: 1.5rem; }
.ln-dash-kpi-row { display: flex; gap: .875rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.ln-dash-kpi { flex: 1; min-width: 100px; background: rgba(255,255,255,.04); border-radius: 13px; padding: 1rem; border: 1px solid rgba(255,255,255,.05); }
.ln-dash-kpi-v { font-size: 1.375rem; font-weight: 900; color: white; letter-spacing: -.04em; }
.ln-dash-kpi-l { font-size: .68rem; color: rgba(255,255,255,.4); margin-top: .15rem; }
.ln-dash-kpi-t { font-size: .75rem; font-weight: 700; margin-top: .375rem; }
.ln-dash-chart { display: flex; gap: 5px; align-items: flex-end; height: 72px; background: rgba(255,255,255,.02); border-radius: 10px; padding: .5rem; }
.ln-dash-cbar { flex: 1; border-radius: 3px 3px 0 0; min-height: 5px; }
.ln-dash-list { display: flex; flex-direction: column; gap: .5rem; }
.ln-dash-li { display: flex; align-items: center; gap: .75rem; padding: .625rem .875rem; background: rgba(255,255,255,.03); border-radius: 10px; }
.ln-dash-li-ico { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .875rem; }
.ln-dash-li-name { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); flex: 1; }
.ln-dash-li-val { font-size: .8rem; font-weight: 800; }

/* ---- MARKETPLACE LOCAL ---- */
.ln-mkt-section { padding: 5rem 0; }
.ln-mkt-card {
  background: var(--mc-surface); border: 1.5px solid var(--mc-border); border-radius: 20px;
  overflow: hidden; text-decoration: none; display: block; height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ln-mkt-card:hover { transform: translateY(-4px); box-shadow: var(--mc-shadow-lg); border-color: var(--mc-green); }
.ln-mkt-card-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.ln-mkt-card-body { padding: 1rem; }
.ln-mkt-card-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mc-green); }
.ln-mkt-card-name { font-weight: 700; font-size: .9375rem; color: var(--mc-text); margin: .25rem 0 .3rem; }
.ln-mkt-card-store { font-size: .78rem; color: var(--mc-text-muted); }
.ln-mkt-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--mc-border); }
.ln-mkt-price { font-size: 1.0625rem; font-weight: 900; color: var(--mc-text); }
.ln-mkt-cb-badge { background: #dcfce7; color: #16a34a; padding: .2rem .625rem; border-radius: 999px; font-size: .7rem; font-weight: 800; }

/* ---- BIZ TYPE GRID ---- */
.ln-biz-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-top: 1.5rem; }
.ln-biz-type {
  padding: 1rem .75rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; text-align: center; transition: all .2s; cursor: default;
}
.ln-biz-type:hover { background: rgba(255,255,255,.09); border-color: rgba(192,132,252,.3); transform: translateY(-2px); }
.ln-biz-type-ico { font-size: 1.75rem; margin-bottom: .375rem; }
.ln-biz-type-name { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.75); }

/* ---- TESTIMONIALS TABBED ---- */
.ln-test-tabs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.ln-test-tab-btn {
  padding: .5rem 1.125rem; border-radius: 10px; background: var(--mc-surface);
  border: 1.5px solid var(--mc-border); cursor: pointer; font-size: .875rem;
  font-weight: 600; color: var(--mc-text-secondary); transition: all .2s;
}
.ln-test-tab-btn.active { background: var(--mc-green); border-color: var(--mc-green); color: white; box-shadow: 0 4px 12px rgba(22,163,74,.25); }
.ln-test-tab-panel { display: none; }
.ln-test-tab-panel.active { display: block; animation: fadeInUp .4s ease; }
.ln-test-tab-panel .ln-testimonial-track { overflow-x: auto; display: flex; gap: 1.25rem; scroll-snap-type: x mandatory; padding-bottom: 1.5rem; scrollbar-width: none; }
.ln-test-tab-panel .ln-testimonial-track::-webkit-scrollbar { display: none; }
.ln-test-tab-panel .ln-testimonial-card { flex: 0 0 320px; scroll-snap-align: start; }

/* ---- UPDATED PLAN CARDS ---- */
.ln-plan-city { border-color: var(--mc-city) !important; box-shadow: 0 16px 48px rgba(14,165,233,.15) !important; }
.ln-plan-enterprise { border-color: #0f172a !important; background: linear-gradient(135deg, #0f172a, #1e293b) !important; color: white; }
.ln-plan-enterprise .ln-plan-price, .ln-plan-enterprise .ln-plan-feature { color: rgba(255,255,255,.9) !important; }

/* ---- RESPONSIVE OVERRIDES (new sections) ---- */
@media (max-width: 991px) {
  .ln-orbital-wrap { width: 280px; height: 280px; }
  .ln-orbital-r1 { width: 120px; height: 120px; }
  .ln-orbital-r2 { width: 210px; height: 210px; }
  .ln-orbital-r3 { width: 275px; height: 275px; }
  .ln-orbital-center { width: 68px; height: 68px; font-size: 1.75rem; }
  .ln-eco-node { width: 44px; height: 44px; font-size: 1rem; }
  .ln-eco-n-tl { top: 48px; left: 48px; }
  .ln-eco-n-tr { top: 48px; right: 48px; }
  .ln-eco-n-bl { bottom: 48px; left: 48px; }
  .ln-eco-n-br { bottom: 48px; right: 48px; }
  .ln-stk-grid { grid-template-columns: 1fr; }
  .ln-biz-types { grid-template-columns: repeat(3, 1fr); }
  .ln-dash-kpi-row { flex-wrap: wrap; }
  .ln-map-container { height: 280px; }
  .ln-assoc-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .ln-govt-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .ln-impact-section, .ln-cidades-section, .ln-assoc-section { padding: 4rem 0; }
}
@media (max-width: 575px) {
  .ln-biz-types { grid-template-columns: repeat(2, 1fr); }
  .ln-impact-num { font-size: 2.5rem; }
  .ln-hero-eco-grid { height: 260px; }
  .ln-local-card { margin-bottom: .875rem; }
}
