/* ============================================================
   EMOLDUREI · COLEÇÃO MAPAS — v4
   Direção: Bold premium · preto + branco + dourado
   Inspiração: highlight marker, layout fintech moderno
============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F6F4EE;
  --bg-dim: #EFEBE0;
  --ink: #0E0E0E;
  --ink-2: #2A2A2A;
  --ink-3: #6B6B6B;
  --rule: #E6E2D6;
  --rule-soft: #EFECDF;
  --gold: #D1A852;
  --gold-deep: #A07F33;
  --gold-soft: #E2C481;
  --gold-glow: #F0D898;
  --gold-tint: #F9EED2;

  --display: "Montserrat", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --sans: "Montserrat", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1280px;
  --pad-x: clamp(28px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}

/* ============================================================
   TIPOGRAFIA — Bold sans c/ highlight marker
============================================================ */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.br-desktop { display: inline; }
.br-mobile { display: none; }
@media (max-width: 720px) {
  .br-desktop { display: none; }
  .br-mobile { display: inline; }
}

.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}

/* The signature gold highlighter swipe */
.mark {
  background-image: linear-gradient(120deg, var(--gold-glow) 0%, var(--gold-glow) 100%);
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 86%;
  padding: 0 2px;
  font-weight: inherit;
}
.mark-thin {
  background-image: linear-gradient(120deg, var(--gold-glow) 0%, var(--gold-glow) 100%);
  background-repeat: no-repeat;
  background-size: 100% 14%;
  background-position: 0 96%;
  padding: 0 1px;
}

.lead {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: pretty;
}
.hero-copy .lead {
  font-size: clamp(16px, 1.25vw, 18px);
}
.lead strong { font-weight: 600; color: var(--ink); }
.lead .gold { color: var(--gold-deep); font-weight: 600; }

.body { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px dashed var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
}
.eyebrow-plain {
  border: none;
  padding: 0;
  color: var(--gold);
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================
   BOTÕES — pill com sombra dourada offset (signature)
============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .25s;
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
  letter-spacing: 0;
  isolation: isolate;
}
.btn:active { transform: translateY(1px); }

.btn-ink {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  z-index: -1;
  transform: translate(-5px, 5px);
  transition: transform .2s ease;
}
.btn-ink:hover::before { transform: translate(-7px, 7px); }
.btn-ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--bg); border-color: var(--gold-deep); }

.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   SECTION
============================================================ */
.section { padding: clamp(56px, 7vw, 100px) 0; position: relative; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }

/* Background swoosh — gold arrows */
.bg-swoosh {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  color: var(--ink);
  z-index: 0;
}
.bg-swoosh svg { width: 100%; height: 100%; }

/* ============================================================
   NAV — Site oficial style: tan announcement + black bar
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-announce {
  background: var(--gold-deep);
  color: var(--bg);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-announce strong { font-weight: 700; }
.nav-bar {
  background: var(--ink);
  color: var(--bg);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding .3s cubic-bezier(.4,0,.2,1);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg);
  line-height: 1;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  transition: height .3s cubic-bezier(.4,0,.2,1);
}
/* Shrink-on-scroll (desktop) */
@media (min-width: 1025px) {
  .nav.scrolled .nav-inner { padding-top: 12px; padding-bottom: 12px; }
  .nav.scrolled .brand-logo { height: 42px; }
  .nav.scrolled .nav-cta .btn-pill { padding-top: 10px; padding-bottom: 10px; }
}
.nav-cta .btn-pill { transition: padding .3s cubic-bezier(.4,0,.2,1), color .35s cubic-bezier(.65,.05,.36,1), border-color .35s cubic-bezier(.65,.05,.36,1); }
@media (max-width: 640px) {
  .brand-logo { height: 44px; }
}
.nav-links {
  display: flex;
  gap: 56px;
  align-items: center;
}
.nav-links a {
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--bg);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a.active { color: var(--gold-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ----- Hamburger button ----- */
.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  transition: opacity .25s ease;
  flex-shrink: 0;
}
.nav-hamburger:hover { opacity: 0.75; }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bg);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold-soft); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold-soft); }

