/* Pontos de Montão — Homepage landing */
:root {
  --pm-navy: #0b1f3a;
  --pm-navy-2: #132a4a;
  --pm-navy-soft: #1a3a5c;
  --pm-gold: #d4a017;
  --pm-gold-2: #f0c94a;
  --pm-gold-soft: #fff6dc;
  --pm-ink: #0b1f3a;
  --pm-muted: #5a6b7d;
  --pm-paper: #f7f8fb;
  --pm-white: #ffffff;
  --pm-line: rgba(11, 31, 58, 0.08);
  --pm-radius: 18px;
  --pm-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
  --pm-header-h: 72px;
  --pm-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

.pm-lp {
  font-family: var(--pm-font);
  font-size: 12px;
  line-height: 1.55;
  color: var(--pm-ink);
  background: var(--pm-paper);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.pm-lp * { box-sizing: border-box; }
.pm-lp a:not(.pm-btn) { color: inherit; }

/* Header */
.pm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 248, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.pm-header.is-scrolled {
  border-bottom-color: var(--pm-line);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
}
.pm-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.pm-logo img {
  display: block;
  height: 58px;
  width: auto;
  border-radius: 14px;
}
.pm-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.pm-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pm-muted);
}
.pm-nav a:hover { color: var(--pm-navy); }
.pm-header-actions { display: flex; gap: 10px; align-items: center; }
.pm-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.pm-nav-toggle span {
  display: block; height: 2px; width: 22px; background: var(--pm-navy); border-radius: 2px; margin: 0 auto;
}

/* Buttons */
.pm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 11px 18px; font-weight: 700;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
  font-size: 1rem; line-height: 1.2; white-space: nowrap;
  cursor: pointer; font-family: inherit; appearance: none;
}
.pm-btn:hover { transform: translateY(-1px); }
.pm-btn-lg { padding: 15px 24px; font-size: 1.08rem; }
.pm-btn-primary { background: var(--pm-gold); color: var(--pm-navy); }
.pm-btn-primary:hover { filter: brightness(1.05); }
.pm-btn-ghost { background: transparent; color: var(--pm-navy); border-color: rgba(11,31,58,.18); }
.pm-btn-outline { background: transparent; color: var(--pm-navy); border-color: rgba(11,31,58,.22); }
.pm-btn-gold { background: var(--pm-gold); color: var(--pm-navy); }
.pm-btn-navy,
.pm-lp a.pm-btn-navy {
  background: var(--pm-navy);
  color: #fff !important;
}
.pm-section-navy .pm-btn-ghost,
.pm-section-navy a.pm-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Sections */
.pm-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px;
}
.pm-section-soft { background: #eef2f7; max-width: none; padding-left: max(20px, calc((100% - 1120px) / 2 + 20px)); padding-right: max(20px, calc((100% - 1120px) / 2 + 20px)); }
.pm-section-soft > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.pm-section-navy {
  background: linear-gradient(160deg, var(--pm-navy) 0%, var(--pm-navy-2) 100%);
  color: #fff;
  max-width: none;
  padding: 80px max(20px, calc((100% - 1120px) / 2 + 20px));
}
.pm-section-navy > .pm-split { max-width: 1120px; margin: 0 auto; }
.pm-section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.pm-section-head h2 { font-size: clamp(1.85rem, 3.2vw, 2.4rem); margin: 0 0 12px; line-height: 1.2; letter-spacing: -.02em; }
.pm-section-head p { margin: 0; color: var(--pm-muted); font-size: 1.1rem; }
.pm-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; color: var(--pm-gold); margin: 0 0 16px; }
.pm-section-navy .pm-eyebrow { color: var(--pm-gold-2); }

