/* PagoJusto Landing */
:root {
  --teal: #0f766e;
  --teal2: #0d9488;
  --teal-soft: #ccfbf1;
  --text: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --card: #fff;
  --border: #e2e8f0;
  --font: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 1.1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
.lp-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lp-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 12px; flex-wrap: wrap;
}
.lp-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; color: var(--text);
}
.lp-logo img { border-radius: 10px; }
.lp-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lp-nav > a:not(.lp-btn) {
  color: var(--muted); font-weight: 550; padding: 8px 12px; border-radius: 10px;
}
.lp-nav > a:not(.lp-btn):hover { background: var(--teal-soft); color: var(--teal); }

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 12px; font-weight: 700;
  font-size: 1.05rem; border: none; cursor: pointer;
  transition: 0.15s; font-family: inherit; min-height: 48px;
}
.lp-btn-primary {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(15,118,110,0.3);
}
.lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,118,110,0.35); }
.lp-btn-ghost {
  background: transparent; color: var(--text) !important;
  border: 2px solid var(--border);
}
.lp-btn-lg { padding: 16px 28px; font-size: 1.1rem; min-height: 54px; }
.lp-btn-google {
  background: #fff; color: #3c4043 !important;
  border: 2px solid #dadce0;
}

/* Hero */
.lp-hero {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #f0fdfa 0%, var(--bg) 100%);
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { order: -1; display: flex; justify-content: center; }
}
.lp-badge {
  display: inline-block;
  background: var(--teal-soft); color: #115e59;
  font-weight: 700; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 18px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 18px;
}
.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.lp-lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; margin-bottom: 28px; }
.lp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.lp-trust { font-size: 0.95rem; color: var(--muted); }

/* Phone mock */
.lp-phone {
  width: min(300px, 100%);
  background: #0f172a;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(15,23,42,0.25);
}
.lp-phone-bar {
  width: 40%; height: 6px; background: #334155;
  border-radius: 4px; margin: 4px auto 12px;
}
.lp-phone-screen {
  background: #f1f5f9; border-radius: 20px; padding: 16px; min-height: 360px;
}
.mock-header {
  font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; color: var(--text);
}
.mock-header.light { color: #f1f5f9; }
.mock-card {
  background: #fff; border-radius: 14px; padding: 14px;
  margin-bottom: 10px; border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.mock-card.compact { padding: 12px; }
.mock-card.dark-card { background: #1e293b; border-color: #334155; }
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px; font-size: 1rem;
}
.mock-row.light-row { color: #cbd5e1; }
.mock-tag {
  font-size: 0.75rem; font-weight: 700; color: var(--teal);
  background: var(--teal-soft); padding: 4px 8px; border-radius: 6px;
}
.mock-meta { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.mock-meta.light-meta { color: #94a3b8; }
.mock-balance {
  display: flex; justify-content: space-between;
  padding: 12px 4px; font-size: 1.05rem;
}
.mock-balance .pos { color: #047857; font-weight: 800; }
.mock-balance .neg { color: #b91c1c; font-weight: 800; }
.mock-invite {
  background: #ccfbf1; border: 1px dashed #5eead4;
  border-radius: 12px; padding: 12px; margin-bottom: 12px;
  font-size: 0.95rem; text-align: center;
}
.mock-settle {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border);
}
.mock-field { margin-bottom: 12px; font-size: 0.95rem; font-weight: 600; }
.mock-input {
  display: block; margin-top: 6px; background: #fff;
  border: 2px solid var(--border); border-radius: 10px;
  padding: 12px; font-weight: 500; color: var(--muted);
}
.mock-split {
  display: flex; gap: 8px; margin: 14px 0;
}
.mock-split span {
  flex: 1; text-align: center; padding: 10px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
}
.mock-split span.on {
  border-color: var(--teal); background: var(--teal-soft); color: #115e59;
}
.mock-btn {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #fff; text-align: center; padding: 14px;
  border-radius: 12px; font-weight: 700; margin-top: 8px;
}
.mock-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 14px;
}
.mock-stats div {
  background: #1e293b; border: 1px solid #334155;
  border-radius: 12px; padding: 12px 8px; text-align: center;
}
.mock-stats strong { display: block; color: #5eead4; font-size: 1.3rem; }
.mock-stats small { color: #94a3b8; font-size: 0.75rem; }

/* Sections */
.lp-section { padding: 72px 0; }
.lp-alt { background: #fff; }
.lp-h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.02em; text-align: center;
}
.lp-sub {
  text-align: center; color: var(--muted); font-size: 1.15rem;
  margin: 10px auto 40px; max-width: 32em;
}

.lp-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 768px) { .lp-steps { grid-template-columns: 1fr; } }
.lp-step {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.lp-step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-step h3 { font-size: 1.25rem; font-weight: 750; margin-bottom: 8px; }
.lp-step p { color: var(--muted); font-size: 1.05rem; }

.lp-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 800px) { .lp-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lp-features { grid-template-columns: 1fr; } }
.lp-feat {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px;
}
.lp-feat-icon { font-size: 1.6rem; margin-bottom: 10px; }
.lp-feat h3 { font-size: 1.15rem; font-weight: 750; margin-bottom: 6px; }
.lp-feat p { color: var(--muted); font-size: 1.05rem; }

.lp-shots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .lp-shots { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }
.lp-shot-frame {
  background: #f1f5f9; border-radius: 20px; padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(15,23,42,0.08);
  min-height: 280px;
}
.lp-shot-frame.dark { background: #0f172a; border-color: #1e293b; }
.lp-shot figcaption {
  text-align: center; margin-top: 14px; font-weight: 600;
  color: var(--muted); font-size: 1.05rem;
}

.lp-cta-band {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #fff; padding: 64px 0; text-align: center;
}
.lp-cta-band h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.lp-cta-band p { opacity: 0.9; margin-bottom: 24px; font-size: 1.15rem; }
.lp-cta-band .lp-btn-primary {
  background: #fff; color: #0f766e !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.lp-footer {
  padding: 48px 0; text-align: center; color: var(--muted);
  border-top: 1px solid var(--border); background: #fff;
}
.lp-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 8px; color: var(--text);
}
.lp-footer-brand img { border-radius: 8px; }
.lp-footer-credit { margin-top: 12px; font-size: 0.95rem; }
.lp-footer-links { margin-top: 16px; font-size: 1rem; }

/* Share */
.lp-share-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 28px rgba(15,23,42,0.06);
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .lp-share-box { grid-template-columns: 1fr; }
}
.lp-share-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}
.lp-share-link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.lp-share-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--muted);
  background: var(--bg);
  min-height: 52px;
}
.lp-share-copied {
  color: #047857;
  font-weight: 650;
  font-size: 1rem;
  margin-bottom: 12px;
}
.lp-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.lp-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 48px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
}
.lp-wa {
  background: #25d366;
  color: #fff !important;
}
.lp-wa:hover { filter: brightness(1.05); }
.lp-mail {
  background: #0f766e;
  color: #fff !important;
}
.lp-native {
  background: #f1f5f9;
  color: var(--text);
  border: 2px solid var(--border);
}
.lp-share-right { text-align: center; }
.lp-qr-wrap {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15,23,42,0.06);
}
.lp-qr-wrap img {
  display: block;
  border-radius: 8px;
}
.lp-qr-hint {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}
