/* ===========================================================================
   RelinqSales — camada 2026
   ---------------------------------------------------------------------------
   Folha própria, carregada DEPOIS de main.css. Tudo aqui usa o prefixo `rq-`
   para não disputar especificidade com o template que veio de fábrica.

   Duas metades:
     1. Sistema de página  (.rq-section, .rq-h2, .rq-btn, .rq-split…)
     2. Biblioteca de telas (.rq-ui*, .rq-board*, .rq-chat*, .rq-cad*…)

   A segunda metade desenha a interface do produto em HTML/CSS — sem imagem.
   Motivo: print de tela envelhece a cada release e fica ilegível no celular.
   Desenhado, o mockup é nítido em qualquer densidade, pesa alguns KB e
   acompanha o produto quando um rótulo muda.
   ======================================================================== */

/* ── tokens ──────────────────────────────────────────────────────────────── */
:root {
  --rq-ink: #16162a;
  --rq-ink-soft: #3d4254;
  --rq-body: #575d6e;
  --rq-mute: #868c9c;
  --rq-orange: #e25412;
  --rq-orange-dk: #c4440a;
  --rq-orange-wash: rgba(226, 84, 18, 0.08);
  --rq-paper: #ffffff;
  --rq-sand: #f8f6f3;
  --rq-sand-dk: #f1ede8;
  --rq-line: rgba(22, 22, 42, 0.1);
  --rq-line-soft: rgba(22, 22, 42, 0.06);
  --rq-green: #1f9d5b;
  --rq-blue: #2563eb;
  --rq-purple: #6d3ee8;
  --rq-amber: #d68910;
  --rq-red: #d64545;
  --rq-shadow-sm: 0 1px 2px rgba(22, 22, 42, 0.05);
  --rq-shadow: 0 4px 16px rgba(22, 22, 42, 0.07);
  --rq-shadow-lg: 0 24px 60px -20px rgba(22, 22, 42, 0.28);
  --rq-r: 14px;
  --rq-r-sm: 9px;
  --rq-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
}

/* ── base ────────────────────────────────────────────────────────────────── */
.rq-scope {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--rq-body);
  -webkit-font-smoothing: antialiased;
}
.rq-scope *,
.rq-scope *::before,
.rq-scope *::after {
  box-sizing: border-box;
}

.rq-shell {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 22px;
}
.rq-shell--tight {
  max-width: 900px;
}

.rq-section {
  padding: 86px 0;
  position: relative;
}
.rq-section--sand {
  background: var(--rq-sand);
}
.rq-section--ink {
  background: var(--rq-ink);
  color: rgba(255, 255, 255, 0.72);
}
.rq-section--tight {
  padding: 58px 0;
}
.rq-section--flush-top {
  padding-top: 0;
}

/* fio de separação que não pesa como uma border cheia */
.rq-rule {
  height: 1px;
  background: var(--rq-line-soft);
  border: 0;
  margin: 0;
}

/* ── tipografia ──────────────────────────────────────────────────────────── */
.rq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rq-orange);
  margin-bottom: 16px;
}
.rq-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--rq-orange);
  border-radius: 2px;
}
.rq-section--ink .rq-eyebrow {
  color: #ff9256;
}
.rq-section--ink .rq-eyebrow::before {
  background: #ff9256;
}

.rq-h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--rq-ink);
  margin: 0 0 20px;
}
.rq-h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--rq-ink);
  margin: 0 0 16px;
}
.rq-h3 {
  font-size: 1.2rem;
  line-height: 1.32;
  letter-spacing: -0.012em;
  font-weight: 700;
  color: var(--rq-ink);
  margin: 0 0 9px;
}
.rq-section--ink .rq-h1,
.rq-section--ink .rq-h2,
.rq-section--ink .rq-h3 {
  color: #fff;
}
.rq-accent {
  color: var(--rq-orange);
}

.rq-lead {
  font-size: 1.09rem;
  line-height: 1.68;
  color: var(--rq-body);
  margin: 0 0 18px;
  max-width: 62ch;
}
.rq-p {
  font-size: 0.985rem;
  line-height: 1.72;
  color: var(--rq-body);
  margin: 0 0 14px;
}
.rq-p:last-child {
  margin-bottom: 0;
}
.rq-section--ink .rq-lead,
.rq-section--ink .rq-p {
  color: rgba(255, 255, 255, 0.72);
}
.rq-small {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--rq-mute);
}
.rq-strong {
  color: var(--rq-ink);
  font-weight: 600;
}
.rq-section--ink .rq-strong {
  color: #fff;
}

/* cabeçalho de bloco, centralizado */
.rq-head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.rq-head .rq-lead {
  margin-inline: auto;
}
.rq-head--left {
  margin-inline: 0;
  text-align: left;
}

/* ── botões ──────────────────────────────────────────────────────────────── */
.rq-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.rq-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.rq-btn--primary {
  background: var(--rq-orange);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(226, 84, 18, 0.6);
}
.rq-btn--primary:hover {
  background: var(--rq-orange-dk);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(226, 84, 18, 0.7);
}
.rq-btn--ghost {
  background: transparent;
  color: var(--rq-ink);
  border-color: var(--rq-line);
}
.rq-btn--ghost:hover {
  color: var(--rq-ink);
  border-color: rgba(22, 22, 42, 0.28);
  background: rgba(22, 22, 42, 0.03);
}
.rq-section--ink .rq-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}
.rq-section--ink .rq-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
.rq-btn--lg {
  padding: 16px 30px;
  font-size: 1rem;
}
.rq-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* link com seta que anda no hover */
.rq-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rq-orange);
  text-decoration: none;
}
.rq-link i {
  font-size: 0.78em;
  transition: transform 0.16s ease;
}
.rq-link:hover {
  color: var(--rq-orange-dk);
  text-decoration: none;
}
.rq-link:hover i {
  transform: translateX(3px);
}