/* Hero */
.pm-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - var(--pm-header-h) - 40px);
}
.pm-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  max-width: 14ch;
}
.pm-hero-sub { font-size: 1.22rem; margin: 0 0 10px; color: var(--pm-ink); }
.pm-hero-lead { color: var(--pm-muted); margin: 0 0 28px; max-width: 42ch; line-height: 1.55; font-size: 1.05rem; }
.pm-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.pm-hero-visual { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.pm-phone {
  width: min(280px, 78%);
  background: #111827;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--pm-shadow), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}
.pm-phone-sm { width: 180px; border-radius: 28px; padding: 10px; }
.pm-phone-screen {
  background: linear-gradient(180deg, #fff 0%, #f4f6fa 100%);
  border-radius: 28px;
  padding: 20px 16px 18px;
  min-height: 420px;
  color: var(--pm-ink);
}
.pm-phone-sm .pm-phone-screen { min-height: 280px; border-radius: 22px; padding: 18px 14px; }
.pm-phone-hi { margin: 0 0 4px; font-weight: 600; color: var(--pm-muted); font-size: .9rem; }
.pm-phone-label { margin: 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--pm-muted); font-weight: 700; }
.pm-phone-total { margin: 6px 0 16px; font-size: 1.75rem; font-weight: 800; color: var(--pm-navy); letter-spacing: -.02em; }
.pm-phone-sm .pm-phone-total { font-size: 1.55rem; }
.pm-phone-list { list-style: none; margin: 0; padding: 0; }
.pm-phone-list li {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid var(--pm-line);
  font-size: .9rem;
}
.pm-phone-list strong { color: var(--pm-gold); font-weight: 800; }
.pm-muted { color: var(--pm-muted); margin: 0; }
.pm-reward-tag {
  margin-top: 12px; display: inline-block; background: var(--pm-gold-soft);
  color: var(--pm-navy); font-weight: 700; font-size: .82rem;
  padding: 8px 10px; border-radius: 999px;
}
.pm-phone-reward .pm-phone-screen { background: linear-gradient(180deg, #fff 0%, #fff8e8 100%); }

.pm-float-card {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 14px; padding: 12px 14px;
  box-shadow: var(--pm-shadow); font-size: .85rem;
  display: flex; flex-direction: column; gap: 2px;
}
.pm-float-card span { color: var(--pm-gold); font-weight: 800; }
.pm-float-a { top: 18%; left: 2%; }
.pm-float-b { bottom: 16%; right: 0; }

.pm-dots { position: absolute; inset: 0; pointer-events: none; }
.pm-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--pm-gold); opacity: 0; animation: pmDot 4.5s ease-in-out infinite;
  animation-delay: calc(var(--d) * .45s);
}
.pm-dot:nth-child(1) { top: 12%; left: 18%; }
.pm-dot:nth-child(2) { top: 28%; right: 12%; width: 8px; height: 8px; }
.pm-dot:nth-child(3) { bottom: 22%; left: 10%; width: 12px; height: 12px; }
.pm-dot:nth-child(4) { top: 55%; right: 8%; }
.pm-dot:nth-child(5) { bottom: 12%; right: 28%; width: 7px; height: 7px; }
.pm-dot:nth-child(6) { top: 40%; left: 6%; width: 9px; height: 9px; }
@keyframes pmDot {
  0%, 100% { opacity: 0; transform: translateY(8px) scale(.8); }
  35%, 65% { opacity: .85; transform: translateY(0) scale(1); }
}

/* Benefits */
.pm-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pm-benefit {
  background: var(--pm-white);
  border: 1px solid var(--pm-line);
  border-radius: var(--pm-radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11,31,58,.03);
}
.pm-benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pm-gold-soft); color: var(--pm-navy);
  display: grid; place-items: center; margin-bottom: 14px; font-size: 1.1rem;
}
.pm-benefit h3 { margin: 0 0 8px; font-size: 1.12rem; }
.pm-benefit p { margin: 0; color: var(--pm-muted); line-height: 1.5; }

/* How */
.pm-how { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pm-how-col {
  background: var(--pm-white);
  border-radius: var(--pm-radius);
  padding: 28px;
  border: 1px solid var(--pm-line);
}
.pm-steps { list-style: none; margin: 0; padding: 0; }
.pm-steps li {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  padding: 16px 0; position: relative;
}
.pm-steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 19px; top: 52px; bottom: 0;
  width: 2px; background: linear-gradient(var(--pm-gold), rgba(212,160,23,.15));
}
.pm-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pm-navy); color: var(--pm-gold-2);
  display: grid; place-items: center; font-weight: 800; position: relative; z-index: 1;
}
.pm-steps h3 { margin: 0 0 4px; font-size: 1.08rem; }
.pm-steps p { margin: 0; color: var(--pm-muted); line-height: 1.45; }

/* Split layouts */
.pm-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.pm-split-reverse { grid-template-columns: .9fr 1.1fr; }
.pm-split-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem); margin: 0 0 14px; line-height: 1.15; letter-spacing: -.02em;
}
.pm-lead-light { font-size: 1.15rem; margin: 0 0 10px; color: rgba(255,255,255,.92); }
.pm-text-light { color: rgba(255,255,255,.75); line-height: 1.55; margin: 0 0 22px; }
.pm-check-list { list-style: none; margin: 0 0 28px; padding: 0; }
.pm-check-list li {
  padding: 12px 0 12px 28px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pm-check-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--pm-gold);
}
.pm-check-list strong { display: block; margin-bottom: 2px; }
.pm-check-list span { color: rgba(255,255,255,.7); font-size: .98rem; }
.pm-bullet-gold { list-style: none; margin: 0 0 28px; padding: 0; }
.pm-bullet-gold li {
  padding: 10px 0 10px 28px; position: relative; font-weight: 600;
}
.pm-bullet-gold li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--pm-gold);
}

