@font-face {
  font-family: "Hinotha Tomori";
  src: url("../fonts/hinotha-tomori.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== TOKENS BLACK ===== */
:root {
  --ink: #1a2e20;
  --ink2: #1e3226;
  --paper: #1e2e24;
  --card: #273d2e;
  --card2: #2e4736;
  --money: #00c853;
  --money-mid: #00a843;
  --money-dark: #006d2a;
  --gold: #c8f500;
  --gold-dark: #aad400;
  --line: rgba(0, 200, 83, 0.25);
  --line2: rgba(255, 255, 255, 0.13);
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 12px 32px rgba(0, 0, 0, 0.3);
  --txt: #f0faf4;
  --txt2: #a8ccb2;
  --receipt: #273d2e;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 80px;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--paper);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: "Hinotha Tomori", "Archivo", sans-serif;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "Space Mono", monospace;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}

/* ===== EYEBROW ===== */
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--money);
  font-weight: 700;
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem);
  margin-bottom: 14px;
  color: #fff;
}
.section-lead {
  max-width: 520px;
  color: var(--txt2);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold);
  color: #0a0f0d;
  box-shadow: 0 10px 28px rgba(200, 245, 0, 0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--money);
  border-color: var(--money);
}
.btn-ghost:hover {
  background: var(--money);
  color: #000;
}
.btn-header {
  padding: 10px 20px;
  font-size: 0.88rem;
  background: var(--money);
  color: #000;
}
.btn-header:hover {
  background: var(--money-mid);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 19px 40px;
  font-size: 1.08rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 46, 32, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.logo-mark {
  width: 64px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--txt2);
  letter-spacing: 0.02em;
}
.black-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--card) 0%, var(--ink) 100%);
  border: 1px solid var(--money);
  border-radius: 999px;
  padding: 4px 12px 4px 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--money);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.black-dot {
  width: 8px;
  height: 8px;
  background: var(--money);
  border-radius: 50%;
  flex: none;
}

/* Nav desktop */
.nav {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--txt2);
}
.nav a:hover {
  color: var(--money);
}
@media (min-width: 760px) {
  .nav {
    display: flex;
  }
}

/* Botão hambúrguer */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.15s;
}
.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 760px) {
  .burger {
    display: none;
  }
}

/* Menu mobile */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(26, 46, 32, 0.99);
  border-bottom: 1px solid var(--line2);
  padding: 8px 0 16px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--txt2);
  border-bottom: 1px solid var(--line2);
  transition:
    color 0.15s,
    background 0.15s;
}
.mobile-menu a:hover {
  color: var(--money);
  background: rgba(0, 200, 83, 0.05);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
@media (min-width: 760px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== PLANO CARD — imagem ===== */
.plan-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3828 0%, #162a1e 100%);
}
.plan-img-wrap img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}
.plan-card:hover .plan-img-wrap img {
  transform: translateY(-4px) scale(1.03);
}

