/* Static site pages (legal + how-it-works) - v18 language, full-bleed alternating sections */
:root {
  --black: #080808;
  --black2: #10100f;
  --paper: #f5f0e7;
  --warm: #e7ded1;
  --muted: #9c958b;
  --gold: #f1aa32;
  --brown: #ae6a13;
  --line: rgba(245, 240, 231, 0.15);
  --line-ink: rgba(21, 20, 18, 0.16);
  --ink: #151412;
  --display: "Space Grotesk", sans-serif;
  --sans: "DM Sans", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

::selection {
  background: var(--gold);
  color: #111;
}

.static-main {
  background: var(--paper);
}

.label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #77716a;
}

/* HERO - light, full bleed, same typographic language as the home manifesto */
.static-hero {
  background: var(--paper);
  color: var(--ink);
  padding: 158px 7vw 90px;
}

.static-hero .kicker {
  margin: 0 0 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #77716a;
}

.static-hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(46px, 7.2vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 600;
  color: var(--ink);
}

.static-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
}

.static-hero .lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #615b53;
  font-size: 16px;
  line-height: 1.75;
}

.static-hero .meta {
  margin: 16px 0 0;
  color: #8a8479;
  font-size: 12px;
}

.static-hero .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.static-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 19px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}

.static-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.static-btn.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(21, 20, 18, 0.28);
  font-weight: 600;
}

.static-btn.alt:hover {
  border-color: rgba(21, 20, 18, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.static-btn.on-dark {
  background: var(--paper);
  color: #111;
}

.static-btn.on-dark:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* LIGHT ROWS - stacked numbered content, full bleed */
.static-rows {
  background: var(--paper);
  padding: 10px 7vw 20px;
}

.static-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6vw;
  padding: 46px 0;
  border-top: 1px solid var(--line-ink);
}

.static-row .row-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--brown);
}

.static-row h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
}

.static-row p {
  margin: 0 0 12px;
  max-width: 620px;
  color: #615b53;
  font-size: 15px;
  line-height: 1.75;
}

.static-row p:last-child {
  margin-bottom: 0;
}

.static-row ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.static-row li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line-ink);
  color: #4c463f;
  font-size: 14px;
  line-height: 1.65;
}

.static-row li:last-child {
  border-bottom: 0;
}

.static-row li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brown);
}

/* DARK BAND - full-bleed emphasis section */
.static-band {
  background: var(--black2);
  color: var(--paper);
  padding: 78px 7vw;
}

.static-band .row-num {
  color: var(--gold);
}

.static-band h2 {
  color: var(--paper);
}

.static-band p {
  color: #b6afa5;
}

.static-band li {
  color: #c7c0b6;
  border-bottom-color: var(--line);
}

.static-band li:before {
  color: var(--gold);
}

/* FINAL CTA - full bleed, radial gold glow, same language as landing .final */
.static-cta {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
  padding: 110px 7vw 120px;
  text-align: center;
}

.static-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(241, 170, 50, 0.14), transparent 42%);
  pointer-events: none;
}

.static-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.static-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.static-cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.static-cta p {
  margin: 20px auto 30px;
  max-width: 520px;
  color: #b8b1a7;
  font-size: 15px;
  line-height: 1.7;
}

.static-cta a.static-btn {
  display: inline-flex;
}

/* HOW IT WORKS - resumo (light) */
.how-summary {
  background: var(--paper);
  padding: 20px 7vw 90px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 9vw;
}

.how-summary-copy h2 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.how-summary-copy h2 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
}

.how-summary-copy p {
  max-width: 460px;
  margin: 22px 0 0;
  color: #615b53;
  font-size: 15px;
  line-height: 1.75;
}

.how-summary-box {
  align-self: end;
  border-top: 1px solid var(--line-ink);
  padding-top: 24px;
}

.how-summary-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-summary-box li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: #4c463f;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid var(--line-ink);
}

.how-summary-box li:last-child {
  border-bottom: 0;
}

.how-summary-box li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brown);
}

/* HOW IT WORKS - etapas (dark band, flow-row language) */
.how-steps-band {
  background: var(--black2);
  color: var(--paper);
  padding: 90px 7vw 100px;
}

.how-steps-band .band-head {
  max-width: 820px;
  margin-bottom: 70px;
}

.how-steps-band .band-head h2 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.how-steps-band .band-head h2 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.how-steps-band .band-head p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #b6afa5;
  font-size: 15px;
  line-height: 1.7;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.how-step {
  position: relative;
  min-height: 220px;
  padding: 26px 24px 28px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background 0.3s ease;
}

.how-step:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.how-step:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.025);
}

.how-step:hover:after {
  width: 100%;
}

.how-step:last-child {
  border-right: 0;
}

.how-step:not(:first-child) {
  padding-left: 24px;
}

.how-step:not(:first-child):after {
  left: 24px;
  width: 0;
}

.how-step:not(:first-child):hover:after {
  width: calc(100% - 24px);
}

.how-step .num {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--gold);
}

.how-step h3 {
  margin: 12px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.how-step p {
  margin: 0;
  color: #a9a297;
  font-size: 13px;
  line-height: 1.7;
}

/* HOW IT WORKS - por que usar (light, 3 col) */
.how-highlights-section {
  background: var(--paper);
  padding: 90px 7vw 100px;
}

.how-highlights-section .band-head {
  max-width: 780px;
  margin-bottom: 60px;
}

.how-highlights-section .band-head h2 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.how-highlights-section .band-head h2 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
}