/* ── layout ──────────────────────────────────────────────────────────────── */
.rq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 58px;
  align-items: center;
}
.rq-split--even {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rq-split--wide-left {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}
.rq-split--top {
  align-items: start;
}
/* inverte a ordem visual sem mexer na ordem do DOM (leitor de tela) */
.rq-split__flip {
  order: -1;
}

.rq-grid {
  display: grid;
  gap: 22px;
}
.rq-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rq-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rq-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rq-stack > * + * {
  margin-top: 14px;
}

/* ── cartões e listas ────────────────────────────────────────────────────── */
.rq-card {
  background: var(--rq-paper);
  border: 1px solid var(--rq-line);
  border-radius: var(--rq-r);
  padding: 26px;
}
.rq-card--sand {
  background: var(--rq-sand);
  border-color: transparent;
}
.rq-card--raised {
  box-shadow: var(--rq-shadow);
}
.rq-card__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
  margin-bottom: 15px;
  background: var(--rq-orange-wash);
  color: var(--rq-orange);
}
.rq-card__ico--blue {
  background: rgba(37, 99, 235, 0.09);
  color: var(--rq-blue);
}
.rq-card__ico--green {
  background: rgba(31, 157, 91, 0.1);
  color: var(--rq-green);
}
.rq-card__ico--purple {
  background: rgba(109, 62, 232, 0.09);
  color: var(--rq-purple);
}
.rq-card__ico--ink {
  background: rgba(22, 22, 42, 0.07);
  color: var(--rq-ink);
}

/* lista com check */
.rq-checks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rq-checks li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 11px;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--rq-body);
}
.rq-checks li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
  color: var(--rq-green);
}
.rq-section--ink .rq-checks li {
  color: rgba(255, 255, 255, 0.75);
}

/* lista numerada editorial */
.rq-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: rqstep;
}
.rq-steps li {
  position: relative;
  padding-left: 46px;
  padding-bottom: 26px;
  counter-increment: rqstep;
}
.rq-steps li::before {
  content: counter(rqstep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--rq-orange);
  background: var(--rq-orange-wash);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.rq-steps li::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 4px;
  width: 1px;
  background: var(--rq-line);
}
.rq-steps li:last-child {
  padding-bottom: 0;
}
.rq-steps li:last-child::after {
  display: none;
}

/* ── números ─────────────────────────────────────────────────────────────── */
.rq-nums {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rq-line-soft);
  border: 1px solid var(--rq-line-soft);
  border-radius: var(--rq-r);
  overflow: hidden;
}
.rq-num {
  background: var(--rq-paper);
  padding: 24px 20px;
}
.rq-section--sand .rq-num {
  background: var(--rq-sand);
}
.rq-num__v {
  display: block;
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--rq-ink);
  line-height: 1;
  margin-bottom: 7px;
}
.rq-num__l {
  display: block;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--rq-mute);
}

/* ── etiquetas ───────────────────────────────────────────────────────────── */
.rq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(22, 22, 42, 0.05);
  color: var(--rq-ink-soft);
  white-space: nowrap;
}
.rq-tag--orange {
  background: var(--rq-orange-wash);
  color: var(--rq-orange);
}
.rq-tag--green {
  background: rgba(31, 157, 91, 0.11);
  color: var(--rq-green);
}
.rq-tag--blue {
  background: rgba(37, 99, 235, 0.09);
  color: var(--rq-blue);
}
.rq-tag--purple {
  background: rgba(109, 62, 232, 0.09);
  color: var(--rq-purple);
}
.rq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* código inline */
.rq-code {
  font-family: var(--rq-mono);
  font-size: 0.84em;
  background: rgba(22, 22, 42, 0.05);
  border: 1px solid var(--rq-line-soft);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--rq-ink-soft);
  white-space: nowrap;
}

/* =========================================================================
   BIBLIOTECA DE TELAS — o produto desenhado
   ========================================================================= */

/* moldura de janela */
.rq-ui {
  background: #fff;
  border: 1px solid var(--rq-line);
  border-radius: 12px;
  box-shadow: var(--rq-shadow-lg);
  overflow: hidden;
  font-size: 11px;
  line-height: 1.4;
  color: var(--rq-ink-soft);
  user-select: none;
}
.rq-ui__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  background: #fbfaf9;
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-ui__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.rq-ui__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dcd8d3;
  display: block;
}
.rq-ui__url {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 10.5px;
  color: var(--rq-mute);
  background: #fff;
  border: 1px solid var(--rq-line-soft);
  border-radius: 6px;
  padding: 3px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-ui__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--rq-green);
  flex-shrink: 0;
}
.rq-ui__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rq-green);
  animation: rq-pulse 2.2s ease-in-out infinite;
}
@keyframes rq-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.82);
  }
}

/* barra de ferramentas interna do app */
.rq-ui__tools {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-bottom: 1px solid var(--rq-line-soft);
  background: #fff;
  flex-wrap: wrap;
}
.rq-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid var(--rq-line);
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--rq-ink-soft);
  background: #fff;
  white-space: nowrap;
}
.rq-chip--on {
  background: var(--rq-orange-wash);
  border-color: rgba(226, 84, 18, 0.28);
  color: var(--rq-orange);
}
.rq-chip--mute {
  color: var(--rq-mute);
  font-weight: 500;
}
.rq-chip i {
  font-size: 9px;
  opacity: 0.75;
}