/* Botão de compra destacado */
.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold) 0%, #e8ff00 100%);
  color: #0a0f0d;
  box-shadow:
    0 6px 24px rgba(200, 245, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s;
  text-decoration: none;
  margin-top: auto;
  letter-spacing: 0.01em;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(200, 245, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #d9ff00 0%, var(--gold) 100%);
}
.btn-buy svg {
  flex: none;
}

/* ===== HERO ===== */
.hero {
  padding: 64px 0 48px;
  overflow: hidden;
  background: linear-gradient(160deg, #1e3828 0%, #1a2e20 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid var(--money);
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--money);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 span {
  color: var(--money);
}
.hero .lead {
  font-size: 1.1rem;
  color: var(--txt2);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--txt2);
}
.trust-row svg {
  color: var(--money);
  flex: none;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  padding: 20px 0 20px 10px;
  overflow: visible;
}
.fundo-preto-inclinado {
  background: linear-gradient(135deg, #1e5530 0%, #162a1e 100%);
  border-radius: 42px;
  width: 100%;
  max-width: 400px;
  height: 360px;
  position: relative;
  box-shadow:
    20px 25px 50px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(0, 200, 83, 0.08);
  transform: rotateX(18deg) rotateY(-12deg) rotateZ(-4deg);
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Empurra a imagem para cima e direita saindo do fundo sem invadir o texto */
  overflow: visible;
}
.hero-visual img {
  width: 125%;
  max-width: 500px;
  transform: translateZ(60px) rotateZ(5deg) translateY(-50px) translateX(30px);
  filter: drop-shadow(-10px 15px 25px rgba(0, 0, 0, 0.4));
}

/* Taxa destaque */
.taxa-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.taxa-card {
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.25);
  border-radius: 14px;
  padding: 12px 18px;
  flex: 1;
  min-width: 100px;
}
.taxa-card .tc-val {
  font-family: "Archivo", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--money);
  line-height: 1;
}
.taxa-card .tc-lab {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--txt2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ===== SECTION VANTAGENS ===== */
.section-dark {
  background: var(--ink2);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 28px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.benefit-card:hover {
  border-color: rgba(0, 200, 83, 0.4);
  transform: translateY(-3px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 200, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--money);
}
.benefit-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #fff;
}
.benefit-card p {
  color: var(--txt2);
  font-size: 0.92rem;
}

/* ===== TAXAS HIGHLIGHT ===== */
.taxas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .taxas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .taxas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.taxa-highlight {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.taxa-highlight:hover {
  border-color: rgba(0, 200, 83, 0.4);
  transform: translateY(-3px);
}
.taxa-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--money), var(--gold));
  border-radius: 18px 18px 0 0;
}
.th-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt2);
  margin-bottom: 10px;
}
.th-val {
  font-family: "Archivo", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--money);
  line-height: 1;
}
.th-val small {
  font-size: 1rem;
  font-weight: 700;
}
.th-sub {
  font-size: 0.75rem;
  color: var(--txt2);
  margin-top: 6px;
}
.th-badge {
  display: inline-block;
  background: rgba(200, 245, 0, 0.12);
  color: var(--gold);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* ===== PLANOS ===== */
.plans-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 22px;
}
@media (min-width: 1040px) {
  .plans-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}
.plan-card {
  flex: 0 0 258px;
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.plan-card:hover {
  border-color: rgba(0, 200, 83, 0.3);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--money);
  box-shadow:
    0 0 0 1px var(--money),
    var(--shadow);
}
.plan-card.featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--money);
  color: #000;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.plan-eyebrow {
  font-size: 0.68rem;
  color: var(--txt2);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-family: "Space Mono", monospace;
}
.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #fff;
}
.plan-desc {
  font-size: 0.86rem;
  color: var(--txt2);
  margin-bottom: 16px;
  min-height: 40px;
}
.plan-features {
  margin-bottom: 18px;
  border-top: 1px solid var(--line2);
  padding-top: 14px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 4px 0;
  color: var(--txt2);
}
.plan-features svg {
  color: var(--money);
  flex: none;
}
.plan-price {
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line2);
}
.plan-price-label {
  display: block;
  font-size: 0.7rem;
  color: var(--txt2);
  margin-bottom: 2px;
}
.plan-price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.fill-me {
  background: rgba(200, 245, 0, 0.15);
  color: var(--gold);
  padding: 0 5px;
  border-radius: 4px;
}