.how-highlights-section .band-head p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #615b53;
  font-size: 15px;
  line-height: 1.7;
}

.how-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-ink);
}

.how-highlight {
  padding: 26px 24px 0 0;
  border-right: 1px solid var(--line-ink);
}

.how-highlight:last-child {
  border-right: 0;
}

.how-highlight:not(:first-child) {
  padding-left: 24px;
}

.how-highlight h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.how-highlight p {
  margin: 0;
  color: #615b53;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .how-summary {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .static-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .how-step:nth-child(odd) {
    padding-left: 0;
    padding-right: 24px;
  }

  .how-highlights {
    grid-template-columns: 1fr;
  }

  .how-highlight {
    border-right: 0;
    border-bottom: 1px solid var(--line-ink);
    padding: 24px 0;
  }

  .how-highlight:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .static-hero {
    padding: 128px 20px 60px;
  }

  .static-rows,
  .static-band,
  .static-cta,
  .how-summary,
  .how-steps-band,
  .how-highlights-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .static-cta {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

/* Force readable chrome on paper pages (wins over shared site-chrome defaults) */
body.chrome-on-light .navbar {
  background: #f5f0e7 !important;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(21, 20, 18, 0.1);
  color: #151412;
  box-shadow: 0 1px 0 rgba(21, 20, 18, 0.04);
}

body.chrome-on-light .navbar .brand,
body.chrome-on-light .navbar .brand span {
  color: #151412 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #151412;
}

body.chrome-on-light .navbar .nav {
  color: #3f3a34 !important;
}

body.chrome-on-light .navbar .nav a {
  color: #3f3a34 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #3f3a34;
  opacity: 1;
}

body.chrome-on-light .navbar .nav a:after {
  background: #ae6a13 !important;
}

body.chrome-on-light .navbar .nav-cta {
  background: #151412 !important;
  color: #f5f0e7 !important;
  -webkit-text-fill-color: #f5f0e7;
  text-shadow: none !important;
}

body.chrome-on-light .navbar .brand img {
  filter: none;
}

/* Support page */
.support-ticker {
  overflow: hidden;
  background: var(--gold);
  color: #10100f;
  padding: 13px 0;
}

.support-ticker-track {
  display: flex;
  width: max-content;
  gap: 52px;
  animation: support-marquee 28s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.support-ticker-track span {
  display: flex;
  gap: 52px;
  align-items: center;
}

.support-ticker-track em {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

@keyframes support-marquee {
  to {
    transform: translateX(-50%);
  }
}

.support-channels {
  background: var(--black2);
  color: var(--paper);
  padding: 90px 7vw 100px;
}

.support-channels .band-head {
  max-width: 780px;
  margin-bottom: 56px;
}

.support-channels .band-head .label {
  color: #c9c2b8;
}

.support-channels .band-head h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.support-channels .band-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.support-channels .band-head p {
  margin: 16px 0 0;
  max-width: 540px;
  color: #b6afa5;
  font-size: 15px;
  line-height: 1.7;
}

.support-channel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.support-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
  color: inherit;
  transition: transform 0.3s ease, background 0.3s ease;
}

.support-channel:last-child {
  border-right: 0;
}

.support-channel:not(:first-child) {
  padding-left: 24px;
}

.support-channel:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.support-channel:not(:first-child):after {
  left: 24px;
}

.support-channel:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.025);
}

.support-channel:hover:after {
  width: 100%;
}

.support-channel:not(:first-child):hover:after {
  width: calc(100% - 24px);
}

.support-channel .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
}

.support-channel h3 {
  margin: 18px 0 10px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.support-channel p {
  margin: 0 0 22px;
  color: #a9a297;
  font-size: 14px;
  line-height: 1.7;
}

.support-channel .channel-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid rgba(245, 240, 231, 0.35);
  align-self: flex-start;
  padding-bottom: 4px;
}

.support-faq {
  background: var(--paper);
  padding: 90px 7vw 100px;
}

.support-faq .band-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.support-faq .band-head h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.support-faq .band-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
}

.support-faq .band-head p {
  margin: 16px 0 0;
  color: #615b53;
  font-size: 15px;
  line-height: 1.7;
}

.support-faq-list {
  border-top: 1px solid var(--line-ink);
}

.support-faq-item {
  border-bottom: 1px solid var(--line-ink);
}

.support-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.support-faq-item summary::-webkit-details-marker {
  display: none;
}

.support-faq-item summary .chev {
  flex-shrink: 0;
  color: var(--brown);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.support-faq-item[open] summary .chev {
  transform: rotate(180deg);
}

.support-faq-item .answer {
  padding: 0 0 22px;
  max-width: 720px;
  color: #615b53;
  font-size: 15px;
  line-height: 1.75;
}

.support-sla {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line-ink);
}

.support-sla div {
  padding: 18px 20px 0 0;
  border-right: 1px solid var(--line-ink);
}

.support-sla div:last-child {
  border-right: 0;
}

.support-sla strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.support-sla span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8479;
}

@media (max-width: 980px) {
  .support-channel-row,
  .support-sla {
    grid-template-columns: 1fr;
  }

  .support-channel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    min-height: 0;
  }

  .support-channel:not(:first-child) {
    padding-left: 0;
  }

  .support-sla div {
    border-right: 0;
    border-bottom: 1px solid var(--line-ink);
    padding: 18px 0;
  }

  .support-channels,
  .support-faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-ticker-track {
    animation: none;
  }
}