/* presença: "pessoas navegando neste funil" */
.rq-ui__presence {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-size: 10.5px;
  color: var(--rq-mute);
  border-bottom: 1px solid var(--rq-line-soft);
  background: #fff;
}
.rq-faces {
  display: flex;
}
.rq-face {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  display: grid;
  place-items: center;
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.rq-face:first-child {
  margin-left: 0;
}
.rq-face--a {
  background: #e25412;
}
.rq-face--b {
  background: #2563eb;
}
.rq-face--c {
  background: #1f9d5b;
}
.rq-face--d {
  background: #6d3ee8;
}
.rq-face--e {
  background: #d68910;
}
.rq-face--f {
  background: #64748b;
}
.rq-face--lg {
  width: 30px;
  height: 30px;
  font-size: 11px;
}

/* ── quadro kanban ───────────────────────────────────────────────────────── */
.rq-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 9px;
  padding: 13px;
  background: #f7f6f4;
  overflow: hidden;
}
.rq-col {
  background: #fff;
  border: 1px solid var(--rq-line-soft);
  border-radius: 9px;
  padding: 9px 8px;
  min-width: 0;
}
.rq-col__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 7px;
}
.rq-col__name {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rq-ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-col__n {
  font-size: 9px;
  font-weight: 700;
  background: rgba(22, 22, 42, 0.07);
  color: var(--rq-ink-soft);
  border-radius: 999px;
  padding: 1px 6px;
  flex-shrink: 0;
}
.rq-col__sum {
  font-size: 9px;
  font-weight: 600;
  color: var(--rq-green);
  background: rgba(31, 157, 91, 0.08);
  border-radius: 5px;
  padding: 3px 6px;
  margin-bottom: 7px;
  text-align: center;
}
.rq-deal {
  background: #fff;
  border: 1px solid var(--rq-line-soft);
  border-left: 2px solid var(--rq-line);
  border-radius: 7px;
  padding: 7px 8px;
  margin-bottom: 6px;
  box-shadow: var(--rq-shadow-sm);
}
.rq-deal:last-child {
  margin-bottom: 0;
}
.rq-deal--hot {
  border-left-color: var(--rq-orange);
}
.rq-deal--ok {
  border-left-color: var(--rq-green);
}
.rq-deal--cold {
  border-left-color: var(--rq-blue);
}
.rq-deal--risk {
  border-left-color: var(--rq-red);
}
.rq-deal__t {
  font-size: 10px;
  font-weight: 700;
  color: var(--rq-ink);
  line-height: 1.3;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-deal__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  font-size: 9px;
  color: var(--rq-mute);
  margin-top: 4px;
}
.rq-deal__v {
  font-weight: 700;
  color: var(--rq-ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.rq-deal__row > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.rq-deal--ghost {
  border-style: dashed;
  border-left-style: dashed;
  border-color: var(--rq-line);
  background: transparent;
  box-shadow: none;
  text-align: center;
  padding: 16px 8px;
  font-size: 9px;
  color: var(--rq-mute);
}

/* ── inbox de WhatsApp ───────────────────────────────────────────────────── */
.rq-chat {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 268px;
  background: #fff;
}
.rq-chat__list {
  border-right: 1px solid var(--rq-line-soft);
  background: #fbfaf9;
  padding: 8px;
  overflow: hidden;
}
.rq-conv {
  padding: 7px 8px;
  border-radius: 7px;
  margin-bottom: 3px;
}
.rq-conv--on {
  background: #fff;
  box-shadow: var(--rq-shadow-sm);
}
.rq-conv__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.rq-conv__n {
  font-size: 10px;
  font-weight: 700;
  color: var(--rq-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-conv__h {
  font-size: 8.5px;
  color: var(--rq-mute);
  flex-shrink: 0;
}
.rq-conv__p {
  font-size: 9px;
  color: var(--rq-mute);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-conv__badge {
  display: inline-block;
  background: var(--rq-green);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 0 5px;
  line-height: 14px;
}
.rq-chat__panel {
  display: flex;
  flex-direction: column;
  background: #f7f6f4;
  min-width: 0;
}
.rq-chat__hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: #fff;
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-chat__who {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rq-ink);
}
.rq-chat__thread {
  flex: 1;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rq-bub {
  max-width: 76%;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.5;
  box-shadow: var(--rq-shadow-sm);
}
.rq-bub--in {
  align-self: flex-start;
  background: #fff;
  border-bottom-left-radius: 3px;
  color: var(--rq-ink-soft);
}
.rq-bub--out {
  align-self: flex-end;
  background: #d8f3d8;
  border-bottom-right-radius: 3px;
  color: #17361f;
}
.rq-bub__meta {
  display: block;
  font-size: 8px;
  margin-top: 3px;
  opacity: 0.6;
}
.rq-bub--ai {
  border: 1px dashed rgba(226, 84, 18, 0.4);
}

/* ── cadência ────────────────────────────────────────────────────────────── */
.rq-cad {
  padding: 15px;
  background: #fff;
}
.rq-cad__step {
  display: grid;
  grid-template-columns: 46px 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  position: relative;
  padding-bottom: 13px;
}
.rq-cad__step:last-child {
  padding-bottom: 0;
}
.rq-cad__step::before {
  content: "";
  position: absolute;
  left: 68px;
  top: 28px;
  bottom: -1px;
  width: 1px;
  background: rgba(22, 22, 42, 0.16);
}
.rq-cad__step:last-child::before {
  display: none;
}
.rq-cad__d {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--rq-mute);
  text-align: right;
  padding-top: 6px;
  letter-spacing: 0.02em;
}
.rq-cad__ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #fff;
  z-index: 1;
}
.rq-cad__ico--wa {
  background: #25a35a;
}
.rq-cad__ico--call {
  background: var(--rq-blue);
}
.rq-cad__ico--mail {
  background: var(--rq-purple);
}
.rq-cad__ico--task {
  background: var(--rq-amber);
}
.rq-cad__ico--stop {
  background: var(--rq-red);
}
.rq-cad__body {
  background: #fbfaf9;
  border: 1px solid var(--rq-line-soft);
  border-radius: 8px;
  padding: 8px 10px;
  min-width: 0;
}
.rq-cad__t {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rq-ink);
  margin-bottom: 3px;
}
.rq-cad__s {
  font-size: 9.5px;
  color: var(--rq-mute);
  line-height: 1.5;
}

/* ── regras de pontuação ─────────────────────────────────────────────────── */
.rq-score {
  padding: 14px;
  background: #fff;
}
.rq-score__gauge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  background: linear-gradient(
    100deg,
    rgba(226, 84, 18, 0.07),
    rgba(226, 84, 18, 0)
  );
  border: 1px solid rgba(226, 84, 18, 0.16);
  border-radius: 9px;
  margin-bottom: 12px;
}
.rq-score__v {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--rq-orange);
  line-height: 1;
}
.rq-score__tier {
  font-size: 10px;
  font-weight: 700;
  color: var(--rq-ink);
}
.rq-score__bar {
  display: block;
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(22, 22, 42, 0.08);
  overflow: hidden;
}
.rq-score__fill {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--rq-orange);
}
.rq-rule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--rq-line-soft);
  border-radius: 7px;
  margin-bottom: 5px;
  font-size: 10px;
  background: #fff;
}
.rq-rule-row:last-child {
  margin-bottom: 0;
}
.rq-rule-row__l {
  color: var(--rq-ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-pts {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  flex-shrink: 0;
}
.rq-pts--up {
  color: var(--rq-green);
  background: rgba(31, 157, 91, 0.1);
}
.rq-pts--dn {
  color: var(--rq-red);
  background: rgba(214, 69, 69, 0.09);
}

/* ── automação: gatilho → condição → ação ────────────────────────────────── */
.rq-flow {
  padding: 16px;
  background: #fbfaf9;
}
.rq-node {
  border: 1px solid var(--rq-line);
  border-radius: 9px;
  background: #fff;
  padding: 9px 11px;
  box-shadow: var(--rq-shadow-sm);
}
.rq-node__k {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.rq-node--trg {
  border-left: 3px solid var(--rq-orange);
}
.rq-node--trg .rq-node__k {
  color: var(--rq-orange);
}
.rq-node--cnd {
  border-left: 3px solid var(--rq-amber);
}
.rq-node--cnd .rq-node__k {
  color: var(--rq-amber);
}
.rq-node--act {
  border-left: 3px solid var(--rq-blue);
}
.rq-node--act .rq-node__k {
  color: var(--rq-blue);
}
.rq-node__t {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rq-ink);
  line-height: 1.35;
}
.rq-node__s {
  font-size: 9.5px;
  color: var(--rq-mute);
  margin-top: 2px;
  line-height: 1.45;
}
.rq-arrow {
  display: grid;
  place-items: center;
  color: var(--rq-mute);
  font-size: 10px;
  padding: 5px 0;
}

/* ── sala do escritório virtual ──────────────────────────────────────────── */
.rq-room {
  padding: 16px;
  background: linear-gradient(150deg, #f4f2ef, #ebe7e1);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}
.rq-desk {
  background: #fff;
  border: 1px solid var(--rq-line-soft);
  border-radius: 10px;
  padding: 11px 9px;
  text-align: center;
  box-shadow: var(--rq-shadow-sm);
  position: relative;
}
.rq-desk__st {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.rq-desk__st--on {
  background: var(--rq-green);
}
.rq-desk__st--busy {
  background: var(--rq-amber);
}
.rq-desk__st--off {
  background: #cfcac4;
}
.rq-desk__n {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--rq-ink);
  margin: 7px 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-desk__r {
  font-size: 8.5px;
  color: var(--rq-mute);
  margin-bottom: 7px;
}
.rq-desk__m {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.rq-pill {
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(22, 22, 42, 0.05);
  color: var(--rq-ink-soft);
}
.rq-pill--g {
  background: rgba(31, 157, 91, 0.11);
  color: var(--rq-green);
}
.rq-pill--r {
  background: rgba(214, 69, 69, 0.1);
  color: var(--rq-red);
}

/* ── O Estagiário: pergunta + resposta ───────────────────────────────────── */
.rq-ask {
  padding: 14px;
  background: #fff;
}
.rq-ask__q {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rq-line);
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 10.5px;
  color: var(--rq-ink);
  font-weight: 600;
  margin-bottom: 11px;
  background: #fbfaf9;
}
.rq-ask__q i {
  color: var(--rq-orange);
}
.rq-ask__a {
  border: 1px solid var(--rq-line-soft);
  border-radius: 9px;
  padding: 11px;
}
.rq-ask__txt {
  font-size: 10px;
  line-height: 1.6;
  color: var(--rq-ink-soft);
  margin-bottom: 10px;
}
.rq-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 9.5px;
}
.rq-tbl th {
  text-align: left;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rq-mute);
  padding: 0 7px 5px 0;
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-tbl td {
  padding: 5px 7px 5px 0;
  border-bottom: 1px solid var(--rq-line-soft);
  color: var(--rq-ink-soft);
}
.rq-tbl tr:last-child td {
  border-bottom: 0;
}
.rq-tbl td:last-child,
.rq-tbl th:last-child {
  text-align: right;
  padding-right: 0;
}

/* barras horizontais simples */
.rq-bars {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.rq-bar {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 34px;
  gap: 7px;
  align-items: center;
  font-size: 9px;
  color: var(--rq-mute);
}
.rq-bar__tr {
  display: block;
  height: 6px;
  background: rgba(22, 22, 42, 0.09);
  border-radius: 3px;
  overflow: hidden;
}
.rq-bar__fl {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--rq-orange);
}
.rq-bar__v {
  text-align: right;
  font-weight: 700;
  color: var(--rq-ink);
}

/* ── área do desenvolvedor ───────────────────────────────────────────────── */
.rq-dev {
  padding: 14px;
  background: #fff;
  font-family: var(--rq-mono);
}
.rq-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  border: 1px solid var(--rq-line-soft);
  border-radius: 7px;
  padding: 8px 10px;
  margin-bottom: 9px;
  font-size: 9.5px;
  background: #fbfaf9;
}
.rq-key__v {
  color: var(--rq-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-dlv {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  gap: 9px;
  align-items: center;
  font-size: 9.5px;
  padding: 6px 0;
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-dlv:last-child {
  border-bottom: 0;
}
.rq-dlv__c {
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 5px;
  text-align: center;
  font-size: 8.5px;
}
.rq-dlv__c--ok {
  background: rgba(31, 157, 91, 0.11);
  color: var(--rq-green);
}
.rq-dlv__c--err {
  background: rgba(214, 69, 69, 0.1);
  color: var(--rq-red);
}
.rq-dlv__e {
  color: var(--rq-ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rq-dlv__t {
  color: var(--rq-mute);
  text-align: right;
}

/* legenda embaixo do mockup */
.rq-cap {
  display: block;
  margin-top: 13px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--rq-mute);
  text-align: center;
}
.rq-cap--left {
  text-align: left;
}

/* ── responsivo ──────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .rq-section {
    padding: 62px 0;
  }
  .rq-split,
  .rq-split--even,
  .rq-split--wide-left {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .rq-split__flip {
    order: 0;
  }
  .rq-grid--3,
  .rq-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rq-nums {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rq-head {
    margin-bottom: 38px;
  }
}

@media (max-width: 767.98px) {
  .rq-section {
    padding: 52px 0;
  }
  .rq-grid--2,
  .rq-grid--3,
  .rq-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .rq-card {
    padding: 21px;
  }
  .rq-room {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rq-chat {
    grid-template-columns: minmax(0, 1fr);
  }
  .rq-chat__list {
    display: none;
  }
  .rq-btn {
    width: 100%;
    justify-content: center;
  }
  .rq-btns {
    width: 100%;
  }
}

/* o quadro não cabe no celular: vira rolagem horizontal com dica visual */
@media (max-width: 767.98px) {
  .rq-scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rq-scroll-x .rq-board {
    grid-auto-columns: 128px;
    width: max-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rq-scope *,
  .rq-scope *::before,
  .rq-scope *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================================
   HERO — usado na home. Fundo claro com malha discreta; a tela do produto
   entra grande à direita e "sangra" um pouco para fora do container, que é o
   que dá a sensação de sistema real e não de ilustração.
   ========================================================================= */
.rq-hero {
  position: relative;
  padding: 132px 0 78px;
  background: linear-gradient(180deg, #fdfcfb 0%, var(--rq-sand) 100%);
  overflow: hidden;
}
.rq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(22, 22, 42, 0.032) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(22, 22, 42, 0.032) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 20%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 20%,
    transparent 78%
  );
  pointer-events: none;
}
.rq-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}
.rq-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rq-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--rq-ink-soft);
  margin-bottom: 22px;
  box-shadow: var(--rq-shadow-sm);
}
.rq-hero__badge b {
  color: var(--rq-orange);
  font-weight: 700;
}
.rq-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rq-green);
  animation: rq-pulse 2.4s ease-in-out infinite;
}
.rq-hero__trust {
  margin-top: 22px;
  font-size: 0.84rem;
  color: var(--rq-mute);
}
.rq-hero__trust b {
  color: var(--rq-ink-soft);
  font-weight: 600;
}
.rq-hero__ui {
  position: relative;
}
/* a tela avança para a direita fora do container em telas largas */
@media (min-width: 1200px) {
  .rq-hero__ui {
    width: calc(100% + 42px);
  }
}
/* etiqueta flutuante sobre a tela */
.rq-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--rq-line);
  border-radius: 11px;
  padding: 9px 13px;
  box-shadow: var(--rq-shadow);
  z-index: 2;
}
.rq-float__ico {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.rq-float__v {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rq-ink);
  line-height: 1.1;
}
.rq-float__l {
  display: block;
  font-size: 10px;
  color: var(--rq-mute);
  margin-top: 1px;
}
.rq-float--a {
  left: -34px;
  bottom: -14px;
}
.rq-float--b {
  right: -8px;
  top: -18px;
}
@media (max-width: 1199.98px) {
  .rq-float {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .rq-hero {
    padding: 112px 0 56px;
  }
  .rq-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
}

/* faixa de números logo abaixo do hero */
.rq-strip {
  background: var(--rq-ink);
  padding: 26px 0;
}
.rq-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.rq-strip__i {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rq-strip__v {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
.rq-strip__l {
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767.98px) {
  .rq-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* bloco de módulo: tela de um lado, texto do outro, alternando */
.rq-mod + .rq-mod {
  border-top: 1px solid var(--rq-line-soft);
}
.rq-mod__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rq-mute);
  margin-bottom: 12px;
}

/* tabela de planos enxuta */
.rq-plan {
  background: #fff;
  border: 1px solid var(--rq-line);
  border-radius: var(--rq-r);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.rq-plan--best {
  border-color: var(--rq-orange);
  box-shadow: 0 18px 44px -22px rgba(226, 84, 18, 0.45);
  position: relative;
}
.rq-plan--best::after {
  content: "Mais contratado";
  position: absolute;
  top: -11px;
  left: 26px;
  background: var(--rq-orange);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
}
.rq-plan__n {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rq-ink);
  margin-bottom: 4px;
}
.rq-plan__d {
  font-size: 0.86rem;
  color: var(--rq-mute);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 42px;
}
.rq-plan__p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--rq-ink);
  line-height: 1;
}
.rq-plan__p small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rq-mute);
  letter-spacing: 0;
}
.rq-plan__c {
  font-size: 0.8rem;
  color: var(--rq-mute);
  margin: 6px 0 18px;
}
.rq-plan .rq-checks {
  margin-bottom: 20px;
}
.rq-plan .rq-checks li {
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.rq-plan__b {
  margin-top: auto;
}
.rq-plan__b .rq-btn {
  width: 100%;
  justify-content: center;
}

/* CTA de fechamento */
.rq-cta {
  background: var(--rq-ink);
  color: #fff;
  border-radius: 20px;
  padding: 54px 46px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rq-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(226, 84, 18, 0.32),
    transparent 66%
  );
  pointer-events: none;
}
.rq-cta__h {
  position: relative;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
  color: #fff;
  margin: 0 0 14px;
}
.rq-cta__p {
  position: relative;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 54ch;
  margin: 0 auto 26px;
}
.rq-cta .rq-btns {
  position: relative;
  justify-content: center;
}
.rq-cta__fine {
  position: relative;
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 767.98px) {
  .rq-cta {
    padding: 38px 22px;
  }
}

