/* ===========================================================================
   Página do programa de parceiros (/revendedores).

   Só o que é desta página: o cartão de cadastro, os passos, a simulação de
   ganho e os motivos. A moldura (cabeçalho, rodapé, botões, títulos de seção)
   vem de site.css, e o hero, os números e o FAQ, de home.css — a página usa as
   mesmas peças das homes de propósito, para quem sai da home e chega aqui não
   trocar de site no meio do caminho.

   Aqui morava o CSS do programa white label, que importava landing.css inteiro
   (4.500 linhas do desenho antigo) para colorir cards de emoji. Saiu junto com
   o posicionamento que ele vestia.
   =========================================================================== */

/* --- Cartão de cadastro, no primeiro quadro ------------------------------- */

.fc .pt-card {
  background: var(--fc-dark);
  color: #e2e8f0;
  border-radius: var(--fc-radius);
  padding: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
}

.fc .pt-card__head h2 {
  color: #fff;
  font-size: 1.35rem;
}

.fc .pt-card__head p {
  margin-top: 6px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.fc .pt-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.fc .pt-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fc .pt-field {
  display: grid;
  gap: 6px;
}

.fc .pt-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.fc .pt-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
}

.fc .pt-field input::placeholder {
  color: #64748b;
}

.fc .pt-field input:focus {
  outline: none;
  border-color: var(--fc-accent);
  background: rgba(255, 255, 255, 0.1);
}

.fc .pt-form__submit {
  width: 100%;
  margin-top: 4px;
}

.fc .pt-form__note {
  margin-top: 2px;
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
}

.fc .pt-link {
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc .pt-flash {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.fc .pt-flash--ok {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #dcfce7;
}

.fc .pt-flash--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.fc .pt-flash ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

/* --- Passos, ganhos e motivos --------------------------------------------- */

.fc .fc-section--tint {
  background: var(--fc-bg);
}

.fc .pt-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.fc .pt-step {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  padding: 26px;
}

.fc .pt-step__number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--fc-accent-soft);
  color: var(--fc-accent-ink);
  font-weight: 800;
  margin-bottom: 16px;
}

.fc .pt-step h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.fc .pt-step p {
  color: var(--fc-muted);
  font-size: 0.96rem;
}

.fc .pt-step code {
  background: var(--fc-bg);
  border: 1px solid var(--fc-line);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.88em;
}

/* --- Calculadora de ganho -------------------------------------------------- */

.fc .pt-calc {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 36px;
  align-items: start;
}

.fc .pt-calc__controls {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  padding: 26px;
  display: grid;
  gap: 24px;
}

.fc .pt-calc__field > label,
.fc .pt-calc__modules legend {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fc-ink);
  margin-bottom: 12px;
  padding: 0;
}

.fc .pt-calc__modules legend span {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fc-muted);
}

.fc .pt-calc__slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fc .pt-calc__slider input[type="range"] {
  flex-grow: 1;
  accent-color: var(--fc-accent);
  height: 6px;
}

/* O número é campo, e não rótulo: com o slider indo até 500, arrastar não
   acerta um valor exato — quem já sabe o próprio número digita. */
.fc .pt-calc__value {
  width: 84px;
  flex-shrink: 0;
  padding: 8px 6px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--fc-accent-soft);
  color: var(--fc-accent-ink);
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
}

.fc .pt-calc__value:focus {
  outline: none;
  border-color: var(--fc-accent);
  background: var(--fc-surface);
}

.fc .pt-calc__modules {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.fc .pt-calc__module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--fc-line);
  border-radius: 12px;
}

.fc .pt-calc__module label {
  font-size: 0.94rem;
  font-weight: 600;
}

.fc .pt-calc__module label span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fc-muted);
}

.fc .pt-calc__percent {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 4px 12px 4px 4px;
  border-radius: 10px;
  border: 1px solid var(--fc-line);
  background: var(--fc-bg);
}

.fc .pt-calc__percent:focus-within {
  border-color: var(--fc-accent);
  background: var(--fc-surface);
}

.fc .pt-calc__percent input {
  width: 56px;
  padding: 8px 4px;
  text-align: center;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: var(--fc-ink);
}

.fc .pt-calc__percent input:focus {
  outline: none;
}

.fc .pt-calc__percent span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-muted);
}

/* O resultado é escuro para ser a única coisa que se olha primeiro: o resto do
   bloco são controles, e controle não é argumento de venda. */
.fc .pt-calc__result {
  background: var(--fc-dark);
  color: #e2e8f0;
  border-radius: var(--fc-radius);
  padding: 26px;
  text-align: center;
}

.fc .pt-calc__result-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.fc .pt-calc__result strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.fc .pt-calc__result-year {
  display: block;
  font-size: 0.92rem;
  color: #94a3b8;
}

.fc .pt-calc__breakdown {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  display: grid;
  gap: 10px;
  text-align: left;
}

.fc .pt-calc__breakdown li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.fc .pt-calc__breakdown strong {
  display: inline;
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: normal;
  color: #fff;
}

.fc .pt-calc__note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #64748b;
}


/* --- Módulos, com a comissão de cada um ----------------------------------- */

.fc .pt-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.fc .pt-module {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--fc-surface);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  padding: 24px;
}

.fc .pt-module__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc .pt-module__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.fc .pt-module__icon svg {
  width: 100%;
  height: 100%;
}

.fc .pt-module h3 {
  font-size: 1.02rem;
}

.fc .pt-module__price {
  display: block;
  margin-top: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fc-muted);
}

.fc .pt-module p {
  color: var(--fc-muted);
  font-size: 0.94rem;
  flex-grow: 1;
}

/* O número que interessa a quem lê esta página fica destacado do resto do
   card: o lojista compara preço, o parceiro compara comissão. */
.fc .pt-module__payout {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--fc-line);
}

.fc .pt-module__payout span {
  font-size: 0.85rem;
  color: var(--fc-faint);
}

.fc .pt-module__payout strong {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fc-accent-ink);
}

.fc .pt-modules__note {
  margin-top: 24px;
  text-align: center;
  color: var(--fc-muted);
  font-size: 0.95rem;
}

.fc .pt-modules__note strong {
  color: var(--fc-ink);
}

/* --- Prova do produto e suporte ------------------------------------------- */

/* Os quatro motivos pelos quais o produto converte, em faixa, logo abaixo das
   telas: eles são a legenda do que a pessoa acabou de ver, não uma seção
   própria de texto — que foi o que estava aqui antes e não mostrava o
   sistema nenhuma vez. */
.fc .pt-proof {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.fc .pt-proof li {
  padding: 20px;
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  background: var(--fc-bg);
}

.fc .pt-proof strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fc-accent-ink);
  margin-bottom: 6px;
}

.fc .pt-proof span {
  font-size: 0.92rem;
  color: var(--fc-muted);
}

.fc .pt-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fc .pt-support__item {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  padding: 24px;
}

.fc .pt-support__item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.fc .pt-support__item p {
  color: var(--fc-muted);
  font-size: 0.94rem;
}

.fc .pt-final {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.fc .pt-final p {
  color: var(--fc-muted);
  max-width: 46ch;
}

/* --- Telas estreitas ------------------------------------------------------ */

@media (max-width: 900px) {
  .fc .pt-steps,
  .fc .pt-calc,
  .fc .pt-modules,
  .fc .pt-support {
    grid-template-columns: 1fr;
  }

  .fc .pt-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fc .pt-form__row {
    grid-template-columns: 1fr;
  }

  .fc .pt-card {
    padding: 22px;
  }
}
