/* ============================================================
   Grupo Seed — design tokens
   Palette: deep pine green (trust/growth) + muted harvest gold
   (prosperity) on a pale sage paper background.
   Type: Fraunces (display, warmth + authority) / Inter (body, clarity)
   ============================================================ */

:root {
  --forest: #0B1D45;
  --forest-deep: #071431;
  --forest-mid: #16295C;
  --gold: #F7C600;
  --gold-soft: #FFDE66;
  --paper: #F1F3F7;
  --paper-deep: #E6E9F0;
  --white: #FFFFFF;
  --ink: #101A33;
  --ink-soft: #4C566E;
  --line: rgba(11, 29, 69, 0.14);
  --line-on-dark: rgba(255, 255, 255, 0.18);

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--forest);
  border-bottom: 1px solid var(--line-on-dark);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
}

footer .logo-img {
  height: 64px;
  width: 64px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a:not(.btn) {
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
  font-weight: 500;
}
nav.main-nav a:not(.btn):hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
}
.btn-gold:hover { background: var(--gold-soft); }

.btn-outline-dark {
  border-color: var(--line-on-dark);
  color: var(--white);
}
.btn-outline-dark:hover { border-color: var(--white); }

.btn-outline-ink {
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline-ink:hover { border-color: var(--ink); }

.btn-ink {
  background: var(--forest);
  color: var(--white);
}
.btn-ink:hover { background: var(--forest-deep); }

/* ---------- hero (home) ---------- */

.hero {
  background: var(--forest);
  color: var(--white);
  padding: 92px 0 76px;
}

.hero .wrap {
  max-width: 720px;
}

.hero h1 {
  font-size: 50px;
  color: var(--white);
  margin-top: 18px;
}

.hero .lede {
  margin-top: 22px;
  font-size: 17.5px;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}

.hero .actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
}

.trust-card {
  padding: 0 0 4px;
}

.trust-card .stars { color: var(--gold-soft); font-size: 18px; letter-spacing: 2px; }
.trust-card .score { font-family: var(--font-display); font-size: 40px; margin-top: 10px; color: var(--white); }
.trust-card .score span { font-size: 15px; color: rgba(255,255,255,0.65); font-family: var(--font-body); margin-left: 6px; }
.trust-card .note { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 30ch; }

/* ---------- product hero (inner pages) ---------- */

.page-hero {
  background: var(--forest);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero .breadcrumb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: 40px; color: var(--white); max-width: 22ch; }
.page-hero .lede { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,0.78); max-width: 56ch; }
.page-hero .actions { margin-top: 30px; display: flex; gap: 14px; }

/* ---------- sections ---------- */

section { padding: 76px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head h2 { font-size: 32px; margin-top: 10px; }
.section-head .lede { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }

/* products list (home) */

.product-row {
  display: grid;
  grid-template-columns: 2fr 3fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.product-row:last-child { border-bottom: 1px solid var(--line); }
.product-row h3 { font-size: 22px; }
.product-row .desc { color: var(--ink-soft); font-size: 15px; max-width: 52ch; }
.product-row .go {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.product-row:hover .go { color: var(--gold); }

/* benefit list */

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.benefits li {
  padding-left: 26px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

/* steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step .num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h4 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* quem somos */

.about {
  background: var(--paper-deep);
}
.about .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.about .lede { font-size: 18px; color: var(--ink); line-height: 1.55; margin-top: 14px; }
.about .fine {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.about .fact {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}
.about .fact:first-child { margin-top: 0; }
.about .fact .k { font-family: var(--font-display); font-size: 26px; }
.about .fact .v { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* reviews */

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px;
}
.review .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review p.quote { font-size: 15px; color: var(--ink); line-height: 1.6; }
.review .who { margin-top: 16px; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }

/* CTA banner */

.cta-banner {
  background: var(--forest-deep);
  color: var(--white);
  padding: 60px 0;
}
.cta-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner h2 { font-size: 28px; color: var(--white); max-width: 26ch; }
.cta-banner .lede { color: rgba(255,255,255,0.72); margin-top: 10px; font-size: 15px; }

/* footer */

footer {
  background: var(--forest);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 28px;
  font-size: 14px;
}
footer .wrap { }
footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-on-dark);
}
footer h5 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
footer .brand { color: var(--white); margin-bottom: 12px; }
footer .cols a { display: block; padding: 5px 0; color: rgba(255,255,255,0.68); }
footer .cols a:hover { color: var(--white); }
footer .legal {
  padding-top: 24px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
footer .legal p + p { margin-top: 10px; }

/* whatsapp float */

.wa-float-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px 12px 18px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  animation: wa-label-in 0.4s ease 1.2s both;
}
.wa-label-close {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 13px;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}
.wa-label-close:hover { color: var(--ink); }
.wa-float-wrap.label-hidden .wa-label { display: none; }
@keyframes wa-label-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  background: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.wa-float:hover { background: #1EBE5A; }

/* article / blog */

.article-body {
  max-width: 72ch;
  margin: 0 auto;
}
.article-body h2 {
  font-size: 24px;
  margin-top: 42px;
  margin-bottom: 14px;
}
.article-body h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
}
.article-body p {
  margin-top: 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.article-body ul {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.7;
}
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--forest); }
.article-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}
.article-body .inline-cta {
  background: var(--paper-deep);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
}
.article-body .inline-cta a { color: var(--forest); font-weight: 600; border-bottom: 1px solid var(--gold); }
.article-meta {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px;
}
.blog-card .cat {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-card h3 { font-size: 19px; margin-top: 10px; }
.blog-card p { font-size: 14.5px; color: var(--ink-soft); margin-top: 10px; }
.blog-card .read { margin-top: 14px; display: inline-block; font-size: 13.5px; font-weight: 600; color: var(--forest); border-bottom: 1px solid var(--gold); }

@media (max-width: 880px) {
  .blog-list { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  nav.main-nav { display: none; }
  nav.main-nav.nav-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--forest);
    padding: 12px 28px 22px;
    border-bottom: 1px solid var(--line-on-dark);
  }
  nav.main-nav.nav-open a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .hero .wrap, .about .wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 30px; }
  .product-row { grid-template-columns: 1fr; gap: 10px; }
  .benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .about .fact { display: flex; justify-content: space-between; align-items: baseline; }
  footer .cols { grid-template-columns: 1fr 1fr; }
  .cta-banner .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero { padding: 64px 0 52px; }
  section { padding: 56px 0; }
  .steps { grid-template-columns: 1fr; }
  footer .cols { grid-template-columns: 1fr; }
}