/* =========================================================================
   PÁGINA DE FUNCIONALIDADES
   O tour é longo por natureza. O que resolve leitura aqui não é cortar
   conteúdo, é dar ao leitor um mapa fixo e blocos com ritmo previsível.
   ========================================================================= */

/* hero curto das páginas internas */
.rq-top {
  padding: 128px 0 52px;
  background: linear-gradient(180deg, #fdfcfb, var(--rq-sand));
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--rq-mute);
  margin-bottom: 18px;
}
.rq-crumb a {
  color: var(--rq-mute);
  text-decoration: none;
}
.rq-crumb a:hover {
  color: var(--rq-orange);
}
.rq-crumb i {
  font-size: 8px;
  opacity: 0.5;
}

/* índice de módulos: vira barra grudenta no desktop */
.rq-index {
  position: sticky;
  top: 76px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(9px);
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-index__row {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding: 11px 0;
  scrollbar-width: none;
}
.rq-index__row::-webkit-scrollbar {
  display: none;
}
.rq-index__row a {
  flex-shrink: 0;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--rq-body);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.rq-index__row a:hover {
  background: var(--rq-orange-wash);
  color: var(--rq-orange);
  text-decoration: none;
}

/* bloco de módulo com âncora */
.rq-block {
  padding: 70px 0;
  scroll-margin-top: 140px;
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-block--sand {
  background: var(--rq-sand);
}
.rq-block__hd {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}
.rq-block__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: var(--rq-ink);
  color: #fff;
  flex-shrink: 0;
}
.rq-block__hd .rq-h2 {
  margin-bottom: 6px;
}

/* lista densa de recursos: duas colunas, item curto */
.rq-feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rq-feats--1 {
  grid-template-columns: minmax(0, 1fr);
}
.rq-feats--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rq-feats li {
  padding: 13px 0;
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-feats b {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--rq-ink);
  margin-bottom: 3px;
}
.rq-feats span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--rq-body);
}
@media (max-width: 767.98px) {
  .rq-feats,
  .rq-feats--3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .rq-block {
    padding: 48px 0;
  }
  .rq-top {
    padding: 108px 0 40px;
  }
  .rq-index {
    top: 62px;
  }
}