/* ----- Mobile drawer ----- */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  padding: 28px var(--pad-x) 40px;
  pointer-events: none;
  visibility: hidden;
}
.nav-drawer.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.nav-drawer::before {
  display: none;
}
.nav-drawer-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  max-width: 560px;
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 10px;
}
.nav-drawer-logo { height: 44px; width: auto; display: block; }
.nav-drawer-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: transparent;
  border: none;
  color: var(--bg);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.08); }
.nav-drawer-close:active { transform: translateY(-50%) scale(0.92); }
.nav-drawer a {
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--bg);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s, padding-left .25s ease;
  display: flex;
  align-items: center;
}
.nav-drawer a:hover, .nav-drawer a:focus {
  color: var(--gold-soft);
  padding-left: 6px;
}
.nav-drawer-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.nav-drawer-cta .btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
  width: auto;
}
.nav-drawer-cta .btn-pill:hover {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}
.nav-drawer-cta .btn-pill-ghost {
  background: transparent;
  color: var(--bg);
  border-color: var(--gold);
}
.nav-drawer-cta .btn-pill-ghost:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.nav-drawer-foot {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  font-family: "Montserrat", var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: none;
}
.nav-drawer-foot .star { color: var(--gold-soft); }
.nav-cta .btn-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 1.5px solid var(--bg);
  background: transparent;
  color: var(--bg);
  border-radius: 999px;
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s cubic-bezier(.65,.05,.36,1), border-color .35s cubic-bezier(.65,.05,.36,1);
}
.nav-cta .btn-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.65,.05,.36,1);
  z-index: -1;
}
.nav-cta .btn-pill:hover::before {
  transform: translateX(0);
}
.nav-cta .btn-pill:hover {
  color: var(--ink);
  border-color: var(--gold);
}