/* partners marquee */

.partners {
  background: var(--paper-deep);
  padding: 34px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners .label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.partners-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 30px;
  animation: partners-scroll 38s linear infinite;
}
.partners-track .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 64px;
  width: 140px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.partners-track .chip img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

footer .legal-links {
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
}
footer .legal-links a { color: rgba(255,255,255,0.75); }
footer .legal-links a:hover { color: var(--white); }

.partners-track .chip.dark {
  background: #0B0B0B;
  border-color: #0B0B0B;
}

/* qualification quiz widget */

.quiz {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.quiz-progress .dot {
  height: 4px;
  flex: 1;
  background: var(--line);
  border-radius: 2px;
}
.quiz-progress .dot.done { background: var(--gold); }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step .q-title {
  font-family: var(--font-display);
  font-size: 21px;
  margin-bottom: 18px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-options button {
  text-align: left;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
}
.quiz-options button:hover { border-color: var(--gold); }
.quiz-options button.selected { border-color: var(--gold); background: var(--gold-soft); }
.quiz-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 16px;
  background: var(--paper);
  color: var(--ink);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.quiz-back {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 14px;
  cursor: pointer;
}
.quiz-back:disabled { visibility: hidden; }
.quiz-result { text-align: center; }
.quiz-result h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
.quiz-result p { color: var(--ink-soft); margin-bottom: 22px; }

/* partner requirements table */

.req-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}
table.req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 980px;
}
table.req-table th {
  background: var(--forest);
  color: var(--white);
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  white-space: nowrap;
}
table.req-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  vertical-align: top;
}
table.req-table tr:nth-child(even) td { background: var(--paper-deep); }
table.req-table td.bank { font-weight: 600; color: var(--forest); white-space: nowrap; }
table.req-table td.ltv { white-space: nowrap; font-weight: 600; color: var(--gold); }
.req-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.req-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .req-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .req-stats { grid-template-columns: 1fr; }
}

/* raio-x product page: questions, gauge report preview, pricing, faq */

.rx-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rx-questions .q {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--ink);
}
.rx-questions .q::before { content: "? "; color: var(--gold); font-weight: 700; }