/* tabela de comparação */
.rq-cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #fff;
  border: 1px solid var(--rq-line);
  border-radius: var(--rq-r);
  overflow: hidden;
}
.rq-cmp th,
.rq-cmp td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rq-line-soft);
  vertical-align: top;
}
.rq-cmp thead th {
  background: var(--rq-ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 0;
}
.rq-cmp tbody tr:last-child td {
  border-bottom: 0;
}
.rq-cmp tbody tr:nth-child(even) td {
  background: #fbfaf9;
}
.rq-cmp td:first-child {
  font-weight: 600;
  color: var(--rq-ink);
}
.rq-cmp .rq-yes {
  color: var(--rq-green);
  font-weight: 700;
}
.rq-cmp .rq-no {
  color: #c3c7d0;
}
.rq-tablewrap {
  overflow-x: auto;
}
@media (max-width: 767.98px) {
  .rq-cmp {
    min-width: 620px;
  }
}

/* =========================================================================
   HEADER — trava de legibilidade
   ---------------------------------------------------------------------------
   O template original supõe herói escuro: no topo o header fica transparente
   e o menu herda cor clara (`dark-mode-texts`). Como os heróis agora são
   claros, isso deixava o menu invisível até a primeira rolagem.

   Aqui o header é sempre sólido e o texto sempre escuro. O !important é
   deliberado: main.css tem ~27 mil linhas e várias regras de tema disputam
   essas mesmas propriedades por caminhos diferentes.
   ========================================================================= */
.site-header,
.site-header.site-header--absolute {
  background-color: #fff !important;
  border-bottom: 1px solid rgba(22, 22, 42, 0.07);
}
.site-header.scrolling,
.site-header.reveal-header {
  background-color: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: saturate(180%) blur(10px);
}
.site-header .site-menu-main > .nav-item > .nav-link-item,
.site-header .header-btn-login {
  color: #16162a !important;
}
.site-header .site-menu-main > .nav-item > .nav-link-item:hover,
.site-header .header-btn-login:hover {
  color: #e25412 !important;
}
/* o logo branco só faz sentido sobre fundo escuro */
.site-header .dark-version-logo {
  display: none !important;
}
.site-header .light-version-logo {
  display: inline-block !important;
}
/* hambúrguer: as três barras vinham transparentes no estado inicial */
.site-header .mobile-menu-trigger span,
.site-header .mobile-menu-trigger span::before,
.site-header .mobile-menu-trigger span::after {
  background-color: #16162a !important;
}

/* =========================================================================
   COMPONENTES DE DENSIDADE BAIXA
   Peças para a home dizer a mesma coisa com menos palavra: o texto vira
   rótulo curto e o peso da explicação passa para a tela desenhada ao lado.
   ========================================================================= */

/* dor da operação: ícone + uma linha, nada de parágrafo */
.rq-pains {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rq-line-soft);
  border: 1px solid var(--rq-line-soft);
  border-radius: var(--rq-r);
  overflow: hidden;
}
.rq-pain {
  background: var(--rq-paper);
  padding: 26px 22px;
}
.rq-section--sand .rq-pain {
  background: var(--rq-sand);
}
.rq-pain__ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  margin-bottom: 14px;
  background: rgba(214, 69, 69, 0.09);
  color: var(--rq-red);
}
.rq-pain__q {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rq-ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.rq-pain__a {
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--rq-body);
}
.rq-pain__a b {
  color: var(--rq-green);
  font-weight: 700;
}

