/* ═══════════════════════════════════════════════════════════════════════
   Notik — Landing
   Branco clean, casual-profissional, mobile-first.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --lp-bg: #ffffff;
  --lp-surface: #ffffff;
  --lp-surface-alt: #fafbfc;
  --lp-border: #e5e7eb;
  --lp-text: #020617;
  --lp-text-muted: #64748b;
  --lp-text-soft: #94a3b8;
  /* verde-bora: cor de "ir", semáforo aberto, energia de partida */
  --lp-primary: #10b981;
  --lp-primary-dark: #059669;
  --lp-radius: 12px;
  --lp-radius-lg: 16px;
  --lp-shadow-sm: 0 1px 2px rgba(2, 6, 23, 0.04);
  --lp-shadow-md: 0 8px 24px rgba(2, 6, 23, 0.06);
  --lp-shadow-lg: 0 24px 48px rgba(2, 6, 23, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: contain;
}

a {
  color: var(--lp-primary);
  text-decoration: none;
}
a:hover { color: var(--lp-primary-dark); }

img { display: block; max-width: 100%; }

.lpContainer {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── Typography helpers ───── */
.lpH1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--lp-text);
}
.lpH2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--lp-text);
}
.lpH2 em {
  font-style: italic;
  color: var(--lp-primary);
}
.lpHeroKicker {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--lp-text);
  margin: -8px 0 18px;
  max-width: 540px;
}
.lpSub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--lp-text-muted);
  margin: 0 0 28px;
  max-width: 540px;
}
@media (max-width: 720px) {
  .lpHeroKicker { font-size: 17px; margin-top: -4px; }
}
.lpSectionLead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lp-text-muted);
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: center;
}

@media (max-width: 720px) {
  .lpH1 { font-size: 34px; }
  .lpH2 { font-size: 26px; }
  .lpSub { font-size: 16px; }
  .lpSectionLead { font-size: 15px; }
}

/* ───── Buttons ───── */
.lpBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms, transform 80ms, box-shadow 120ms;
  touch-action: manipulation;
  white-space: nowrap;
}
.lpBtnPrimary {
  background: #0f172a;
  color: #ffffff;
}
.lpBtnPrimary:hover {
  background: #1e293b;
  color: #ffffff;
}
.lpBtnPrimary:active { transform: translateY(1px); }
.lpBtnLg {
  padding: 16px 32px;
  font-size: 16px;
}
.lpLink {
  font-size: 15px;
  color: var(--lp-text-muted);
  font-weight: 500;
}
.lpLink:hover { color: var(--lp-text); }

/* ───── Nav ───── */
.lpNav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-border);
}
.lpNavInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.lpBrand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.lpBrand:hover { color: var(--lp-text); }
.lpNavActions {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 480px) {
  .lpNavActions .lpLink { display: none; }
}

/* ───── Hero ───── */
.lpHero {
  padding: 64px 0 80px;
}
.lpHeroInner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lpHeroCopy { max-width: 600px; }
.lpHeroCta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lpHeroHint {
  font-size: 14px;
  color: var(--lp-text-muted);
}
@media (max-width: 900px) {
  .lpHeroInner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lpHero { padding: 40px 0 56px; }
}

