/* TÔPERTO Pacote 10I — correção de contraste da landing do lojista */
:root {
  color-scheme: dark;
  --tp-bg: #06101f;
  --tp-bg2: #0b1728;
  --tp-bg3: #111827;
  --tp-card: rgba(15, 23, 42, .92);
  --tp-card2: rgba(30, 41, 59, .78);
  --tp-line: rgba(148, 163, 184, .24);
  --tp-line2: rgba(255, 255, 255, .14);
  --tp-text: #f8fafc;
  --tp-text2: #e2e8f0;
  --tp-muted: #b6c2d4;
  --tp-muted2: #94a3b8;
  --tp-dark-text: #07111f;
  --tp-green: #22c55e;
  --tp-green2: #86efac;
  --tp-blue: #38bdf8;
  --tp-amber: #f59e0b;
  --tp-red: #ef4444;
  --tp-shadow: 0 24px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--tp-bg) !important; }
body {
  margin: 0 !important;
  min-height: 100vh;
  color: var(--tp-text) !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(34,197,94,.20), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(56,189,248,.15), transparent 30%),
    radial-gradient(circle at 74% 68%, rgba(245,158,11,.08), transparent 32%),
    linear-gradient(135deg, #04101e 0%, #081525 46%, #030711 100%) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
main, header, footer, section, article, aside, form, div { color: inherit; }

.tp9a-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(1220px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 10px;
  border: 1px solid var(--tp-line);
  border-radius: 24px;
  background: rgba(7,17,31,.90) !important;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.tp9a-brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.tp9a-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #03101a !important;
  background: linear-gradient(135deg, var(--tp-green), var(--tp-blue));
  box-shadow: 0 10px 28px rgba(34,197,94,.22);
}
.tp9a-brand b { display: block; line-height: 1; letter-spacing: -.03em; color: var(--tp-text) !important; }
.tp9a-brand small { display: block; color: var(--tp-muted) !important; font-size: 11px; margin-top: 4px; }

.tp9a-menu { display: flex; gap: 6px; align-items: center; }
.tp9a-menu a {
  color: var(--tp-muted) !important;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 11px;
  border-radius: 999px;
}
.tp9a-menu a:hover { background: rgba(255,255,255,.08); color: var(--tp-text) !important; }

.tp9a-nav-cta,
.tp9a-btn,
.tp9a-submit,
.tp9a-script-grid button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 999px;
}

.tp9a-nav-cta {
  background: rgba(34,197,94,.18) !important;
  border: 1px solid rgba(34,197,94,.42) !important;
  color: #dcfce7 !important;
  padding: 11px 14px;
  font-size: 13px;
}