/* ladrilho pequeno: ícone, título, uma linha */
.rq-mini {
  padding: 20px 0;
  border-top: 1px solid var(--rq-line-soft);
}
.rq-mini__ico {
  font-size: 15px;
  color: var(--rq-orange);
  margin-bottom: 10px;
  display: block;
}
.rq-mini b {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rq-ink);
  margin-bottom: 4px;
}
.rq-mini span {
  display: block;
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--rq-body);
}

/* faixa de integrações */
.rq-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.rq-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--rq-line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rq-ink-soft);
}
.rq-logo i {
  font-size: 15px;
  color: var(--rq-mute);
}

/* FAQ nativo, sem JavaScript */
.rq-faq {
  border-top: 1px solid var(--rq-line);
}
.rq-faq details {
  border-bottom: 1px solid var(--rq-line);
}
.rq-faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--rq-ink);
  line-height: 1.45;
  list-style: none;
}
.rq-faq summary::-webkit-details-marker {
  display: none;
}
.rq-faq summary::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--rq-orange);
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.18s ease;
}
.rq-faq details[open] summary::after {
  content: "\f068";
}
.rq-faq summary:hover {
  color: var(--rq-orange);
}
.rq-faq__a {
  padding: 0 0 22px;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--rq-body);
  max-width: 74ch;
}
.rq-faq__a a {
  color: var(--rq-orange);
}