/* ───── Hero mock (illustrative phone) ───── */
.lpHeroVisual {
  display: flex;
  justify-content: center;
}
.lpMock {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}
.lpMockHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--lp-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
}
.lpMockDot {
  width: 8px;
  height: 8px;
  background: var(--lp-primary);
  border-radius: 999px;
}
.lpMockTabs {
  display: flex;
  gap: 6px;
  padding: 12px 18px 0;
}
.lpMockTab {
  font-size: 12px;
  color: var(--lp-text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: transparent;
}
.lpMockTabActive {
  background: rgba(16, 185, 129, 0.12);
  color: var(--lp-primary);
  font-weight: 600;
}
.lpMockBody {
  padding: 14px 18px 22px;
}
.lpMockTotals {
  background: var(--lp-surface-alt);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.lpMockTotals > div {
  display: flex;
  justify-content: space-between;
  color: var(--lp-text-muted);
}
.lpMockTotals strong {
  font-variant-numeric: tabular-nums;
  color: var(--lp-text);
}
.lpMockTotalsum {
  border-top: 1px solid var(--lp-border);
  padding-top: 6px;
  margin-top: 4px;
  font-weight: 600;
}
.lpMockTotalsum span,
.lpMockTotalsum strong { color: var(--lp-text); font-weight: 600; }
.lpMockRow {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--lp-border);
}
.lpMockRow:last-child { border-bottom: none; }
.lpMockRow span { color: var(--lp-text-muted); font-size: 12px; }
.lpMockRow strong { font-weight: 500; color: var(--lp-text); }
.lpMockRow span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--lp-text);
  font-size: 13px;
}
.lpMockRowDim { opacity: 0.55; }

/* Mock V2: Bolso com número grande + status + barra (Bolso V2 real) */
.lpMockSummary {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.lpMockSummaryLabel {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}
.lpMockSummaryAmount {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.lpMockSummaryStatus {
  font-size: 12.5px;
  font-weight: 600;
  color: #047857;
  margin-top: 6px;
}
.lpMockSummaryBar {
  margin-top: 10px;
  height: 5px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.lpMockSummaryFill {
  position: absolute;
  inset: 0 28% 0 0; /* 72% preenchido */
  background: #10b981;
  border-radius: 999px;
}

.lpMockSectionLabel {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-text-muted);
  margin: 4px 0 6px;
}

/* Override do row pra incluir emoji + due no novo mock */
.lpMockRow {
  grid-template-columns: 18px 1fr auto auto;
  gap: 8px;
}
.lpMockRowEmoji { font-size: 14px; line-height: 1; }
.lpMockRowAmount {
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lp-text);
}
.lpMockRowDue {
  font-size: 11.5px;
  color: var(--lp-text-muted);
  font-variant-numeric: tabular-nums;
}

/* Microcopy de confiança no CTA final (LGPD) */
.lpFinalTrust {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--lp-text-muted);
  text-align: center;
}

/* ───── Problema ───── */
.lpProblem {
  padding: 64px 0;
  background: var(--lp-surface-alt);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lpProblem .lpH2 { text-align: center; margin-bottom: 48px; }
.lpProblemGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lpProblemCard {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
}
.lpProblemCard h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 12px 0 8px;
  color: var(--lp-text);
}
.lpProblemCard p {
  font-size: 15px;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.55;
}
.lpEmoji {
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 720px) {
  .lpProblemGrid { grid-template-columns: 1fr; gap: 16px; }
  .lpProblem { padding: 48px 0; }
}

/* ───── Pilares ───── */
.lpPillars { padding: 88px 0; }
.lpPillars .lpH2 { text-align: center; }
.lpPillarsGrid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.lpPillar {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.lpPillarFeatured {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.01));
  border-color: rgba(16, 185, 129, 0.25);
}
.lpPillarBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lp-text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.lpPillarFeatured .lpPillarBadge { color: var(--lp-primary); }
.lpPillar h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--lp-text);
}
.lpPillar p {
  font-size: 15px;
  color: var(--lp-text-muted);
  margin: 0 0 18px;
  line-height: 1.6;
  flex: 1;
}
.lpPillar p strong { color: var(--lp-text); font-weight: 600; }
.lpPillarList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.lpPillarList li {
  padding-left: 22px;
  position: relative;
  color: var(--lp-text);
}
.lpPillarList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lp-primary);
  font-weight: 700;
}
@media (max-width: 900px) {
  .lpPillarsGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lpPillars { padding: 56px 0; }
}

