/* Landing /lp — design system Mapa da Sorte */
@font-face {
  font-family: "Google Sans";
  src: url("/assets/fonts/googlesans-regular-webfont.ttf") format("truetype"),
       url("/assets/fonts/googlesans-regular-webfont.woff") format("woff"),
       url("/assets/fonts/googlesans-regular-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Google Sans Medium";
  src: url("/assets/fonts/googlesans-medium-webfont.ttf") format("truetype"),
       url("/assets/fonts/googlesans-medium-webfont.woff") format("woff"),
       url("/assets/fonts/googlesans-medium-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Google Sans Bold";
  src: url("/assets/fonts/googlesans-bold-webfont.ttf") format("truetype"),
       url("/assets/fonts/googlesans-bold-webfont.woff") format("woff"),
       url("/assets/fonts/googlesans-bold-webfont.woff2") format("woff2");
}

:root {
  --lp-primary: #2bc591;
  --lp-primary-dark: #008a69;
  --lp-secondary: #262d8c;
  --lp-ink: #262d8c;
  --lp-muted: #535060;
  --lp-bg: #e9f7fb;
  --lp-card: #ffffff;
  --lp-line: #d8e8ee;
  --lp-radius: 8px;
  --lp-radius-pill: 4rem;
  --lp-shadow: 0 2px 12px rgba(38, 45, 140, 0.08);
  --lp-max: 1320px;
  --lp-font: "Google Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body.lp {
  margin: 0;
  font-family: var(--lp-font);
  color: var(--lp-muted);
  background: var(--lp-bg);
  line-height: 1.55;
  font-size: 0.95rem;
}

body.lp--has-sticky { padding-bottom: 88px; }

.lp-skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lp-skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lp-secondary);
  color: #fff;
  border-radius: var(--lp-radius);
}

.lp-wrap {
  width: min(100% - 2rem, var(--lp-max));
  margin-inline: auto;
}
.lp-narrow { max-width: 840px; }

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--lp-line);
  box-shadow: 0 1px 0 rgba(38, 45, 140, 0.04);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.lp-logo img { display: block; height: 40px; width: auto; }
.lp-nav {
  display: none;
  gap: 1.5rem;
}
.lp-nav a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.lp-nav a:hover { color: var(--lp-secondary); }
.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lp-btn:focus-visible {
  outline: 3px solid rgba(43, 197, 145, 0.45);
  outline-offset: 2px;
}
.lp-btn--primary {
  background-color: var(--lp-primary);
  color: #fff;
}
.lp-btn--primary:hover {
  background-color: var(--lp-primary-dark);
}
.lp-btn--outline {
  background: #fff;
  color: var(--lp-secondary);
  border-color: #c5cadf;
}
.lp-btn--outline:hover {
  border-color: var(--lp-secondary);
  color: var(--lp-secondary);
}
.lp-btn--ghost {
  background: transparent;
  color: var(--lp-secondary);
  display: none;
}
.lp-btn--ghost:hover { color: var(--lp-primary-dark); }
.lp-btn--lg { min-height: 52px; padding-inline: 1.5rem; font-size: 1rem; }
.lp-btn--block { width: 100%; }

.lp-hero {
  padding: 2.5rem 0 3rem;
}
.lp-hero__grid {
  display: grid;
  gap: 2rem;
}
.lp-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--lp-radius-pill);
  background: rgba(38, 45, 140, 0.08);
  color: var(--lp-secondary);
  font-size: 0.82rem;
  font-weight: 500;
}
.lp-hero h1 {
  font-family: var(--lp-font);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 0.9rem;
  color: var(--lp-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lp-lead {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 1.05rem;
  max-width: 38rem;
}
.lp-badge {
  display: inline-flex;
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--lp-radius);
  background: rgba(43, 197, 145, 0.14);
  color: var(--lp-primary-dark);
  font-weight: 500;
  font-size: 0.92rem;
}
.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-flow {
  list-style: none;
  margin: 0;
  padding: 1.35rem;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  display: grid;
  gap: 0.65rem;
}
.lp-flow li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--lp-ink);
}
.lp-flow span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lp-secondary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.lp-section { padding: 3rem 0; }
.lp-section--tint {
  background: rgba(255, 255, 255, 0.65);
  border-block: 1px solid var(--lp-line);
}
.lp-section h2 {
  font-family: var(--lp-font);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin: 0 0 0.75rem;
  color: var(--lp-ink);
  font-weight: 600;
}
.lp-section h3 {
  color: var(--lp-ink);
  font-weight: 600;
}
.lp-section p strong { color: var(--lp-ink); }
.lp-section__sub {
  margin: 0 0 1.5rem;
  color: var(--lp-muted);
  max-width: 44rem;
}
.lp-split {
  display: grid;
  gap: 1.5rem;
}
.lp-callout {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--lp-shadow);
  border-left: 4px solid var(--lp-primary);
}
.lp-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.lp-steps li {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--lp-shadow);
}
.lp-steps__n {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43, 197, 145, 0.15);
  color: var(--lp-primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}