@media (max-width: 991.98px) {
  .rq-pains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .rq-pains {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================================
   CARROSSEL — rolagem nativa com encaixe
   ---------------------------------------------------------------------------
   No celular os planos viram carrossel. Sem biblioteca: scroll-snap resolve
   isso nativamente, com inércia do sistema, teclado e leitor de tela
   funcionando de graça. O Swiper que havia em precos.html estourava a
   largura da tela (slide de 699px num viewport de 390px).

   O último cartão ganha um respiro à direita via ::after, porque
   padding-right em contêiner rolável é ignorado por parte dos navegadores.
   ========================================================================= */
@media (max-width: 767.98px) {
  .rq-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* sangra até a borda da tela e devolve o respiro no primeiro item */
    margin-inline: -22px;
    padding: 4px 0 18px;
    scroll-padding-left: 22px;
  }
  .rq-carousel::-webkit-scrollbar {
    display: none;
  }
  .rq-carousel > * {
    flex: 0 0 78%;
    scroll-snap-align: center;
    min-width: 0;
  }
  .rq-carousel > *:first-child {
    margin-left: 22px;
  }
  .rq-carousel::after {
    content: "";
    flex: 0 0 22px;
  }
  /* o cartão em destaque não pode ficar cortado pela sombra */
  .rq-carousel .rq-plan--best {
    margin-top: 11px;
  }
  .rq-carousel__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--rq-mute);
    margin-top: 2px;
  }
  .rq-carousel__hint i {
    font-size: 10px;
    animation: rq-swipe 1.8s ease-in-out infinite;
  }
}
@media (min-width: 768px) {
  .rq-carousel__hint {
    display: none;
  }
}
@keyframes rq-swipe {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* =========================================================================
   LADRILHOS DE RECURSO — ícone + rótulo curto, sem frase
   Substituem as listas longas: o leitor varre em vez de ler.
   ========================================================================= */
.rq-spec {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.rq-spec--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rq-spec--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rq-spec__i {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 15px;
  background: #fff;
  border: 1px solid var(--rq-line);
  border-radius: 11px;
}
.rq-block--sand .rq-spec__i,
.rq-section--sand .rq-spec__i {
  background: #fff;
}
.rq-spec__i > i {
  font-size: 14px;
  color: var(--rq-orange);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.rq-spec__i b {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rq-ink);
  line-height: 1.35;
}
.rq-spec__i small {
  display: block;
  font-size: 0.79rem;
  line-height: 1.45;
  color: var(--rq-mute);
  margin-top: 2px;
}

/* =========================================================================
   DESTAQUE DE PALAVRA
   Duas intensidades. `rq-hl` pinta de laranja (usar no miolo do título),
   `rq-underline` risca por baixo com um traço que não briga com a leitura.
   Regra de ouro: no máximo três palavras por título, senão nada se destaca.
   ========================================================================= */
.rq-hl {
  color: var(--rq-orange);
}
.rq-section--ink .rq-hl {
  color: #ff9256;
}
.rq-underline {
  position: relative;
  white-space: nowrap;
}
.rq-underline::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0.06em;
  height: 0.3em;
  background: rgba(226, 84, 18, 0.18);
  border-radius: 2px;
  z-index: -1;
}
/* o subtítulo destaca com peso, não com cor: senão compete com o título */
.rq-lead b,
.rq-lead strong {
  color: var(--rq-ink);
  font-weight: 700;
}
.rq-section--ink .rq-lead b,
.rq-section--ink .rq-lead strong {
  color: #fff;
}

@media (max-width: 991.98px) {
  .rq-spec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .rq-spec,
  .rq-spec--3,
  .rq-spec--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ── acessibilidade: alvos de toque ──────────────────────────────────────── */
@media (max-width: 767.98px) {
  .rq-link,
  .rq-faq summary,
  .rq-index__row a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .rq-faq summary {
    justify-content: space-between;
  }
  .rq-eyebrow,
  .rq-mod__tag,
  .rq-tag {
    font-size: 12px;
  }
}

/* alvo de toque: o mínimo recomendado é 44px e o botão estava em 43 */
@media (max-width: 767.98px) {
  .rq-btn {
    min-height: 46px;
  }
  .rq-btn--lg {
    min-height: 52px;
  }
}

/* =========================================================================
   HERÓI INTERNO — legibilidade e paleta
   ---------------------------------------------------------------------------
   Mesma origem do bug do menu: `.inner-hero` tem fundo claro
   (#f2f2f5 → #fafafa) mas `.inner-hero__description` foi escrito em branco,
   sobra de quando o herói era escuro. Texto branco sobre quase-branco.

   Aqui o parágrafo é escuro por padrão e volta a ser claro só dentro de
   `.inner-hero--dark`, que é o único caso em que o fundo é mesmo escuro
   (usado hoje só no blog.html).
   ========================================================================= */
.inner-hero__description {
  color: #4a4f5c;
}
.inner-hero--dark .inner-hero__description,
.inner-hero__description--light {
  color: rgba(255, 255, 255, 0.78);
}
.inner-hero--dark .inner-hero__title,
.inner-hero--dark .inner-hero__subtitle {
  color: #fff;
}
/* o "olho" acima do título também vinha claro demais no fundo claro */
.inner-hero:not(.inner-hero--dark) .inner-hero__eyebrow,
.inner-hero:not(.inner-hero--dark) .inner-hero__badge {
  color: #e25412;
}

/* =========================================================================
   ROXO → LARANJA
   O template veio com #6e00e6 como cor de destaque. A marca é laranja
   (#e25412): a tabela de comparação, os botões e as faixas de seção passam a
   usar a paleta da casa. Fica aqui, e não espalhado nos style= das páginas,
   para a próxima tabela nascer certa.
   ========================================================================= */
.btn-purple-heart,
.mobile-menu-footer__cta {
  background-color: #e25412 !important;
  border-color: #e25412 !important;
  color: #fff !important;
}
.btn-purple-heart:hover,
.mobile-menu-footer__cta:hover {
  background-color: #c4440a !important;
  border-color: #c4440a !important;
  color: #fff !important;
}

/* =========================================================================
   CTA FINAL — redesenho
   ---------------------------------------------------------------------------
   O card já era navy, mas dois `__glow` radiais sobrepostos (roxo + laranja)
   se misturavam num marrom-arroxeado encardido, e o texto de apoio ficava em
   cinza de baixo contraste sobre ele.

   Agora: navy limpo, UM brilho laranja no canto, malha discreta ao fundo e
   um filete laranja no topo. Os itens de prova viram pílulas, que dão ritmo
   horizontal e quebram a pilha centralizada genérica.

   Vale para as duas variantes — `.rq-cta` (páginas novas) e
   `.final-cta__card` (páginas do template) — para o site inteiro fechar igual.
   ========================================================================= */
.rq-cta,
.final-cta__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #12121f !important;
  border-radius: 22px;
  padding: 58px 48px 46px !important;
  text-align: center;
  box-shadow: 0 28px 70px -28px rgba(18, 18, 31, 0.55);
}
/* filete da marca no topo */
.rq-cta::before,
.final-cta__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e25412 32%, #ff8c42 50%, #e25412 68%, transparent);
  z-index: 2;
  border-radius: 0;
  width: auto;
  pointer-events: none;
}
/* malha + brilho laranja único, no canto superior direito */
.rq-cta::after,
.final-cta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(ellipse 55% 70% at 88% 4%, rgba(226, 84, 18, 0.34), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
  pointer-events: none;
  border-radius: 0;
  width: auto;
  height: auto;
  opacity: 1;
  filter: none;
}
/* os brilhos antigos saem de cena */
.final-cta__glow {
  display: none !important;
}

.final-cta {
  background: var(--rq-sand);
  padding: 64px 0 76px;
}

/* ── tipografia ── */
.rq-cta__h,
.final-cta__title {
  position: relative;
  font-size: clamp(1.75rem, 3.9vw, 2.6rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: #fff !important;
  margin: 0 auto 16px !important;
  max-width: 20ch;
}
.rq-cta__p,
.final-cta__subtitle {
  position: relative;
  font-size: 1.03rem !important;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74) !important;
  max-width: 52ch;
  margin: 0 auto 26px !important;
}
.final-cta__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px !important;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ff9256 !important;
  background: rgba(226, 84, 18, 0.14) !important;
  border: 1px solid rgba(226, 84, 18, 0.32) !important;
  padding: 7px 15px !important;
  border-radius: 999px;
  margin-bottom: 20px !important;
}