/* Laptop mock */
.pm-laptop-wrap { display: flex; justify-content: center; }
.pm-laptop {
  width: min(460px, 100%);
  background: #1f2937;
  border-radius: 18px 18px 8px 8px;
  padding: 14px 14px 0;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.pm-laptop::after {
  content: ""; display: block; height: 14px; margin: 0 -22px;
  background: #374151; border-radius: 0 0 10px 10px;
}
.pm-laptop-screen {
  background: #fff; color: var(--pm-ink); border-radius: 10px;
  padding: 22px; min-height: 280px;
}
.pm-ui-kicker { margin: 0 0 10px; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--pm-muted); font-weight: 700; }
.pm-ui-field {
  border: 1px solid var(--pm-line); border-radius: 12px; padding: 12px 14px;
  margin-bottom: 16px; color: var(--pm-muted); font-weight: 600;
}
.pm-ui-result {
  background: #f4f7fb; border-radius: 14px; padding: 16px; margin-bottom: 16px;
}
.pm-ui-result p { margin: 0 0 4px; color: var(--pm-muted); font-size: .85rem; }
.pm-ui-result strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.pm-ui-result span b { color: var(--pm-gold); }
.pm-ui-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pm-ui-chip {
  display: inline-flex; padding: 10px 14px; border-radius: 999px;
  background: #eef2f7; font-weight: 700; font-size: .9rem;
}
.pm-ui-chip.gold { background: var(--pm-gold); color: var(--pm-navy); }

.pm-phone-lg { display: flex; justify-content: center; }

/* Growth phones */
.pm-grow-row {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.pm-grow-phone { text-align: center; }
.pm-grow-caption { display: block; margin-top: 12px; font-weight: 700; color: var(--pm-muted); font-size: .9rem; }
.pm-grow-trail {
  display: flex; gap: 8px; align-items: center; padding-bottom: 120px;
}
.pm-grow-trail span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pm-gold); opacity: .35;
}
.pm-grow-trail span:nth-child(odd) { opacity: .7; transform: scale(1.15); }

/* Institutional */
.pm-institutional {
  text-align: center;
  padding-top: 96px; padding-bottom: 96px;
}
.pm-institutional-inner { max-width: 720px; margin: 0 auto; }
.pm-institutional h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem); margin: 0 0 22px; line-height: 1.15; letter-spacing: -.02em;
}
.pm-institutional p { margin: 0 0 10px; color: var(--pm-muted); font-size: 1.08rem; line-height: 1.55; }
.pm-institutional-logo {
  margin-top: 36px;
  width: auto;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
}

/* FAQ */
.pm-faq { max-width: 760px; margin: 0 auto; }
.pm-faq-item {
  background: var(--pm-white);
  border: 1px solid var(--pm-line);
  border-radius: 14px;
  margin-bottom: 10px;
  padding: 4px 16px;
}
.pm-faq-item summary {
  cursor: pointer; list-style: none; font-weight: 700; padding: 16px 0;
  position: relative; padding-right: 28px; font-size: 1.05rem;
}
.pm-faq-item summary::-webkit-details-marker { display: none; }
.pm-faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 16px;
  color: var(--pm-gold); font-size: 1.25rem; font-weight: 700;
}
.pm-faq-item[open] summary::after { content: "–"; }
.pm-faq-item p { margin: 0 0 16px; color: var(--pm-muted); line-height: 1.55; }

/* Final CTA */
.pm-cta-final {
  max-width: none;
  background: linear-gradient(180deg, #fffaf0 0%, var(--pm-gold-soft) 100%);
  padding: 80px 20px;
  text-align: center;
}
.pm-cta-inner { max-width: 720px; margin: 0 auto; }
.pm-cta-final h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem); margin: 0 0 14px; letter-spacing: -.02em;
}
.pm-cta-final p { color: var(--pm-muted); margin: 0 0 28px; line-height: 1.55; }
.pm-cta-final .pm-hero-cta { justify-content: center; }
.pm-cta-note { margin-top: 22px !important; font-size: .98rem; font-weight: 600; color: var(--pm-navy) !important; }

