/* ==========================================================================
   UNIMONEY — Site Premium
   Neo-brutalist design system: hard 3px rules, offset shadows, Space Grotesk.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --yellow: #FDDD00;      /* amarelo oficial da marca Unimoney */
  --yellow-soft: #FFF8CC;  /* tom claro derivado, para hover de cards */
  --ink: #111;
  --cream: #F5F3EC;
  --white: #fff;
  --gold: #8a7500;

  /* Alphas on ink */
  --ink-80: rgba(17, 17, 17, .8);
  --ink-75: rgba(17, 17, 17, .75);
  --ink-70: rgba(17, 17, 17, .7);
  --ink-65: rgba(17, 17, 17, .65);
  --ink-60: rgba(17, 17, 17, .6);
  --ink-55: rgba(17, 17, 17, .55);
  --ink-50: rgba(17, 17, 17, .5);

  /* Alphas on cream (used on dark surfaces) */
  --cream-72: rgba(245, 243, 236, .72);
  --cream-70: rgba(245, 243, 236, .7);
  --cream-60: rgba(245, 243, 236, .6);
  --cream-38: rgba(245, 243, 236, .38);
  --cream-35: rgba(245, 243, 236, .35);
  --cream-20: rgba(245, 243, 236, .2);

  /* Structure */
  --rule: 3px;
  --border: 3px solid var(--ink);
  --border-thin: 2px solid var(--ink);
  --shell: 1400px;
  --shell-narrow: 900px;
  --pad: 32px;
  --header-h: 74px;

  --font: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease);
}

button { font: inherit; }

strong { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 22px;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.display {
  font-weight: 700;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-wrap: balance;
}
.display--xl { font-size: clamp(46px, 6.4vw, 96px); }
.display--lg { font-size: clamp(42px, 5.8vw, 88px); }
.display--sm { font-size: clamp(38px, 5vw, 74px); }
.display--cc { font-size: clamp(40px, 5.4vw, 80px); }

.h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-wrap: balance;
}
.h2--md { font-size: clamp(32px, 4vw, 58px); }
.h2--sm { font-size: clamp(30px, 3.8vw, 54px); line-height: 1.02; }
.h2--xs { font-size: clamp(28px, 3.6vw, 48px); }
.h2--mini { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; }

.h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.h3--lg { font-size: 30px; }
.h3--md { font-size: 26px; text-transform: uppercase; }
.h3--step { font-size: 21px; text-transform: uppercase; }
.h3--card { font-size: 24px; text-transform: uppercase; }

.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-75);
  max-width: 560px;
  font-weight: 500;
  text-wrap: pretty;
}
.lede--wide { max-width: 540px; font-size: clamp(18px, 1.6vw, 22px); }

.body-text {
  color: var(--ink-70);
  line-height: 1.6;
  font-size: 15.5px;
  text-wrap: pretty;
}
.body-text--lg { font-size: 17px; }
.body-text--xl { font-size: 16.5px; line-height: 1.65; }
.body-text--sm { font-size: 15px; line-height: 1.55; color: var(--ink-65); }

.accent { color: var(--gold); }
.muted { color: var(--ink-60); font-size: 15px; font-weight: 500; }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.section {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 100px var(--pad);
}
.section--narrow { max-width: var(--shell-narrow); }
.section--flush-top { padding-top: 0; }
.section--pull { padding-block: 80px; }
.section--lead { padding: 100px var(--pad) 50px; }
.section--tail { padding: 50px var(--pad) 110px; }
.section--tail-flush { padding: 0 var(--pad) 110px; }
.section--tail-flush-100 { padding: 0 var(--pad) 100px; }

.stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stack--sm { gap: 28px; }
.stack--md { gap: 36px; }
.stack--lg { gap: 44px; }

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}
.split__col {
  flex: 1 1 420px;
  min-width: 300px;
}
.split__col--text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section-head .h2 { max-width: 700px; }
.section-head p { max-width: 300px; }