/* ── provas viram pílulas ── */
.final-cta__checks {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px !important;
  list-style: none;
  padding: 0;
  margin: 0 auto 30px !important;
  max-width: 760px;
}
.final-cta__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86) !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 15px;
  margin: 0 !important;
}
.final-cta__checks li i {
  color: #34c77b !important;
  font-size: 12px;
}

/* ── botões ── */
.final-cta__actions,
.rq-cta .rq-btns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.final-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #e25412 !important;
  color: #fff !important;
  border: 1px solid #e25412 !important;
  padding: 16px 32px !important;
  border-radius: 11px !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 26px -10px rgba(226, 84, 18, 0.8);
  transition: transform 0.15s ease, background 0.15s ease;
}
.final-cta__btn-primary:hover {
  background: #c4440a !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.final-cta__btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  padding: 16px 30px !important;
  border-radius: 11px !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.final-cta__btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.final-cta__btn-whatsapp i {
  color: #34c77b;
  font-size: 16px;
}

/* ── rodapé do card ── */
.rq-cta__fine,
.final-cta__note {
  position: relative;
  margin: 24px auto 0 !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 640px;
  font-size: 0.84rem !important;
  color: rgba(255, 255, 255, 0.58) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final-cta__note i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

@media (max-width: 767.98px) {
  .rq-cta,
  .final-cta__card {
    padding: 40px 22px 34px !important;
    border-radius: 18px;
  }
  .final-cta {
    padding: 44px 0 52px;
  }
  .final-cta__checks {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta__checks li {
    justify-content: flex-start;
  }
  .final-cta__actions,
  .rq-cta .rq-btns {
    flex-direction: column;
  }
  .final-cta__btn-primary,
  .final-cta__btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .rq-cta__fine,
  .final-cta__note {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* o botão fantasma nasceu para fundo claro: dentro do cartão escuro da CTA
   ele ficava navy sobre navy, ou seja, invisível */
.rq-cta .rq-btn--ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}
.rq-cta .rq-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}
.rq-cta .rq-btn--ghost .fa-whatsapp {
  color: #34c77b;
}

/* =========================================================================
   MAPA DO SITE
   Página de navegação por seção. Serve ao visitante que se perdeu e também
   ao rastreador: junta num lugar só os links internos que hoje moram
   espalhados no rodapé e no menu.
   ========================================================================= */
.rq-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 34px;
}
.rq-map__col h2 {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rq-ink);
  margin: 0 0 4px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--rq-orange);
}
.rq-map__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rq-map__col li {
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-map__col li:last-child {
  border-bottom: 0;
}
.rq-map__col a {
  display: block;
  padding: 12px 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--rq-ink);
  text-decoration: none;
  line-height: 1.4;
}
.rq-map__col a:hover {
  color: var(--rq-orange);
  text-decoration: none;
}
.rq-map__col a small {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--rq-mute);
  margin-top: 2px;
}
@media (max-width: 991.98px) {
  .rq-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .rq-map {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .rq-map__col a {
    min-height: 44px;
  }
}

/* o cabeçalho é fixo: sem isto, o título da seção fica escondido atrás dele
   quando se chega por âncora vinda de outra página */
.rq-section[id],
.rq-hero[id] {
  scroll-margin-top: 92px;
}

/* =========================================================================
   PREÇOS — seletor de ciclo e cartões
   ========================================================================= */
.rq-cycle {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--rq-line);
  border-radius: 12px;
  box-shadow: var(--rq-shadow-sm);
}
.rq-cycle button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 18px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rq-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}
.rq-cycle button:hover {
  color: var(--rq-ink);
}
.rq-cycle button[aria-selected="true"] {
  background: var(--rq-ink);
  color: #fff;
}
.rq-cycle__save {
  display: inline-block;
  margin-left: 6px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(31, 157, 91, 0.12);
  color: var(--rq-green);
}
.rq-cycle button[aria-selected="true"] .rq-cycle__save {
  background: rgba(255, 255, 255, 0.16);
  color: #7ee2a8;
}

/* preço antigo riscado, quando há desconto */
.rq-plan__was {
  font-size: 0.9rem;
  color: var(--rq-mute);
  text-decoration: line-through;
  margin-right: 7px;
}
.rq-plan__limits {
  display: grid;
  gap: 7px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--rq-line-soft);
  border-bottom: 1px solid var(--rq-line-soft);
}
.rq-plan__limit {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--rq-body);
}
.rq-plan__limit b {
  font-weight: 700;
  color: var(--rq-ink);
  white-space: nowrap;
}

/* cartão Enterprise, largura cheia */
.rq-ent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background: var(--rq-ink);
  border-radius: var(--rq-r);
  padding: 30px 34px;
  margin-top: 22px;
}
.rq-ent h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.rq-ent p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 62ch;
}
@media (max-width: 767.98px) {
  .rq-ent {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
    text-align: left;
  }
  .rq-cycle {
    width: 100%;
    justify-content: stretch;
  }
  .rq-cycle button {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.82rem;
  }
  .rq-cycle__save {
    display: block;
    margin: 3px 0 0;
  }
}

/* =========================================================================
   TABELA DE CUSTO — a página que faz a conta
   Linha da casa destacada e caixa de metodologia. Quem cita um número quer
   saber de onde ele veio; sem isso a tabela é só mais uma opinião.
   ========================================================================= */
.rq-cmp tbody tr.rq-nos td {
  background: rgba(226, 84, 18, 0.07) !important;
  font-weight: 600;
  color: var(--rq-ink);
}
.rq-cmp tbody tr.rq-nos td:first-child::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  color: var(--rq-orange);
  margin-right: 7px;
  vertical-align: 1px;
}
.rq-cmp .rq-win {
  color: var(--rq-green);
  font-weight: 700;
}
.rq-cmp .rq-lose {
  color: var(--rq-red);
}
.rq-fonte {
  background: #fbfaf9;
  border: 1px solid var(--rq-line);
  border-left: 3px solid var(--rq-ink);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 24px 0;
}
.rq-fonte h3 {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rq-ink);
  margin: 0 0 10px;
}
.rq-fonte p,
.rq-fonte li {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--rq-body);
  margin: 0 0 7px;
}
.rq-fonte ul {
  margin: 0;
  padding-left: 18px;
}
.rq-fonte li::marker {
  color: var(--rq-orange);
}
.rq-fonte a {
  color: var(--rq-orange);
}