.rx-report {
  background: var(--forest);
  border-radius: 10px;
  padding: 34px;
  color: var(--white);
}
.rx-report .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.rx-report .fic-note { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.rx-gauge-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.rx-gauge-score { font-family: var(--font-display); font-size: 40px; }
.rx-gauge-score .of { font-size: 15px; color: rgba(255,255,255,0.6); font-family: var(--font-body); }
.rx-gauge-rating {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
}
.rx-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rx-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: 6px;
  padding: 14px 16px;
}
.rx-mini .label { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.rx-mini .value { font-size: 16.5px; font-weight: 600; }
.rx-mini .value.ok { color: #7BD88F; }
.rx-mini .value.warn { color: #F2A65A; }
.rx-report .cta-line {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

.price-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.price-card .plabel { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 8px; }
.price-card .pvalue { font-family: var(--font-display); font-size: 46px; color: var(--forest); }
.price-card .pnote { font-size: 13.5px; color: var(--ink-soft); margin: 10px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.price-card li { padding: 8px 0; font-size: 14.5px; color: var(--ink); border-top: 1px solid var(--line); }
.price-card li:first-child { border-top: none; }

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--gold); font-weight: 700; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 880px) {
  .rx-questions { grid-template-columns: 1fr; }
  .rx-mini-grid { grid-template-columns: 1fr 1fr; }
}

/* real report reveal (blurred sensitive fields) */

.blur-real {
  filter: blur(5px);
  user-select: none;
  color: rgba(255,255,255,0.9);
}
.rx-report-toggle {
  margin-top: 24px;
  background: var(--gold);
  border: none;
  color: var(--forest-deep);
  padding: 15px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.01em;
}
.rx-report-toggle:hover { background: var(--gold-soft); }
.rx-full-report { display: none; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line-on-dark); }
.rx-full-report.open { display: block; }
.rx-full-report h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin: 26px 0 10px;
}
.rx-full-report h4:first-child { margin-top: 0; }
.rx-kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  font-size: 13.5px;
}
.rx-kv .row { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line-on-dark); padding: 6px 0; gap: 10px; }
.rx-kv .row .k { color: rgba(255,255,255,0.55); }
.rx-full-report table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 4px;
}
.rx-full-report th {
  text-align: left;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  padding: 6px 8px;
  border-bottom: 1px solid var(--line-on-dark);
}
.rx-full-report td {
  padding: 7px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rx-badge-warn { color: #F2A65A; font-weight: 600; }
.rx-badge-ok { color: #7BD88F; font-weight: 600; }
.rx-privacy-note {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* video teaser */

.video-teaser {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: 8px;
  padding: 14px 20px;
  max-width: 420px;
}
.video-teaser .play {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  font-size: 16px;
}
.video-teaser .txt { font-size: 13.5px; color: rgba(255,255,255,0.85); line-height: 1.4; }
.video-teaser .txt strong { display: block; color: var(--white); font-size: 14.5px; margin-bottom: 2px; }

/* video modal (portrait, for YouTube Shorts) */

.video-teaser { cursor: pointer; }

.video-label {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.video-thumb {
  position: relative;
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: var(--forest-deep);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: 0 auto;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,49,0.15) 0%, rgba(7,20,49,0.55) 100%);
}
.video-thumb .play-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2FD9C4;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.video-thumb .watch-txt {
  position: absolute;
  top: calc(50% + 46px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 49, 0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: min(92vw, 400px);
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.video-modal-frame { width: 100%; height: 100%; }
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

/* raio-x: analyzed grid, gains, quote box */

.rx-analyzed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rx-a-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.rx-a-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.rx-a-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.rx-a-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.rx-gains {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 28px;
}
.rx-gain {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.rx-gain:first-child { border-top: none; }
.rx-gain .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11,29,69,0.08);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.rx-gain h4 { font-size: 15.5px; margin-bottom: 4px; }
.rx-gain p { font-size: 14px; color: var(--ink-soft); }

.rx-quote-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper-deep);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 24px 28px;
}
.rx-quote-box p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 10px; }
.rx-quote-box p.quote { font-style: italic; color: var(--ink); font-size: 15px; line-height: 1.6; }
.rx-quote-box p.fine { font-size: 12px; color: var(--ink-soft); margin-top: 12px; margin-bottom: 0; }

@media (max-width: 880px) {
  .rx-analyzed-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .rx-analyzed-grid { grid-template-columns: 1fr; }
}

.rx-gauge-svg { flex-shrink: 0; }

/* raio-x trust line + sticky mobile CTA */

.rx-trustline {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.rx-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--forest);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
}
.rx-sticky-cta a {
  display: block;
  width: 100%;
  text-align: center;
}
@media (max-width: 880px) {
  .rx-sticky-cta { display: block; }
  body:has(.rx-sticky-cta) .wa-float { bottom: 86px; }
}

footer .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  color: rgba(255,255,255,0.75);
  padding: 0;
}
footer .social-icons a:hover { color: var(--white); border-color: var(--gold); }

/* limpa nome legal section */