.tp9a-hero,
.tp9a-section,
.tp9a-footer {
  width: min(1220px, calc(100% - 28px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.tp9a-hero {
  padding: 70px 0 42px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 34px;
  align-items: center;
}

.tp9a-pill,
.tp9a-section-head span,
.tp9a-compare-copy span,
.tp9a-form-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(34,197,94,.44) !important;
  background: rgba(34,197,94,.14) !important;
  color: #d1fae5 !important;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
}

.tp9a-hero h1 {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .9;
  letter-spacing: -.08em;
  color: var(--tp-text) !important;
  text-shadow: 0 3px 26px rgba(0,0,0,.24);
}

.tp9a-lead {
  max-width: 690px;
  color: var(--tp-text2) !important;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.58;
  margin: 22px 0 0;
}

.tp9a-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.tp9a-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}
.tp9a-btn.primary { background: linear-gradient(135deg, var(--tp-green), var(--tp-blue)) !important; color: #03101a !important; box-shadow: 0 16px 42px rgba(34,197,94,.20); }
.tp9a-btn.ghost { background: rgba(255,255,255,.08) !important; border: 1px solid var(--tp-line) !important; color: var(--tp-text) !important; }

.tp9a-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 26px;
}
.tp9a-proof-grid div,
.tp9a-metrics div,
.tp9a-grid-4 article,
.tp9a-steps article,
.tp9a-compare-table,
.tp9a-script-box,
.tp9a-form,
.tp9a-form-copy {
  border: 1px solid var(--tp-line) !important;
  background: var(--tp-card) !important;
  border-radius: 22px;
  box-shadow: 0 20px 80px rgba(0,0,0,.22);
}
.tp9a-proof-grid div { padding: 14px; }
.tp9a-proof-grid strong { display: block; font-size: 20px; letter-spacing: -.04em; color: var(--tp-text) !important; }
.tp9a-proof-grid span { color: var(--tp-muted) !important; font-size: 12px; line-height: 1.35; display: block; margin-top: 4px; }

.tp9a-demo { display: grid; gap: 14px; justify-items: center; }
.tp9a-phone {
  width: min(390px, 100%);
  border: 1px solid rgba(255,255,255,.20) !important;
  border-radius: 38px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06)) !important;
  box-shadow: var(--tp-shadow);
}
.tp9a-phone-top { height: 32px; display: flex; justify-content: center; gap: 6px; align-items: center; }
.tp9a-phone-top span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.42); }
.tp9a-store-card { padding: 16px; border-radius: 28px; background: rgba(2,6,23,.82) !important; border: 1px solid var(--tp-line) !important; }
.tp9a-store-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; margin-bottom: 14px; }
.tp9a-store-head small { display: block; color: #86efac !important; font-weight: 900; text-transform: uppercase; font-size: 11px; }
.tp9a-store-head b { font-size: 21px; letter-spacing: -.04em; color: var(--tp-text) !important; }
.tp9a-store-head em { font-style: normal; color: #fde68a !important; font-weight: 900; }
.tp9a-product { display: flex; gap: 12px; align-items: center; padding: 13px; border: 1px solid var(--tp-line2) !important; background: rgba(255,255,255,.075) !important; border-radius: 18px; margin-top: 9px; }
.tp9a-product span { font-size: 25px; }
.tp9a-product b { display: block; color: var(--tp-text) !important; }
.tp9a-product small { display: block; color: var(--tp-muted) !important; margin-top: 3px; }
.tp9a-order-alert { margin-top: 14px; padding: 14px; border-radius: 20px; background: rgba(34,197,94,.16) !important; border: 1px solid rgba(34,197,94,.34) !important; }
.tp9a-order-alert strong, .tp9a-order-alert span { display: block; }
.tp9a-order-alert strong { color: #ecfdf5 !important; }
.tp9a-order-alert span { margin-top: 4px; color: #dcfce7 !important; font-size: 13px; line-height: 1.4; }
.tp9a-metrics { width: min(520px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tp9a-metrics div { padding: 13px; text-align: center; }
.tp9a-metrics b { display: block; color: var(--tp-text) !important; }
.tp9a-metrics span { display: block; color: var(--tp-muted) !important; font-size: 12px; margin-top: 4px; }

.tp9a-section { padding: 48px 0; }
.tp9a-section-head { max-width: 780px; margin-bottom: 22px; }
.tp9a-section-head.narrow { max-width: 640px; }
.tp9a-section h2,
.tp9a-compare-copy h2,
.tp9a-form-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: .98;
  letter-spacing: -.06em;
  color: var(--tp-text) !important;
}
.tp9a-section-head p,
.tp9a-compare-copy p,
.tp9a-form-copy p,
.tp9a-form-copy li {
  color: var(--tp-muted) !important;
  line-height: 1.6;
}

.tp9a-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.tp9a-grid-4 article { padding: 18px; }
.tp9a-grid-4 i { font-style: normal; font-size: 28px; }
.tp9a-grid-4 b { display: block; margin-top: 12px; font-size: 18px; letter-spacing: -.03em; color: var(--tp-text) !important; }
.tp9a-grid-4 p { margin: 7px 0 0; color: var(--tp-muted) !important; font-size: 14px; line-height: 1.45; }

.tp9a-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.tp9a-steps article { padding: 18px; }
.tp9a-steps article > b { width: 38px; height: 38px; border-radius: 14px; background: rgba(56,189,248,.16) !important; border: 1px solid rgba(56,189,248,.30) !important; display: grid; place-items: center; color: #e0f2fe !important; }
.tp9a-steps h3 { margin: 15px 0 0; letter-spacing: -.03em; color: var(--tp-text) !important; }
.tp9a-steps p { color: var(--tp-muted) !important; line-height: 1.45; font-size: 14px; }

.tp9a-compare { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; align-items: center; }
.tp9a-compare-table { overflow: hidden; }
.tp9a-row { display: grid; grid-template-columns: .85fr 1fr 1fr; border-bottom: 1px solid var(--tp-line) !important; }
.tp9a-row:last-child { border-bottom: 0 !important; }
.tp9a-row span { padding: 14px; color: var(--tp-muted) !important; font-size: 14px; }
.tp9a-row span:first-child { color: var(--tp-text) !important; font-weight: 850; }
.tp9a-row.head span { color: #e2e8f0 !important; background: rgba(255,255,255,.075) !important; font-weight: 900; }
.tp9a-row span:last-child { color: #bbf7d0 !important; }

.tp9a-form-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; align-items: start; }
.tp9a-form-copy, .tp9a-form { padding: 22px; }
.tp9a-form-copy ul { padding-left: 20px; margin: 18px 0 0; }
.tp9a-form { display: grid; gap: 12px; background: rgba(15,23,42,.95) !important; }
.tp9a-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tp9a-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 850; color: #f1f5f9 !important; }
.tp9a-form input, .tp9a-form select, .tp9a-form textarea {
  width: 100%;
  border: 1px solid rgba(148,163,184,.35) !important;
  background: #0b1220 !important;
  color: #f8fafc !important;
  border-radius: 16px;
  padding: 13px 13px;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.tp9a-form input::placeholder, .tp9a-form textarea::placeholder { color: #94a3b8 !important; opacity: 1; }
.tp9a-form select option { color: #111827; background: #f8fafc; }
.tp9a-form input:focus, .tp9a-form select:focus, .tp9a-form textarea:focus { border-color: rgba(34,197,94,.75) !important; box-shadow: 0 0 0 4px rgba(34,197,94,.16); }
.tp9a-form textarea { resize: vertical; min-height: 118px; }
.tp9a-check { grid-template-columns: auto 1fr; align-items: start; color: var(--tp-text2) !important; font-weight: 700 !important; line-height: 1.38; }
.tp9a-check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--tp-green); }
.tp9a-submit { padding: 15px 18px; color: #03101a !important; background: linear-gradient(135deg, var(--tp-green), var(--tp-blue)) !important; font-size: 15px; box-shadow: 0 16px 42px rgba(34,197,94,.20); }
.tp9a-submit:disabled { opacity: .62; cursor: not-allowed; }
.tp9a-msg { border-radius: 18px; padding: 14px; line-height: 1.45; background: rgba(34,197,94,.14) !important; border: 1px solid rgba(34,197,94,.34) !important; color: #dcfce7 !important; }
.tp9a-msg.error { background: rgba(239,68,68,.14) !important; border-color: rgba(239,68,68,.38) !important; color: #fee2e2 !important; }
.tp9a-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.tp9a-footer { padding: 34px 0 48px; color: var(--tp-muted) !important; font-size: 13px; }
.tp9a-footer a { color: #bfdbfe !important; }
.tp9a-toast { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 50; padding: 13px 16px; border-radius: 999px; background: #e2e8f0 !important; color: #06101f !important; box-shadow: 0 18px 55px rgba(0,0,0,.38); font-weight: 850; max-width: calc(100% - 28px); }

@media (max-width: 980px) {
  .tp9a-menu { display: none; }
  .tp9a-hero, .tp9a-compare, .tp9a-form-section { grid-template-columns: 1fr; }
  .tp9a-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tp9a-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tp9a-proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .tp9a-nav { width: calc(100% - 18px); margin-top: 8px; border-radius: 20px; }
  .tp9a-nav-cta { display: none; }
  .tp9a-hero, .tp9a-section, .tp9a-footer { width: calc(100% - 22px); }
  .tp9a-hero { padding-top: 38px; }
  .tp9a-hero h1 { font-size: clamp(40px, 14vw, 64px); line-height: .94; letter-spacing: -.07em; }
  .tp9a-lead { font-size: 16px; }
  .tp9a-actions, .tp9a-btn { width: 100%; }
  .tp9a-grid-4, .tp9a-steps, .tp9a-form-grid, .tp9a-metrics { grid-template-columns: 1fr; }
  .tp9a-row { grid-template-columns: 1fr; }
  .tp9a-row span { border-bottom: 1px solid rgba(255,255,255,.07); }
  .tp9a-row span:last-child { border-bottom: 0; }
  .tp9a-phone { border-radius: 30px; }
  .tp9a-form-copy, .tp9a-form { padding: 17px; }
}