.lp-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}
.lp-steps p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-boloes {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
.lp-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 0;
  box-shadow: var(--lp-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lp-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.75rem;
  border-bottom: 1px solid var(--lp-line);
  border-left: 5px solid var(--lot-cor, var(--lp-secondary));
  background: #fafcfd;
}
.lp-card__head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--lp-ink);
}
.lp-card__meta {
  font-size: 0.78rem;
  color: var(--lp-muted);
  white-space: nowrap;
}
.lp-card__body {
  padding: 0.85rem 1rem 0.25rem;
  flex: 1;
}
.lp-card .lp-btn {
  margin: 0.75rem 1rem 1rem;
}
.lp-card__code {
  margin: 0;
  font-weight: 500;
  color: var(--lp-muted);
  font-size: 0.85rem;
}
.lp-card__price {
  margin: 0.2rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lp-primary-dark);
}
.lp-card__price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--lp-muted);
}
.lp-card__info {
  margin: 0.15rem 0;
  font-size: 0.86rem;
  color: var(--lp-muted);
}
.lp-center { text-align: center; }
.lp-center__ctas {
  justify-content: center;
  margin-top: 1rem;
}
.lp-empty {
  background: var(--lp-card);
  border: 1px dashed #c5d5dc;
  border-radius: var(--lp-radius);
  padding: 2rem 1.25rem;
  text-align: center;
}

.lp-checks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.lp-checks li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--lp-muted);
}
.lp-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-primary);
  font-weight: 700;
}

.lp-compare {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0;
}
.lp-compare__ok,
.lp-compare__no {
  border-radius: var(--lp-radius);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--lp-line);
}
.lp-compare__ok {
  background: rgba(43, 197, 145, 0.1);
  border-color: rgba(43, 197, 145, 0.3);
}
.lp-compare__no {
  background: #fff;
  color: var(--lp-muted);
}
.lp-compare h3 { margin: 0 0 0.4rem; font-size: 1rem; color: var(--lp-ink); }
.lp-compare p { margin: 0; }
.lp-note {
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-after {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--lp-muted);
}
.lp-after li { margin-bottom: 0.55rem; }

.lp-trust {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}
.lp-trust li {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 0.9rem 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

.lp-faq { display: grid; gap: 0.65rem; margin-top: 1rem; }
.lp-faq__item {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 0.2rem 1rem;
}
.lp-faq__item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--lp-ink);
  padding: 0.9rem 0;
  list-style: none;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--lp-primary);
  font-weight: 700;
}
.lp-faq__item[open] summary::after { content: "–"; }
.lp-faq__item p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-final {
  padding: 3.2rem 0;
  background: var(--lp-secondary);
  color: #fff;
}
.lp-final h2 {
  font-family: var(--lp-font);
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
}
.lp-final p { color: rgba(255, 255, 255, 0.9); max-width: 40rem; margin-inline: auto; }
.lp-final .lp-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.lp-final .lp-btn--outline:hover {
  border-color: #fff;
  color: #fff;
}
.lp-final .lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
}
.lp-final .lp-btn--primary:hover {
  background: var(--lp-primary-dark);
}
.lp-legal {
  margin-top: 1.25rem !important;
  font-size: 0.82rem !important;
  opacity: 0.85;
}

.lp-footer {
  background: #1e246e;
  color: rgba(255, 255, 255, 0.78);
  padding: 2rem 0 1.25rem;
  font-size: 0.88rem;
}
.lp-footer__grid {
  display: grid;
  gap: 1rem;
}
.lp-footer__brand {
  color: #fff;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.lp-footer a {
  color: rgba(255, 255, 255, 0.88);
  margin-right: 1rem;
  text-decoration: none;
}
.lp-footer a:hover { text-decoration: underline; color: #fff; }
.lp-footer__copy {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  opacity: 0.7;
}

.lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--lp-line);
  box-shadow: 0 -4px 16px rgba(38, 45, 140, 0.08);
}
.lp-sticky__inner {
  width: min(100%, var(--lp-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.lp-sticky p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
}
.lp-sticky strong { color: var(--lp-ink); }

@media (min-width: 768px) {
  .lp-nav { display: flex; }
  .lp-btn--ghost { display: inline-flex; }
  .lp-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2.5rem;
  }
  .lp-split { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .lp-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
  .lp-steps li { min-height: 100%; }
  .lp-boloes { grid-template-columns: repeat(2, 1fr); }
  .lp-compare { grid-template-columns: 1fr 1fr; }
  .lp-trust { grid-template-columns: repeat(3, 1fr); }
  .lp-footer__grid { grid-template-columns: 1.2fr 1fr; }
  .lp-sticky { display: none; }
  body.lp--has-sticky { padding-bottom: 0; }
}

@media (min-width: 1024px) {
  .lp-boloes { grid-template-columns: repeat(3, 1fr); }
  .lp-section { padding: 3.5rem 0; }
  .lp-wrap { width: min(100% - 3rem, var(--lp-max)); }
}

@media (min-width: 1280px) {
  .lp-boloes { grid-template-columns: repeat(4, 1fr); }
}