/* ───── Como funciona ───── */
.lpHow {
  padding: 80px 0;
  background: var(--lp-surface-alt);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lpHow .lpH2 { text-align: center; margin-bottom: 48px; }
.lpSteps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lpSteps li {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  position: relative;
}
.lpStepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--lp-text);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.lpSteps h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--lp-text);
}
.lpSteps p {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .lpSteps { grid-template-columns: 1fr; gap: 14px; }
  .lpHow { padding: 56px 0; }
}

/* ───── Anti-features ───── */
.lpAnti { padding: 88px 0; }
.lpAnti .lpH2 { text-align: center; }
.lpAntiList {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  max-width: 900px;
}
.lpAntiList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--lp-text);
  padding: 6px 0;
}
.lpAntiList strong { font-weight: 600; }
.lpX {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
@media (max-width: 720px) {
  .lpAntiList { grid-template-columns: 1fr; gap: 10px; }
  .lpAnti { padding: 56px 0; }
}

/* ───── Pricing ───── */
.lpPricing {
  padding: 80px 0;
  background: var(--lp-surface-alt);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lpPriceCard {
  max-width: 580px;
  margin: 0 auto;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--lp-shadow-md);
}
.lpPriceCard .lpH2 { margin-bottom: 14px; }
.lpPriceSub {
  font-size: 16px;
  color: var(--lp-text-muted);
  margin: 0 0 28px;
}
.lpPriceFine {
  font-size: 13px;
  color: var(--lp-text-soft);
  margin: 20px 0 0;
  text-align: center;
}

/* Dois cards lado a lado (mensal + anual) */
.lpPriceIntro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 28px;
}
.lpPriceCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.lpPriceCardV2 {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--lp-shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.04));
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.lpPriceCardHighlight {
  border-color: var(--lp-primary, #10b981);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
.lpPriceCardBadge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-primary, #10b981);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lpPriceCardName {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.lpPriceCardAmount {
  font-size: 36px;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  font-variant-numeric: tabular-nums;
}
.lpPriceCardAmount small {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-muted);
  letter-spacing: 0;
}
.lpPriceCardNote {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin: 0 0 16px;
}
.lpPriceCardCta {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 720px) {
  .lpPricing { padding: 56px 0; }
  .lpPriceCard { padding: 36px 24px; }
  .lpPriceCards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lpPriceCardAmount { font-size: 32px; }
}

/* ───── Final CTA ───── */
.lpFinal {
  padding: 96px 0 80px;
  text-align: center;
}
.lpFinalH {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 auto 16px;
  max-width: 700px;
}
.lpFinalSub {
  font-size: 17px;
  color: var(--lp-text-muted);
  margin: 0 0 32px;
}
@media (max-width: 720px) {
  .lpFinalH { font-size: 26px; }
  .lpFinalSub { font-size: 15px; }
  .lpFinal { padding: 64px 0 56px; }
}

/* ───── Footer ───── */
.lpFooter {
  background: var(--lp-surface-alt);
  border-top: 1px solid var(--lp-border);
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom));
}
.lpFooterInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lpFooterBrand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}
.lpFooterLinks {
  display: flex;
  gap: 20px;
}
.lpFooterLinks a {
  font-size: 14px;
  color: var(--lp-text-muted);
}
.lpFooterLinks a:hover { color: var(--lp-text); }
.lpFooterCopy {
  font-size: 13px;
  color: var(--lp-text-soft);
  margin: 0;
  text-align: right;
}
@media (max-width: 720px) {
  .lpFooterInner { flex-direction: column; text-align: center; }
  .lpFooterCopy { text-align: center; }
}

/* ───── Wordmark "notik" com ✓ verde no lugar do ponto do i ───── */
.brand-notik {
  display: inline-block;
  white-space: nowrap;
}
.brand-notik__i {
  position: relative;
  display: inline-block;
}
.brand-notik__i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.42em;
  width: 0.66em;
  height: 0.66em;
  transform: translateX(-50%) rotate(-4deg);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12 L10 18 L20 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