/* ===== SIMULADOR ===== */
.sim-wrap {
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}
.sim-card {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 16px;
}
.sim-card-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #fff;
}
.sim-card-desc {
  font-size: 0.82rem;
  color: var(--txt2);
  margin-bottom: 18px;
}
.sim-label {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt2);
  margin-bottom: 8px;
}
.sim-field {
  margin-top: 18px;
}
.sim-field:first-of-type {
  margin-top: 0;
}
.sim-seg {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.sim-seg button {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 6px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt2);
  cursor: pointer;
  transition: 0.15s;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
}
.sim-seg button small {
  display: block;
  font-weight: 500;
  font-size: 0.62rem;
  opacity: 0.8;
}
.sim-seg button.active {
  background: var(--money);
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 200, 83, 0.3);
}
.sim-seg-dark button.active {
  background: #fff;
  color: #000;
}
.sim-money-wrap {
  position: relative;
}
.sim-cur {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--txt2);
  pointer-events: none;
}
.sim-money-wrap input {
  width: 100%;
  border: 1.5px solid var(--line2);
  border-radius: 12px;
  padding: 13px 14px 13px 42px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  font-family: "Space Mono", monospace;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s;
}
.sim-money-wrap input:focus {
  outline: none;
  border-color: var(--money);
}
.sim-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sim-chip {
  border: 1.5px solid var(--line2);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt2);
  cursor: pointer;
  transition: 0.12s;
}
.sim-chip.active {
  background: var(--money);
  color: #000;
  border-color: var(--money);
}
.sim-select-wrap {
  position: relative;
}
.sim-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--money);
  font-size: 0.82rem;
  pointer-events: none;
}
.sim-select-wrap select {
  width: 100%;
  border: 1.5px solid var(--line2);
  border-radius: 12px;
  padding: 13px 36px 13px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  font-family: "Manrope", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.sim-select-wrap select:focus {
  outline: none;
  border-color: var(--money);
}
.sim-select-wrap select option {
  background: var(--card);
}

/* Recomendação */
.sim-reco {
  background: linear-gradient(135deg, #1e5530 0%, #162a1e 100%);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
}
.sim-rk {
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--money);
  font-weight: 700;
}
.sim-rplan {
  font-family: "Archivo", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 4px;
  color: #fff;
  line-height: 1.1;
}
.sim-rwhy {
  font-size: 0.82rem;
  color: var(--txt2);
  margin-top: 8px;
  line-height: 1.5;
}
.sim-cmp {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.sim-cmpbox {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 11px 12px;
}
.sim-cmpbox.win {
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.3);
}
.sim-cmpbox .cn {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--txt2);
}
.sim-cmpbox.win .cn {
  color: var(--money);
}
.sim-cmpbox .cr {
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2px;
  color: #fff;
}
.sim-cmpbox .cx {
  font-size: 0.62rem;
  color: var(--txt2);
  margin-top: 2px;
}
.sim-nudge {
  background: rgba(200, 245, 0, 0.06);
  border: 1px solid rgba(200, 245, 0, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--txt2);
  line-height: 1.5;
}
.sim-nudge b {
  color: var(--gold);
}

/* Tabela sim */
.sim-tblhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.sim-tbl-name {
  font-family: "Archivo", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
}
.sim-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 200, 83, 0.15);
  color: var(--money);
  padding: 4px 10px;
  border-radius: 20px;
}
.sim-badge-alt {
  background: rgba(200, 245, 0, 0.1);
  color: var(--gold);
}
table.sim-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 360px;
}
table.sim-table th {
  background: #1a2e20;
  color: var(--txt2);
  font-weight: 700;
  padding: 9px 6px;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.3;
  border-bottom: 1px solid var(--line2);
}
table.sim-table th:first-child {
  border-radius: 10px 0 0 0;
  text-align: left;
  padding-left: 12px;
}
table.sim-table th:last-child {
  border-radius: 0 10px 0 0;
}
table.sim-table td {
  padding: 8px 6px;
  text-align: center;
  border-bottom: 1px solid var(--line2);
  color: var(--txt2);
}
table.sim-table td:first-child {
  text-align: left;
  padding-left: 12px;
  font-weight: 700;
  color: #fff;
}
table.sim-table td.tx {
  color: var(--txt2);
  font-weight: 600;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}
table.sim-table td.rec {
  color: var(--money);
  font-weight: 700;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}
table.sim-table td.cob {
  color: #ffaa55;
  font-weight: 700;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}