/* Hairline grid: the ink background shows through the 3px gaps as rules. */
.grid-lines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--rule);
  background: var(--ink);
  border: var(--border);
}
.grid-lines--wide { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-lines--duo { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-lines--steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-lines--checks { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid-lines--quad { grid-template-columns: 1fr 1fr; align-self: start; }

/* Framed media: hard border with an offset solid shadow. */
.frame {
  border: var(--border);
  background: var(--white);
}
.frame--shadow-tl { box-shadow: -14px -14px 0 var(--ink); border-bottom: none; }
.frame--shadow-bl { box-shadow: -14px 14px 0 var(--ink); }
.frame--shadow-br-yellow { box-shadow: 14px 14px 0 var(--yellow); }

/* --------------------------------------------------------------------------
   5. Buttons, pills & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 19px 34px;
  border: var(--border-thin);
  text-align: center;
  cursor: pointer;
}
.btn--dark { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn--dark:hover { background: var(--white); color: var(--ink); }

.btn--light { background: var(--cream); color: var(--ink); border-color: var(--ink); }
.btn--light:hover { background: var(--white); color: var(--ink); }

.btn--yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn--yellow:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* Dark button that flips to yellow rather than white (pricing / step cards). */
.btn--dark-flip { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn--dark-flip:hover { background: var(--yellow); color: var(--ink); }

.btn--sm { padding: 13px 22px; font-size: 13px; }
.btn--md { padding: 16px 28px; font-size: 13.5px; }
.btn--lg { padding: 22px 40px; }
.btn--block { display: block; }
.btn--start { align-self: flex-start; }

.eyebrow {
  align-self: flex-start;
  background: var(--ink);
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px;
}

.tag {
  align-self: flex-start;
  background: var(--yellow);
  border: var(--border-thin);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
}
.tag--invert { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.chip {
  border: var(--border-thin);
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 700;
}
.chip--yellow { background: var(--yellow); }
.chip--white { background: var(--white); }

.link-arrow {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: var(--rule) solid var(--yellow);
  align-self: flex-start;
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--gold); }
.link-arrow--on-dark { color: var(--yellow); }
.link-arrow--on-dark:hover { color: var(--white); }

.link-inline {
  font-weight: 700;
  border-bottom: var(--border-thin);
  border-bottom-color: var(--yellow);
}
.link-inline:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
  border-bottom: var(--border);
}
.site-header__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0 var(--pad);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex-shrink: 0;
}
/* Official Unimoney lockup: mark + wordmark, both scalable SVG. */
.brand__mark {
  height: 34px;
  width: auto;
  display: block;
}
.brand__word {
  height: 19px;
  width: auto;
  display: block;
}
.brand:hover { opacity: .78; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: flex-end;
}
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.primary-nav__list a { color: var(--ink); }
.primary-nav__list a:hover { color: var(--white); }
.primary-nav__list a[aria-current="page"] {
  border-bottom: var(--rule) solid var(--ink);
  padding-bottom: 2px;
}
.primary-nav__list a[aria-current="page"]:hover { border-bottom-color: var(--white); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 40px;
  background: var(--ink);
  border: var(--border-thin);
  border-color: var(--ink);
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--yellow);
    border-bottom: var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--pad) 24px;
    display: none;
  }
  .primary-nav.is-open { display: flex; }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 16px;
  }
  .primary-nav__list li + li { border-top: 2px solid rgba(17, 17, 17, .18); }
  .primary-nav__list a {
    display: block;
    padding: 16px 0;
  }
  .primary-nav__list a:hover { color: var(--gold); }
  .primary-nav__list a[aria-current="page"] {
    border-bottom: none;
    padding-bottom: 16px;
    color: var(--gold);
  }
  .primary-nav__cta { margin-top: 20px; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--yellow);
  border-bottom: var(--border);
}
.hero__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 90px var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}
.hero__inner--bottom {
  align-items: flex-end;
  padding: 90px var(--pad) 0;
  gap: 48px;
}
.hero__inner--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px var(--pad);
  gap: 26px;
}
.hero__copy {
  flex: 1 1 500px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.hero__copy--tall { flex-basis: 520px; gap: 28px; padding-bottom: 80px; }
.hero__copy--narrow { flex-basis: 480px; }
.hero__inner--center .eyebrow,
.hero__inner--center .lede,
.hero__inner--center .btn { align-self: center; }
.hero__inner--center .display { max-width: 1000px; }
.hero__inner--center .lede { max-width: 600px; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__media { flex: 1 1 360px; min-width: 300px; display: flex; justify-content: center; }
.hero__media img,
.hero__media video { width: min(400px, 100%); }
.hero__media--wide img { width: min(460px, 100%); }
.hero__media--card { flex-basis: 400px; }

/* --------------------------------------------------------------------------
   8. Marquee (press strip)
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-bottom: var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  white-space: nowrap;
}
.marquee__group a { color: var(--cream); }
.marquee__group a:hover { color: var(--yellow); }
.marquee__dot { color: var(--yellow); }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color .3s var(--ease);
}
.card--pad-lg { padding: 40px; gap: 14px; }
.card--pad-xl { padding: 44px; gap: 16px; }
.card--pad-hero { padding: 48px; gap: 18px; }
.card--hover:hover { background: var(--yellow-soft); }
.card--yellow { background: var(--yellow); }
.card--dark { background: var(--ink); color: var(--cream); }
.card--dark .body-text { color: var(--cream-70); }
.card--flush { padding: 0; gap: 0; }

.card__num { font-weight: 700; font-size: 14px; color: var(--gold); }
.card--yellow .card__num { color: var(--ink); }

.card__media {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: var(--border);
}
.card__media--short { height: 260px; }
.card__media--offset { object-position: center 30%; }
.card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-num {
  background: var(--yellow);
  border: var(--border-thin);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.check {
  background: var(--white);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.check__icon {
  background: var(--yellow);
  border: var(--border-thin);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.stat {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat--yellow { background: var(--yellow); }
.stat__value {
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.stat__label { color: var(--ink-70); font-size: 14px; font-weight: 500; }

.price-badge {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--ink);
  color: var(--yellow);
  padding: 36px 44px;
  border: var(--border);
}
.price-badge__value {
  font-weight: 700;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -.03em;
}
.price-badge__label { color: var(--cream-70); font-size: 15px; }

.points-figure {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.points-figure__value {
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -.03em;
  background: var(--yellow);
  padding: 0 10px;
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   10. Panels (PIX simulator, pricing)
   -------------------------------------------------------------------------- */
.panel {
  background: var(--white);
  border: var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(380px, 100%);
}
.panel--pricing { width: 100%; gap: 22px; }

.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.panel__eyebrow {
  color: var(--ink-60);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.panel__badge {
  background: var(--yellow);
  border: var(--border-thin);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.panel__row { display: flex; flex-direction: column; gap: 4px; }
.panel__label { color: var(--ink-55); font-size: 13px; font-weight: 500; }
.panel__amount { font-weight: 700; font-size: 40px; letter-spacing: -.02em; }
.panel__amount--hl {
  background: var(--yellow);
  align-self: flex-start;
  padding: 0 8px;
}
.panel__divider { height: var(--rule); background: var(--ink); }
.panel__note { color: var(--ink-50); font-size: 12px; }

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-tag__value {
  font-weight: 700;
  font-size: clamp(60px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--yellow);
  padding: 0 12px;
}
.price-tag__period { color: var(--ink-60); font-size: 18px; font-weight: 600; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  font-size: 13.5px;
  color: var(--ink-80);
  font-weight: 500;
}
.feature-list li::before { content: "✓ "; font-weight: 700; }

/* --------------------------------------------------------------------------
   10b. App download block — QR + store badges
   The official badges are black artwork built for light surfaces, so this
   block belongs on cream/yellow/white only — never on the ink footer.
   -------------------------------------------------------------------------- */
.app-get {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.app-get__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.app-get__qr img {
  width: 118px;
  height: 118px;
  background: var(--white);
  border: var(--border);
  padding: 9px;
}
.app-get__qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.app-get__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-get__badges a { display: block; transition: opacity .2s var(--ease); }
.app-get__badges a:hover { opacity: .75; }
.app-get__badges img {
  height: 52px;
  width: auto;
  display: block;
}

/* A QR code is useless on the device that displays it — drop it on phones and
   let the badges deep-link straight into the stores instead. */
@media (max-width: 768px) {
  .app-get__qr { display: none; }
  .app-get__badges { flex-direction: row; flex-wrap: wrap; }
  .app-get__badges img { height: 46px; }
}

/* --------------------------------------------------------------------------
   11. Step banners (aderir)
   -------------------------------------------------------------------------- */
.step-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.step-banner--boxed {
  border: var(--border);
  background: var(--white);
  padding: 36px 40px;
}
.step-banner__cta { margin-left: auto; }
@media (max-width: 720px) {
  .step-banner__cta { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq { background: var(--ink); border: var(--border); display: flex; flex-direction: column; gap: var(--rule); }

.faq__item {
  background: var(--white);
  padding: 22px 26px;
}
.faq__item--tight { padding: 20px 24px; }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}
.faq__item--tight .faq__q { font-size: 16.5px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold); }

.faq__icon {
  background: var(--yellow);
  border: var(--border-thin);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--ink);
}
.faq__item--tight .faq__icon { width: 26px; height: 26px; font-size: 16px; }
.faq__icon::before { content: "+"; line-height: 1; }
.faq__item[open] .faq__icon::before { content: "–"; }

.faq__a {
  margin: 14px 0 0;
  color: var(--ink-70);
  line-height: 1.65;
  font-size: 15.5px;
}
.faq__item--tight .faq__a { margin-top: 12px; font-size: 15px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   13. CTA bands
   -------------------------------------------------------------------------- */
.cta-band__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 90px var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band__inner .h2 { max-width: 720px; }

.cta-band--yellow { background: var(--yellow); border-top: var(--border); }
.cta-band--dark { background: var(--ink); color: var(--cream); }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: var(--border);
}

.site-footer__top {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 80px var(--pad) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__wordmark {
  height: clamp(44px, 7.5vw, 116px);
  width: auto;
  display: block;
}
.site-footer__top .btn { margin-bottom: 12px; }

.site-footer__body {
  max-width: var(--shell);
  margin: 40px auto 0;
  padding: 0 var(--pad);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--cream-20);
  border-block: 2px solid var(--cream-20);
}
.footer-col {
  background: var(--ink);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
}
.footer-col--contact { gap: 14px; }
.footer-col__title {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-col--contact .footer-col__title { margin-bottom: 0; }
.footer-col a { color: var(--cream-72); }
.footer-col a:hover { color: var(--yellow); }

/* Reabrir o banner de consentimento. É um botão, não um link, porque não
   navega para lado nenhum — mas alinha com os links à volta. */
.footer-col__btn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13.5px;
  color: var(--cream-72);
  text-align: left;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.footer-col__btn:hover { color: var(--yellow); }

.footer-phone { font-weight: 700; font-size: 28px; letter-spacing: -.01em; }
.footer-hours { color: var(--cream-60); font-size: 14px; line-height: 1.6; }
.footer-hours a { color: var(--cream); }
.footer-hours a:hover { color: var(--yellow); }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.footer-social a {
  border: 2px solid var(--cream-35);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 9px 14px;
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); }

.site-footer__legal {
  padding: 26px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer__copy {
  color: var(--cream-60);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.site-footer__disclaimer {
  color: var(--cream-38);
  font-size: 11px;
  line-height: 1.7;
  max-width: 760px;
}

/* --------------------------------------------------------------------------
   14b. Banner de consentimento de cookies
   -------------------------------------------------------------------------- */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--cream);
  border-top: var(--border);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.consent.is-open { transform: none; }

.consent__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 24px var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}

.consent__copy { flex: 1 1 460px; min-width: 260px; }

.consent__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.consent__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 720px;
}
.consent__text a {
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}
.consent__text a:hover { color: var(--gold); }

/* Recusar e Aceitar partilham tamanho, tipografia e peso visual. O RGPD exige
   que recusar seja tao facil como aceitar — um "Recusar" discreto ao lado de
   um "Aceitar" destacado invalida o consentimento. */
.consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent__btn {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .08em;
  min-width: 106px;
}

@media (max-width: 560px) {
  .consent__inner { padding: 18px var(--pad); }
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1 1 auto; min-width: 0; }
}

/* --------------------------------------------------------------------------
   15. Motion
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fade-up { animation: fadeUp .9s var(--ease) both; }
.fade-up--d1 { animation-delay: .08s; }
.fade-up--d2 { animation-delay: .16s; }
.fade-up--d3 { animation-delay: .2s; }
.fade-up--d4 { animation-delay: .24s; }

/* Scroll reveal — JS adds .is-ready once observed, .is-visible on intersect. */
[data-rev].is-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease) var(--rev-delay, 0s),
              transform .9s var(--ease) var(--rev-delay, 0s);
}
[data-rev].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee__track { animation: none; }
  [data-rev].is-ready { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .split { gap: 40px; }
  .card__body { padding: 28px; }
  .site-footer__top { padding-top: 60px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }

  .section { padding: 64px var(--pad); }
  .section--lead { padding: 64px var(--pad) 36px; }
  .section--tail { padding: 36px var(--pad) 72px; }
  .section--tail-flush,
  .section--tail-flush-100 { padding: 0 var(--pad) 72px; }
  .section--pull { padding-block: 56px; }

  .hero__inner,
  .hero__inner--center { padding: 56px var(--pad); gap: 36px; }
  .hero__inner--bottom { padding: 56px var(--pad) 0; }
  .hero__copy--tall { padding-bottom: 48px; }

  .cta-band__inner { padding: 64px var(--pad); }

  .card--pad-hero,
  .card--pad-xl,
  .card--pad-lg { padding: 28px; }

  .panel { padding: 28px; }
  .feature-list { grid-template-columns: 1fr; }
  .price-badge { padding: 28px 32px; }

  .grid-lines--quad { grid-template-columns: 1fr; }

  .btn { padding: 16px 26px; }
  .btn--lg { padding: 18px 30px; }

  .marquee__group { gap: 32px; padding-right: 32px; }
  .marquee__track { font-size: 15px; }

  .footer-col { padding: 28px 22px; }
  .site-footer__top { padding: 48px var(--pad) 0; }
}
