/* Landings por segmento — complementa home.css */

.mkt-seg-page .rx-nav.is-scrolled {
  background: rgba(20, 16, 13, .92);
  backdrop-filter: blur(12px);
}

.mkt-hero {
  padding: 120px 0 72px;
  background: linear-gradient(180deg, var(--carvao) 0%, var(--grafite) 100%);
}

.mkt-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neutro);
  margin-bottom: 20px;
}

.mkt-crumb a { color: var(--neutro-2); }
.mkt-crumb a:hover { color: var(--laranja); }

.mkt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 18px;
}

.mkt-hero__sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--neutro-2);
  max-width: 760px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.mkt-hero__sub strong { color: var(--areia); }

.mkt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.mkt-proof {
  padding: 0 0 56px;
}

.mkt-proof__card {
  background: linear-gradient(135deg, var(--grafite) 0%, var(--grafite-2) 100%);
  border: 1px solid var(--grafite-3);
  border-left: 4px solid var(--laranja);
  border-radius: var(--radius);
  padding: 32px 36px;
  max-width: 820px;
}

.mkt-proof__card p {
  color: var(--neutro-2);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 12px;
}

.mkt-pain {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.mkt-pain li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--grafite);
  border: 1px solid var(--grafite-2);
  border-radius: var(--radius-sm);
  color: var(--neutro-2);
  line-height: 1.6;
}

.mkt-pain i {
  color: var(--laranja);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.mkt-feats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.mkt-feat {
  background: var(--grafite);
  border: 1px solid var(--grafite-2);
  border-radius: var(--radius);
  padding: 24px;
}

.mkt-feat__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 106, 26, .12);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.mkt-feat h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}

.mkt-feat p {
  color: var(--neutro-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.mkt-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mkt-related__link {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--grafite-3);
  background: var(--grafite);
  color: var(--areia);
  transition: border-color .15s, color .15s;
}

.mkt-related__link:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

/* Hub /segmentos */
.mkt-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.mkt-hub-card {
  display: block;
  padding: 22px 24px;
  background: var(--grafite);
  border: 1px solid var(--grafite-2);
  border-radius: var(--radius);
  transition: border-color .15s, transform .15s;
}

.mkt-hub-card:hover {
  border-color: var(--laranja);
  transform: translateY(-2px);
}

.mkt-hub-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 6px;
}

.mkt-hub-card p {
  color: var(--neutro);
  font-size: 13.5px;
  line-height: 1.5;
}

.mkt-hub-group {
  margin-bottom: 48px;
}

.mkt-hub-group h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 18px;
}

.mkt-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--grafite-2);
  border-radius: var(--radius);
  background: var(--grafite);
}

.mkt-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.mkt-compare th,
.mkt-compare td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14.5px;
  line-height: 1.55;
  border-bottom: 1px solid var(--grafite-2);
  vertical-align: top;
}

.mkt-compare thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--neutro);
  background: var(--carvao-2);
}

.mkt-compare thead th:nth-child(2) {
  color: var(--laranja);
}

.mkt-compare tbody th[scope="row"] {
  font-weight: 600;
  color: var(--areia);
  width: 28%;
}

.mkt-compare tbody td:first-of-type {
  color: var(--areia);
}

.mkt-compare tbody tr:last-child th,
.mkt-compare tbody tr:last-child td {
  border-bottom: none;
}

.mkt-compare__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--neutro);
  line-height: 1.6;
  max-width: 900px;
}

@media (max-width: 720px) {
  .mkt-hero { padding-top: 96px; }
  .rx-nav__links { display: none; }
}