table.sim-table tr.hl td {
  background: rgba(0, 200, 83, 0.06);
}
table.sim-table tr.sub td {
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.62rem;
  color: var(--txt2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 5px 12px;
}
.sim-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--txt2);
  flex-wrap: wrap;
}
.sim-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}
.sim-foot {
  text-align: center;
  font-size: 0.72rem;
  color: var(--txt2);
  margin-top: 8px;
  line-height: 1.6;
  opacity: 0.7;
}

/* ===== CARROSSEL BANDEIRAS ===== */
.band-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.band-track-wrap::before,
.band-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.band-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--paper), transparent);
}
.band-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--paper), transparent);
}
.band-track-wrap:hover .band-track {
  animation-play-state: paused;
}
.band-track {
  display: flex;
  --band-gap: 14px;
  gap: var(--band-gap);
  width: max-content;
  padding: 8px 0;
}
.band-fwd {
  animation: bandScrollFwd 32s linear infinite;
}
.band-back {
  animation: bandScrollBack 38s linear infinite;
}
@keyframes bandScrollFwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--band-gap) / 2));
  }
}
@keyframes bandScrollBack {
  from {
    transform: translateX(calc(-50% - var(--band-gap) / 2));
  }
  to {
    transform: translateX(0);
  }
}
.bcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  cursor: default;
}
.bcard svg {
  width: 90px;
  height: 56px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  display: block;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.bcard:hover svg {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
.bcard span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--txt2);
  font-family: "Manrope", sans-serif;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 14px;
  padding: 6px 22px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: rgba(0, 200, 83, 0.3);
}
.faq-item summary {
  padding: 16px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: #fff;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--money);
  font-weight: 700;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  padding-bottom: 18px;
  color: var(--txt2);
  font-size: 0.92rem;
  max-width: 600px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #1a3a22 0%, #16301c 100%);
  border-top: 1px solid var(--line2);
}
.cta-final-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-final h2 {
  color: #fff;
}
.cta-final p {
  color: var(--txt2);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #162218;
  color: var(--txt2);
  padding: 44px 0 24px;
  border-top: 1px solid var(--line2);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.footer-inner a:hover {
  color: #fff;
}
.small {
  font-size: 0.85rem;
}
.footer-inner p {
  margin-bottom: 6px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid var(--line2);
  padding-top: 20px;
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--money);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 200, 83, 0.4);
  z-index: 100;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(0, 200, 83, 0.4);
  }
  50% {
    box-shadow:
      0 10px 26px rgba(0, 200, 83, 0.4),
      0 0 0 10px rgba(0, 200, 83, 0.12);
  }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== MODAL DIALOG ===== */
dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

/* ===== CNPJ ALERT ===== */
.cnpj-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 245, 0, 0.08);
  border: 1px solid rgba(200, 245, 0, 0.25);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--txt2);
  margin-bottom: 44px;
}
.cnpj-alert svg {
  color: var(--gold);
  flex: none;
}
.cnpj-alert strong {
  color: var(--gold);
}

/* Faixas section header */
.section-money-alt {
  background: linear-gradient(160deg, #1e3828 0%, #1a2e20 100%);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

/* ===== injetado pelo build: header cabe no celular ===== */
@media (max-width: 939.98px) {
  /* o nav so cabe a partir de 940px; ate la, hamburguer */
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu.open {
    display: flex !important;
  }
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .logo {
    min-width: 0;
    gap: 8px;
  }
  .logo > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .btn-header {
    padding: 9px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex: none;
  }
  .burger {
    flex: none;
  }
}
@media (max-width: 479.98px) {
  .logo small {
    display: none;
  }
  .btn-header .btn-header-long {
    display: none;
  }
}

/* ===== injetado pelo build: caixa de comparacao encolhe em telas estreitas ===== */
.sim-cmpbox {
  min-width: 0;
}
.sim-cmpbox .cn,
.sim-cmpbox .cx {
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.25;
}