/* Footer */
.pm-footer {
  background: var(--pm-navy);
  color: rgba(255,255,255,.82);
  padding: 56px 20px 28px;
}
.pm-footer-grid {
  max-width: 1120px; margin: 0 auto 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
}
.pm-footer-logo {
  display: block;
  height: 58px;
  width: auto;
  margin-bottom: 14px;
  background: #f7f4ec;
  border-radius: 14px;
  padding: 8px 12px;
}
.pm-footer h3 {
  margin: 0 0 12px; color: var(--pm-gold-2); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.pm-footer a {
  display: block; text-decoration: none; color: rgba(255,255,255,.75);
  padding: 4px 0; font-size: .98rem;
}
.pm-footer a:hover { color: #fff; }
.pm-footer-copy {
  max-width: 1120px; margin: 0 auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .85rem; color: rgba(255,255,255,.55);
}

/* Reveal */
.pm-reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.pm-reveal.is-in { opacity: 1; transform: none; }

/* Footer link-as-button */
.pm-footer-linkbtn {
  display: block; width: 100%; text-align: left;
  background: none; border: 0; padding: 4px 0; cursor: pointer;
  color: rgba(255,255,255,.75); font: inherit; font-size: .98rem;
}
.pm-footer-linkbtn:hover { color: #fff; }

/* Auth modal */
.pm-modal[hidden] { display: none !important; }
.pm-modal {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.pm-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 31, 58, .55);
  backdrop-filter: blur(4px);
}
.pm-modal-dialog {
  position: relative; z-index: 1;
  width: min(440px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: var(--pm-white);
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(11, 31, 58, .28);
}
.pm-modal-close {
  position: absolute; top: 10px; right: 12px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: transparent; color: var(--pm-muted);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.pm-modal-close:hover { color: var(--pm-navy); background: #eef2f7; }
.pm-auth-panel h2 {
  margin: 0 0 8px; font-size: 1.55rem; letter-spacing: -.02em;
}
.pm-auth-lead { margin: 0 0 18px; color: var(--pm-muted); line-height: 1.45; }
.pm-field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 12px; font-weight: 600; font-size: .95rem;
}
.pm-field input {
  font: inherit; font-weight: 500;
  border: 1px solid rgba(11,31,58,.16);
  border-radius: 12px; padding: 11px 12px;
}
.pm-field input:focus {
  outline: 2px solid color-mix(in srgb, var(--pm-gold) 55%, transparent);
  border-color: var(--pm-gold);
}
.pm-auth-actions {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.pm-auth-err {
  margin: 0 0 10px; color: #b45309; font-size: .92rem;
}
.pm-auth-switch {
  margin: 16px 0 0; color: var(--pm-muted); font-size: .95rem;
}
.pm-auth-switch button,
.pm-auth-switch a {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--pm-navy); font: inherit; font-weight: 700;
  text-decoration: underline;
}
.pm-auth-demo {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid var(--pm-line);
}
body.pm-modal-open { overflow: hidden; }

/* Responsive */
@media (max-width: 960px) {
  .pm-hero, .pm-split, .pm-split-reverse, .pm-how, .pm-benefit-grid, .pm-footer-grid {
    grid-template-columns: 1fr;
  }
  .pm-hero { min-height: 0; padding-top: 28px; }
  .pm-hero h1 { max-width: none; }
  .pm-header-inner { grid-template-columns: auto auto; }
  .pm-nav-toggle { display: flex; justify-self: end; }
  .pm-nav, .pm-header-actions {
    display: none;
  }
  .pm-header.is-open .pm-nav,
  .pm-header.is-open .pm-header-actions {
    display: flex; flex-direction: column; align-items: stretch;
    grid-column: 1 / -1;
  }
  .pm-header.is-open .pm-header-inner {
    grid-template-columns: 1fr auto;
  }
  .pm-header.is-open .pm-nav { gap: 12px; align-items: flex-start; padding: 8px 0; }
  .pm-header.is-open .pm-header-actions { flex-direction: row; flex-wrap: wrap; }
  .pm-float-a, .pm-float-b { display: none; }
  .pm-grow-trail { display: none; }
  .pm-btn-lg { width: 100%; }
  .pm-hero-cta { width: 100%; }
  .pm-hero-cta .pm-btn { flex: 1 1 100%; }
}

@media (max-width: 560px) {
  .pm-phone { width: 100%; max-width: 300px; }
  .pm-section { padding: 56px 16px; }
}