@media (max-width: 1180px) {
  .nav-links { gap: 32px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.14em; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { position: relative; padding: 18px var(--pad-x); }
  .nav-bar .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-cta .btn-pill { padding: 12px 24px; font-size: 11.5px; letter-spacing: 0.14em; }
}
@media (max-width: 640px) {
  .nav-announce { font-size: 10.5px; letter-spacing: 0.12em; padding: 0 12px; }
  .nav-cta .btn-pill { display: none; }
  .nav-inner { padding: 14px var(--pad-x); }
  .brand-logo { height: 50px; }
  .nav-hamburger { width: 44px; height: 44px; gap: 6px; }
  .nav-hamburger span { width: 24px; height: 2px; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(28px, 3.5vw, 52px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 300px;
  transform: none;
  width: 600px;
  height: 520px;
  background-image: radial-gradient(ellipse at center, var(--gold) 0%, transparent 68%);
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.hero-headline, .hero-copy { position: relative; z-index: 1; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  z-index: 1;
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy .display { margin-bottom: 28px; }
.hero-copy .lead { margin: 0 0 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta .star { color: var(--gold-deep); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-frame {
  position: relative;
  width: 78%;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -30px rgba(14,14,14,0.25);
  overflow: hidden;
}
.hero-frame .crosshair {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-frame .crosshair::before,
.hero-frame .crosshair::after {
  content: ""; position: absolute; background: var(--ink); opacity: 0.12;
}
.hero-frame .crosshair::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.hero-frame .crosshair::after { top: 50%; left: 0; right: 0; height: 1px; }
.hero-frame .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Background gold swoosh behind frame */
.hero-bg-arrow {
  position: absolute;
  right: -8%;
  top: 4%;
  width: 80%;
  height: 92%;
  z-index: -1;
  color: var(--ink);
  opacity: 0.08;
}

/* Floating pills around mockup */
.float-pill {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px -10px rgba(14,14,14,0.2);
  z-index: 4;
}
.float-pill .label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.float-pill .val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.float-pill .val .gold { color: var(--gold-deep); }
.float-pill.coord {
  top: 14%; left: -8%;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-radius: 16px;
}
.float-pill.coord .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.float-pill.coord .val { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }
.about-pill.coord .label {
  font-family: "Montserrat", var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.about-pill.coord .val {
  font-family: "Montserrat", var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}

.float-pill.size {
  bottom: 12%; right: -10%;
  border-radius: 16px;
}
.float-pill.size .dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.float-pill.size .val {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.float-pill.live {
  top: -3%; right: 6%;
  border-radius: 999px;
  padding: 10px 18px;
}
.float-pill.live::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.float-pill.live .label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .hero-copy { display: contents; }
  .hero-copy > .display { order: 1; margin-bottom: 0; font-size: clamp(42px, 11vw, 60px); }
  .hero::before {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    max-width: 480px;
    height: 360px;
    opacity: 0.2;
  }
  .hero::after {
    content: "";
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 220px;
    background-image: radial-gradient(circle, var(--gold) 2px, transparent 2px);
    background-size: 22px 22px;
    opacity: 0.3;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 72%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-visual { order: 2; aspect-ratio: 1; max-width: 460px; margin: -24px auto -16px; width: 100%; }
  .hero-copy > .lead { order: 3; margin-bottom: 8px; margin-left: auto; margin-right: auto; }
  .hero-copy > .hero-ctas { order: 4; margin-bottom: 0; }
  .float-pill.coord { left: 0; top: 10%; }
  .float-pill.size { right: 0; bottom: 10%; }
  .float-pill.size .val { text-align: left; }
}

/* ============================================================
   ABOUT — "Sobre" block with gold backdrop card
============================================================ */
.about {
  background: var(--bg);
  padding: clamp(36px, 4.5vw, 64px) 0 clamp(56px, 7vw, 96px);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
.about-visual {
  position: relative;
  aspect-ratio: 654 / 760;
  align-self: stretch;
}
.about-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.about-slide.is-active {
  opacity: 1;
}
.about-pill {
  position: absolute;
  top: 8%;
  left: -4%;
  z-index: 3;
}
.about-pill-size {
  position: absolute;
  bottom: 8%;
  right: -4%;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .about-slide { transition: none; }
}
.about-visual .gold-back {
  position: absolute;
  inset: 10% -6% 6% 10%;
  background: var(--gold-glow);
  border-radius: 18px;
  z-index: 0;
}
.about-visual .frame-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.about-visual .frame {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 60px -24px rgba(14,14,14,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-visual .frame-a {
  top: 4%;
  left: 4%;
  width: 56%;
  aspect-ratio: 4 / 5;
  z-index: 3;
}
.about-visual .frame-b {
  bottom: 4%;
  right: 0;
  width: 62%;
  aspect-ratio: 4 / 5;
  z-index: 2;
}
.about-visual .frame .pic {
  flex: 1;
  position: relative;
  background: var(--bg-soft);
  min-height: 0;
}
.about-visual .frame .pic svg { width: 100%; height: 100%; }
.about-visual .frame .label {
  border-top: 1px solid var(--rule);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.about-visual .frame .label strong { color: var(--ink); font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; text-transform: none; font-size: 14px; }

.about-copy .eyebrow { margin-bottom: 24px; }
.about-copy .h2 { margin-bottom: 22px; }
.about-copy .lead { margin: 0 0 32px; max-width: 480px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
  max-width: 492px;
}
.feat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--rule);
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 16px 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .3s ease, border-color .3s ease;
}
.feat-card:hover {
  transform: translateY(-2px);
  background: var(--bg-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 14px 32px -16px rgba(14,14,14,0.16);
}
.feat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.feat-icon svg { width: 30px; height: 30px; }
.feat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.feat-card h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
.feat-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.feat-card p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin: 0 auto; width: 100%; aspect-ratio: 654 / 760; min-height: 0; }
}
@media (max-width: 480px) {
  .feat-card { padding: 12px 14px; gap: 12px; }
  .feat-icon { width: 30px; height: 30px; }
  .feat-icon svg { width: 26px; height: 26px; }
}

@media (max-width: 1024px) {
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .about-copy { display: contents; }
  .about-copy > .h2 { order: 1; }
  .about-copy > .lead:nth-of-type(1) { order: 2; width: 100%; }
  .about-visual { order: 3; max-width: 480px; margin: 0 auto; width: 100%; }
  .about-copy > .lead:nth-of-type(2) { order: 4; width: 100%; }
  .about-copy > .about-features { order: 5; width: 100%; }
  .feat-card { min-width: 0; max-width: 100%; width: 100%; }
  .feat-card p { white-space: normal; }
}
@media (max-width: 1024px) {
  .about-copy > .h2 { font-size: clamp(38px, 10vw, 52px); margin-bottom: 0; }
  .about-copy > .lead { margin-bottom: 0 !important; margin-top: 0 !important; text-wrap: balance; }
  .about-visual { margin-top: 4px !important; margin-bottom: 4px !important; }
  .about-features { gap: 8px; }
  .feat-card { padding: 12px 16px; gap: 14px; border-radius: 10px; align-items: center; }
  .feat-icon { width: 32px; height: 32px; }
  .feat-icon svg { width: 28px; height: 28px; }
  .feat-card h5 { font-size: 15px; }
  .feat-card p { font-size: 12px; line-height: 1.35; }
  .about-copy > .about-features { max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   PROCESS — 3 steps with connecting line
============================================================ */
.process {
  background: var(--bg-soft);
  border-block: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 100px) 0;
}
.process-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(56px, 7vw, 96px);
}
.process-head .eyebrow { margin-bottom: 28px; }
.process-head .h2 { margin: 0 auto; }

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: var(--gold);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.step-num {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  isolation: isolate;
}
.step-num::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--gold);
  z-index: -1;
  transform: translate(-5px, 5px);
}
.step-num .n {
  color: var(--bg);
}
.step h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 280px;
  text-wrap: balance;
}
.step p strong { color: var(--ink); font-weight: 600; }

.process-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(48px, 6vw, 72px);
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-line { display: none; }
}

/* ============================================================
   OFFER (Pague Depois equivalent) — pricing block
============================================================ */
.offer {
  background: var(--bg);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.offer-copy .eyebrow { margin-bottom: 24px; }
.offer-copy .h2 { margin-bottom: 28px; }
.offer-copy .lead { margin: 0 0 16px; }
.offer-copy .lead-2 { margin: 0 0 36px; }

.offer-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: 0 30px 80px -30px rgba(14,14,14,0.2);
}
.offer-card::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  bottom: -8px;
  left: 12px;
  background: var(--gold-glow);
  border-radius: 22px;
  z-index: -1;
}
.offer-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.offer-card .head .logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.offer-card .head .logo::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.offer-card .head .edit {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-glow);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.offer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14.5px;
}
.offer-row:last-of-type { border-bottom: none; }
.offer-row .k { color: var(--ink-3); }
.offer-row .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.offer-row .v.big {
  font-size: 22px;
}
.offer-card .deadline {
  margin-top: 22px;
  background: var(--gold-glow);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.offer-card .deadline .lab {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.offer-card .deadline .date {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 18px;
  border-left: 1.5px solid var(--ink);
}
.offer-card .deadline .date small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .offer-grid {
    display: flex;
    flex-direction: column;
  }
  .offer-copy { display: contents; }
  .offer-copy > .eyebrow { order: 1; }
  .offer-copy > .h2 { order: 2; }
  .offer-copy > .lead { order: 3; }
  .offer-copy > .lead-2 { order: 4; }
  .offer-card { order: 5; margin: 12px 0 24px; }
  .offer-copy > .btn { order: 6; align-self: flex-start; }
}

/* ============================================================
   EXTRAS — gallery + floating mockup w/ extras
============================================================ */
.extras {
  background: var(--bg-soft);
  border-block: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 100px) 0;
  overflow: hidden;
}
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.extras-copy .h2 { margin-bottom: 28px; }
.extras-copy hr {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 28px 0 24px;
}
.extras-copy .bullet {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.extras-copy .bullet::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
.extras-copy .bullet strong { font-weight: 600; color: var(--ink); }
.extras-copy .bullet .gold { color: var(--gold-deep); font-weight: 600; }

.extras-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.extras-visual .grid-frame {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}
.extras-visual .mini-frame {
  background: var(--bg);
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.extras-visual .mini-frame .crosshair {
  position: absolute; inset: 0; pointer-events: none;
}
.extras-visual .mini-frame .crosshair::before,
.extras-visual .mini-frame .crosshair::after {
  content: ""; position: absolute; background: var(--ink); opacity: 0.12;
}
.extras-visual .mini-frame .crosshair::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.extras-visual .mini-frame .crosshair::after { top: 50%; left: 0; right: 0; height: 1px; }
.extras-visual .float-tag {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px -14px rgba(14,14,14,0.25);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 3;
}
.extras-visual .float-tag::before {
  content: "+";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.extras-visual .tag-1 { top: -2%; right: 14%; }
.extras-visual .tag-2 { bottom: -2%; left: 4%; }

@media (max-width: 900px) {
  .extras-grid {
    display: flex;
    flex-direction: column;
  }
  .extras-copy { display: contents; }
  .extras-copy > .h2 { order: 1; }
  .extras-copy > .lead { order: 2; }
  .extras-copy > hr { order: 3; }
  .extras-copy > .bullet { order: 4; }
  .extras-visual { order: 5; max-width: 460px; margin: 16px auto 24px; width: 100%; }
  .extras-copy > .btn { order: 6; align-self: flex-start; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--bg-soft);
  border-block: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .eyebrow-plain { color: var(--gold-deep); }
.testimonials .h2 { color: var(--ink); }
.testimonials .h2 .mark { color: var(--ink); }
.t-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: nowrap;
}
.t-header > div:first-child { flex: 1 1 auto; min-width: 0; }
.t-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.t-rating-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.t-rating-num { font-family: var(--display); font-size: 18px; color: var(--ink-2); }
.t-rating-num strong { font-size: 30px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.t-rating-sub { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

/* Wall — JS masonry: shortest-column distribution */
.t-wall {
  display: block;
}
.t-wall--cols {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.tw-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tw-card {
  margin-bottom: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--bg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tw-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -22px rgba(14,14,14,0.18);
}
.tw-textgroup { display: none; }

/* Text card */
.tw-text-inner { padding: 22px 22px 20px; }
.t-wall--cols .tw-text .tw-text-inner { min-height: 240px; display: flex; flex-direction: column; justify-content: center; }
.tw-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 12px; }
.tw-quote {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 18px;
}
.tw-quote em { font-style: italic; color: var(--ink); font-weight: 500; }
/* Caption block under photo/video */
.tw-cap { padding: 18px 20px 18px; }
.tw-cap .tw-stars { margin-bottom: 10px; }
.tw-cap .tw-quote { font-size: 14px; margin: 0 0 16px; }
.tw-foot {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tw-av { display: none; }
.tw-who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.tw-who strong { font-family: "Montserrat", var(--sans); font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: 0; }
.tw-who span { font-family: "Montserrat", var(--sans); font-size: 11px; color: var(--ink-3); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.tw-check { width: 18px; height: 18px; color: var(--gold-deep); margin-left: auto; flex-shrink: 0; }

/* Photo + video media cards */
.tw-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--bg-dim);
  line-height: 0;
}
.tw-media img { width: 100%; height: auto; display: block; }
.tw-media-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Desktop columns: cap media height so cards stay uniform & columns balance */
.t-wall--cols .tw-media img,
.t-wall--cols .tw-media-video video {
  height: 380px;
  object-fit: cover;
}
.tw-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1;
  z-index: 2;
}

/* Lightbox (unused) */
.tw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14,14,14,0.88);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: tw-fade .25s ease;
}
@keyframes tw-fade { from { opacity: 0; } to { opacity: 1; } }
.tw-lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  display: grid; place-items: center;
}
.tw-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.tw-lightbox-inner {
  max-width: 420px;
  width: 100%;
}
.tw-lightbox-video {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  display: grid;
  place-items: center;
}
.tw-lightbox-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.tw-lightbox-note {
  position: absolute;
  color: #fff;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tw-lightbox-cap {
  text-align: center;
  margin-top: 16px;
  color: #fff;
}
.tw-lightbox-cap strong { display: block; font-size: 15px; }
.tw-lightbox-cap span { font-size: 12px; color: rgba(255,255,255,0.6); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 1024px) {
  .t-wall--cols { gap: 20px; }
  .tw-col { gap: 20px; }
}
@media (max-width: 680px) {
  .t-header { flex-direction: column; align-items: center; text-align: center; }
  .t-rating { align-items: center; }
  /* Horizontal swipe carousel on mobile */
  .t-wall {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin: 0 calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    scrollbar-width: none;
  }
  .t-wall::-webkit-scrollbar { display: none; }
  .tw-card {
    flex: 0 0 78%;
    max-width: 300px;
    height: 470px;
    margin-bottom: 0;
    scroll-snap-align: center;
  }
  .tw-card .tw-inner { height: 100%; display: flex; flex-direction: column; }
  .tw-card .tw-text-inner { height: 100%; display: flex; flex-direction: column; justify-content: center; }
  .tw-card .tw-media { flex: 1; min-height: 0; }
  .tw-card .tw-media img,
  .tw-card .tw-media video { width: 100%; height: 100%; object-fit: cover; }
  .tw-card .tw-cap { flex-shrink: 0; }
  /* Hide solo text cards, show grouped slide instead */
  .tw-card.tw-text { display: none; }
  .tw-textgroup {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 0 0 78%;
    max-width: 300px;
    height: 470px;
    scroll-snap-align: center;
  }
  .twg-card {
    border: 1px solid var(--rule);
    border-radius: 16px;
    background: var(--bg);
    padding: 20px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ============================================================
   ACERVO DE CIDADES
============================================================ */
.acervo {
  background: var(--bg);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
}
.acervo-head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.acervo-head .eyebrow { margin: 0; }
.acervo-head .h2 {
  margin: 0;
}
.acervo-head .lead {
  max-width: 720px;
  margin: 0 auto;
}

.acervo-pills {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  gap: 14px 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform .15s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  isolation: isolate;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.pill:hover {
  background: var(--bg-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(14,14,14,0.18);
}
.pill-active,
.pill-active:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(0);
  box-shadow: none;
}
.pill-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  z-index: -1;
  transform: translate(-5px, 5px);
  transition: transform .25s ease;
}
.pill-active:hover::before { transform: translate(-7px, 7px); }
.pill-cta {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pill-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  z-index: -1;
  transform: translate(-5px, 5px);
  transition: transform .25s ease;
}
.pill-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(0);
  box-shadow: none;
}
.pill-cta:hover::before { transform: translate(-7px, 7px); }

@media (max-width: 900px) {
  .pill { padding: 12px 20px; font-size: 14px; }
  .acervo-pills { gap: 10px 12px; grid-template-columns: repeat(3, auto); }
}
@media (max-width: 560px) {
  .pill { padding: 12px 20px; font-size: 14px; }
  .acervo-pills { gap: 10px 12px; grid-template-columns: repeat(2, auto); }
  .acervo-head { gap: 22px; }
}

.acervo-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.faq-inner { position: relative; z-index: 1; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.faq-copy .eyebrow { margin-bottom: 28px; }
.faq-copy .h2 { margin-bottom: 24px; }
.faq-copy .lead { margin: 0 0 36px; max-width: 380px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open {
  box-shadow: 0 14px 36px -16px rgba(14,14,14,0.18);
}
.btn-whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whats svg { flex-shrink: 0; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq-q .chev {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), color .3s ease;
  flex-shrink: 0;
}
.faq-item.open .chev {
  transform: rotate(90deg);
  color: var(--gold-deep);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .55s cubic-bezier(.4, 0, .2, 1),
    opacity .35s ease,
    padding .45s cubic-bezier(.4, 0, .2, 1);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  opacity: 1;
  padding: 0 24px 24px;
  transition:
    max-height .6s cubic-bezier(.4, 0, .2, 1),
    opacity .45s ease .12s,
    padding .5s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 820px) {
  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .faq-copy { display: contents; }
  .faq-copy > .eyebrow { order: 1; margin-bottom: 14px; }
  .faq-copy > .h2 { order: 2; margin-bottom: 12px; }
  .faq-copy > .lead { order: 3; margin-bottom: 20px; }
  .faq-copy > .btn { order: 4; align-self: flex-start; margin-top: 0; margin-bottom: 28px; }
  .faq-list { order: 5; }
}

/* ============================================================
   FINAL CTA — dark band
============================================================ */
.final {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.final-text { text-align: left; }
.final .eyebrow {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
  margin-bottom: 28px;
}
.final .display {
  color: var(--bg);
  margin: 0 0 24px;
}
.final .display .mark {
  background-image: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold-deep) 100%);
  color: var(--bg);
}
.final .lead {
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
  max-width: 520px;
}
.final .btn-gold { background: var(--gold); border-color: var(--gold); }
.final .btn-gold::before { display: none; }
.final-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.final-foot {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.final-foot .star { color: var(--gold-soft); }

/* Ghost button on dark band — hover fills white */
.final-ghost {
  position: relative;
  border: 1.5px solid rgba(255,255,255,0.32);
  color: #FFF;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s cubic-bezier(.65,.05,.36,1), border-color .35s;
}
.final-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFF;
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.65,.05,.36,1);
  z-index: -1;
}
.final-ghost:hover::before { transform: translateX(0); }
.final-ghost:hover { color: var(--ink); border-color: #FFF; }

/* Coupon card */
.coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 32px;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(212,168,82,0.55);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease, transform .15s ease;
  max-width: 460px;
}
.coupon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(240,216,152,0.14) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}
.coupon:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.coupon:hover::before { transform: translateX(120%); }
.coupon:active { transform: scale(0.99); }
.coupon-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.coupon-tag {
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.coupon-code {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}
.coupon-perk {
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--bg);
  letter-spacing: 0.01em;
}
.coupon-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Montserrat", var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .25s ease;
}
.coupon-action svg { display: block; }
.coupon-copy-default { display: inline-flex; align-items: center; gap: 7px; }
.coupon-copy-done { display: none; align-items: center; gap: 7px; }
.coupon.copied .coupon-action { background: var(--gold-soft); }
.coupon.copied .coupon-copy-default { display: none; }
.coupon.copied .coupon-copy-done { display: inline-flex; }

@media (max-width: 920px) {
  .coupon { margin-left: auto; margin-right: auto; }
}
@media (max-width: 420px) {
  .coupon { flex-direction: column; align-items: stretch; gap: 14px; text-align: center; }
  .coupon-left { align-items: center; text-align: center; }
  .coupon-action { justify-content: center; }
}

/* Final vertical video */
.final-video {
  display: flex;
  justify-content: center;
}
.final-video-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212,170,90,0.35);
  box-shadow:
    0 30px 70px -28px rgba(0,0,0,0.7),
    0 0 0 6px rgba(255,255,255,0.03);
}
.final-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 920px) {
  .final-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    display: flex;
    flex-direction: column;
  }
  .final-text { text-align: center; display: contents; }
  .final-head { order: 1; }
  .final-video { order: 2; }
  .final-body { order: 3; }
  .final-head .eyebrow { margin-bottom: 18px; }
  .final-head .display { margin-bottom: 0; }
  .final .lead { margin-left: auto; margin-right: auto; margin-top: 4px; }
  .final-ctas, .final-foot { justify-content: center; }
  .final-video-frame { max-width: 260px; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg);
  padding: 64px 0 32px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer h5 {
  font-family: "Montserrat", var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a {
  font-family: "Montserrat", var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  transition: color .15s;
}
.footer ul a:hover { color: var(--gold-deep); }
.footer .brand-foot {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .brand-foot-sub {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-brand { display: flex; align-items: flex-start; }
.footer-logo { height: 72px; width: auto; display: block; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Montserrat", var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-brand { display: none; }
}

/* ============================================================
   REVEAL ON SCROLL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { transition-duration: 0s !important; animation-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .btn { padding: 14px 24px; }
}

/* ============================================================
   MOBILE CENTERING — todo site centralizado no celular
============================================================ */
@media (max-width: 760px) {
  .hero-copy,
  .about-copy,
  .process-head,
  .offer-copy,
  .extras-copy,
  .t-copy,
  .faq-copy,
  .final-inner {
    text-align: center;
  }
  .about-features,
  .about-features .feat-card,
  .about-features .feat-body {
    text-align: left;
  }
  .hero-copy .lead,
  .about-copy .lead,
  .offer-copy .lead,
  .offer-copy .lead-2,
  .extras-copy .lead,
  .t-copy .lead,
  .faq-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas,
  .process-cta,
  .final-ctas {
    justify-content: center;
  }
  .offer-copy > .btn,
  .extras-copy > .btn,
  .faq-copy > .btn {
    align-self: center !important;
  }
  .extras-copy .bullet {
    text-align: left;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .t-community {
    justify-content: center;
  }
  .gallery-head,
  .gallery-foot {
    text-align: center;
    justify-content: center;
  }
  .pain-grid > div:first-child {
    text-align: center;
  }
  .pain-grid > div:first-child .lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