.ln-legal {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 34px;
}
.ln-legal h4 { font-size: 14px; margin: 22px 0 8px; }
.ln-legal h4:first-child { margin-top: 0; }
.ln-legal p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.ln-legal .law-box {
  background: var(--paper-deep);
  border-left: 3px solid var(--forest);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--ink);
  margin-top: 8px;
}
.ln-legal .law-box strong { display: block; margin-bottom: 4px; color: var(--forest); }
.ln-legal .included { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.ln-legal .included span { font-size: 14.5px; color: var(--ink); }
.ln-legal .included span::before { content: "\2705"; margin-right: 6px; }
.ln-legal .note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

/* limpa nome offer + countdown */

.ln-offer {
  max-width: 480px;
  margin: 0 auto;
  background: var(--forest);
  border-radius: 10px;
  padding: 36px;
  text-align: center;
  color: var(--white);
}
.ln-offer .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.ln-offer .countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.ln-offer .countdown div {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-on-dark);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 58px;
}
.ln-offer .countdown .n { font-family: var(--font-display); font-size: 24px; display: block; }
.ln-offer .countdown .l { font-size: 10.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.ln-offer .price-old { font-size: 15px; color: rgba(255,255,255,0.55); text-decoration: line-through; }
.ln-offer .price-new { font-family: var(--font-display); font-size: 42px; margin: 4px 0 6px; }
.ln-offer .price-note { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.ln-offer .btn { width: 100%; justify-content: center; }

/* limpa nome antes/depois */

.ln-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}
.ln-compare .card {
  border-radius: 8px;
  padding: 24px 26px;
  background: var(--white);
}
.ln-compare .card.before { border: 2px solid #E5484D; }
.ln-compare .card.after { border: 2px solid #3FBF6F; }
.ln-compare .tag2 {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ln-compare .before .tag2 { background: rgba(229,72,77,0.12); color: #E5484D; }
.ln-compare .after .tag2 { background: rgba(63,191,111,0.12); color: #2E9E58; }
.ln-compare .date { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 16px; }
.ln-compare .row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.ln-compare .row:first-of-type { border-top: none; }
.ln-compare .row .v { font-weight: 600; }
.ln-compare .before .row .v.hit { color: #E5484D; }
.ln-compare .after .row .v { color: var(--ink-soft); }
.ln-compare .status-final {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: #2E9E58;
}
.ln-compare .arrow-between {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
@media (max-width: 880px) {
  .ln-compare { grid-template-columns: 1fr; }
  .ln-compare .arrow-between { display: none; }
}

.ln-legal .bureau-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ln-legal .bureau-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* serasa document replica */

.ln-doc {
  background: var(--white);
  border-radius: 6px;
  padding: 20px 22px;
  font-size: 12px;
}
.ln-doc.before { border: 3px solid #E5484D; }
.ln-doc.after { border: 3px solid #3FBF6F; }
.ln-doc .doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ln-doc .doc-head img { height: 26px; }
.ln-doc .doc-head .doc-time { font-size: 11px; color: var(--ink-soft); }
.ln-doc .doc-info {
  background: #FFF7E0;
  border: 1px solid #F0E0A8;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 10.5px;
  color: #7A6420;
  margin-bottom: 14px;
}
.ln-doc h5 { font-size: 12.5px; color: var(--forest); margin: 14px 0 6px; }
.ln-doc table { width: 100%; border-collapse: collapse; font-size: 11.5px; margin-bottom: 4px; }
.ln-doc th { text-align: left; color: var(--ink-soft); font-weight: 600; padding: 5px 6px; border-bottom: 1px solid var(--line); }
.ln-doc td { padding: 6px; border-bottom: 1px solid var(--line); }
.ln-doc td.blur { filter: blur(4px); user-select: none; }
.ln-doc td.hit { color: #E5484D; font-weight: 700; }
.ln-doc td.clean { color: var(--ink-soft); }
.ln-doc .doc-status {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--ink);
}
.ln-doc .doc-status strong.reg { color: #2E9E58; }
.ln-doc .doc-status strong.irr { color: #E5484D; }

.page-hero.hero-centered .wrap { text-align: center; max-width: 760px; }
.page-hero.hero-centered .breadcrumb { display: none; }
.page-hero.hero-centered .lede { margin-left: auto; margin-right: auto; }
.page-hero.hero-centered .actions { justify-content: center; }

.community-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.community-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}
.community-card:hover { border-color: var(--gold); }
.community-card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper-deep);
  font-size: 20px;
  margin-bottom: 14px;
}
.community-card h4 { font-size: 17px; margin-bottom: 8px; }
.community-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.community-card .go { font-size: 13.5px; font-weight: 600; color: var(--forest); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

@media (max-width: 880px) {
  .community-cards { grid-template-columns: 1fr; }
}

.rt-image-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rt-image-compare img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}
@media (max-width: 880px) {
  .rt-image-compare { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wa-label span { max-width: 150px; white-space: normal; font-size: 13px; }
}
