/* ── TOKENS ── */
:root {
  --bg: #F9F7F4;
  --bg-alt: #F2EFE9;
  --ink: #141210;
  --ink-mid: #4A4540;      /* was #6B6560 — improved contrast on light bg */
  --ink-light: #7A7570;    /* was #B0ABA5 — improved contrast for small text */
  --accent: oklch(52% 0.09 38);
  --accent-dim: oklch(52% 0.09 38 / 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 1280px;
  --gap: clamp(3rem, 8vw, 7rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.serif {
  font-family: var(--serif);
}

.section-label {
  font-size: 0.72rem;       /* was 0.7rem — slightly larger */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.6rem;
  display: block;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

nav.scrolled {
  border-color: oklch(0% 0 0 / 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg {
  display: block;
  height: 26px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;        /* was 0.78rem */
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.8rem;          /* was 0.78rem */
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  transform-origin: center;
  position: absolute;
}

.nav-burger span:nth-child(1) { transform: translateY(-6px); }
.nav-burger span:nth-child(2) { transform: translateY(0); }
.nav-burger span:nth-child(3) { transform: translateY(6px); }

/* Open state — animate to X */
.nav-burger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── BTNS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;         /* was 0.8rem */
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  padding: 0.9rem 2.6rem;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-primary:hover {
  background: var(--accent);
}

/* ── HERO ── */
.hero {
  min-height: 76svh;
  display: grid;
  place-items: center;
  padding-top: clamp(96px, 9vh, 120px);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  column-gap: clamp(3rem, 7vw, 7rem);
  row-gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-right {
  align-self: center;
  padding-bottom: 0;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}

.hero-scroll-hint {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  font-size: 0.74rem;          /* was 0.72rem */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ink-light);
}

/* ── STRIP ── */
.strip {
  overflow: hidden;
  border-top: 1px solid oklch(0% 0 0 / 0.08);
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
  background: #EDEAE4;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin-inline: auto;
}

.strip-frame {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.strip-mat {
  background: #F8F6F2;
  padding: 0.8rem;
  box-shadow:
    0 2px 8px oklch(0% 0 0 / 0.09),
    0 12px 36px oklch(0% 0 0 / 0.12);
}

.strip-mat-inner {
  background: #fff;
  padding: 0.6rem;
}

.strip-mat-inner svg {
  display: block;
  width: 100%;
}

.strip-title {
  font-family: var(--serif);
  font-size: 0.8rem;           /* was 0.75rem */
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
}

.strip-meta {
  font-size: 0.65rem;          /* was 0.56rem — biggest contrast fix */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  line-height: 1.5;
}

/* ── INTRO ── */
.intro {
  padding: var(--gap) 0;
}

.intro-inner-solo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.intro-label {
  font-size: 0.72rem;          /* was 0.7rem */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.6rem;
  display: block;
}

.intro-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-body-solo {
  padding-top: 0.8rem;
}

.intro-body-solo p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}

.intro-body-solo p+p {
  margin-top: 1.2rem;
}

.intro-body-solo strong {
  color: var(--ink);
  font-weight: 500;
}

/* gallery illustration */
.intro-gallery {
  position: relative;
  background: #EDEAE4;
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  min-height: 380px;
}

.intro-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to bottom, oklch(0% 0 0 / 0.07), transparent);
}

.gal-frame {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.gal-frame:first-child {
  flex: 0.78;
  margin-bottom: 2.5rem;
}

.gal-mat {
  background: #F8F6F2;
  padding: 1.2rem;
  box-shadow:
    0 2px 8px oklch(0% 0 0 / 0.1),
    0 16px 48px oklch(0% 0 0 / 0.14);
  position: relative;
}

.gal-mat-inner {
  background: #fff;
  padding: 1rem;
  display: block;
}

.gal-mat-inner svg {
  display: block;
  width: 100%;
}

.gal-info {
  padding: 0.9rem 0.2rem 0;
  border-top: 1px solid oklch(0% 0 0 / 0.07);
  margin-top: 0.6rem;
}

.gal-title {
  font-family: var(--serif);
  font-size: 0.95rem;          /* was 0.9rem */
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 0.25rem;
}

.gal-meta {
  font-size: 0.68rem;          /* was 0.6rem — biggest contrast fix */
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  line-height: 1.6;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: oklch(0% 0 0 / 0.08);
}

/* ── COMO FUNCIONA ── */
.how {
  padding: var(--gap) 0;
  background: var(--bg-alt);
}

.how-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.how-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid oklch(0% 0 0 / 0.08);
  border-right: none;
}

.step:last-child {
  border-right: 1px solid oklch(0% 0 0 / 0.08);
}

.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: oklch(52% 0.09 38 / 0.18);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.92rem;          /* was 0.9rem */
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── SISTEMA ── */
.sistema {
  padding: var(--gap) 0;
}

.sistema-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.sistema-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.4rem;
}

.sistema-desc {
  font-size: 0.97rem;          /* was 0.95rem */
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sistema-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sistema-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;          /* was 0.9rem */
  color: var(--ink-mid);
}

.sistema-option::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SISTEMA SIMULATOR ── */
.sim-wrap {
  background: var(--bg-alt);
  border: 1px solid oklch(0% 0 0 / 0.08);
  padding: 1.5rem;
}

.sim-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.sim-tab {
  font-size: 0.7rem;           /* was 0.65rem */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid oklch(0% 0 0 / 0.12);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink-mid);
  transition: all 0.2s;
}

.sim-tab.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.sim-screen {
  background: #fff;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  transition: background 0.5s;
}

.sim-screen[data-style="a"] { background: #FAF8F5; }
.sim-screen[data-style="b"] { background: #1A1A1A; }
.sim-screen[data-style="c"] { background: #F0F4F2; }

.sim-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid oklch(0% 0 0 / 0.06);
  transition: border-color 0.5s;
}

[data-style="b"] .sim-nav { border-color: oklch(100% 0 0 / 0.1); }

.sim-logo-bar {
  height: 8px;
  border-radius: 1px;
  transition: background 0.5s;
}

[data-style="a"] .sim-logo-bar { background: #2a2a2a; width: 50px; }
[data-style="b"] .sim-logo-bar { background: #ffffff; width: 50px; }
[data-style="c"] .sim-logo-bar { background: #1a3a2a; width: 40px; border-radius: 0; }

.sim-nav-dots { display: flex; gap: 6px; }

.sim-nav-dot {
  width: 24px;
  height: 4px;
  border-radius: 1px;
  transition: background 0.5s;
}

[data-style="a"] .sim-nav-dot { background: #ccc; }
[data-style="b"] .sim-nav-dot { background: oklch(100% 0 0 / 0.25); }
[data-style="c"] .sim-nav-dot { background: #aac4b4; }

.sim-hero-area {
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sim-hero-text {
  height: 22px;
  border-radius: 2px;
  transition: all 0.5s;
}

[data-style="a"] .sim-hero-text { background: #1a1a1a; width: 55%; }
[data-style="b"] .sim-hero-text { background: #ffffff; width: 70%; }
[data-style="c"] .sim-hero-text { background: #1a3a2a; width: 45%; border-radius: 0; }

.sim-hero-sub {
  height: 7px;
  border-radius: 1px;
  width: 40%;
  transition: all 0.5s;
}

[data-style="a"] .sim-hero-sub { background: #ccc; }
[data-style="b"] .sim-hero-sub { background: oklch(100% 0 0 / 0.3); }
[data-style="c"] .sim-hero-sub { background: #aac4b4; }

.sim-grid {
  display: grid;
  padding: 0.5rem 1rem;
  gap: 0.4rem;
  flex: 1;
  transition: all 0.5s;
}

[data-style="a"] .sim-grid { grid-template-columns: repeat(3, 1fr); }
[data-style="b"] .sim-grid { grid-template-columns: repeat(2, 1fr); }
[data-style="c"] .sim-grid { grid-template-columns: 1fr 1.6fr 1fr; }

.sim-thumb {
  border-radius: 1px;
  transition: all 0.5s;
  aspect-ratio: 1;
}

[data-style="a"] .sim-thumb { background: #e8e4de; aspect-ratio: 1; }
[data-style="b"] .sim-thumb { background: oklch(100% 0 0 / 0.08); aspect-ratio: 4/5; }
[data-style="c"] .sim-thumb { background: #d4e4dc; aspect-ratio: 1; border-radius: 0; }
[data-style="c"] .sim-thumb:nth-child(2) { aspect-ratio: 2/3; }

.sim-accent-bar {
  height: 3px;
  margin: 0 1rem;
  transition: background 0.5s, width 0.5s;
}

[data-style="a"] .sim-accent-bar { background: oklch(52% 0.09 38); width: 30px; }
[data-style="b"] .sim-accent-bar { background: oklch(75% 0.08 55); width: 60px; }
[data-style="c"] .sim-accent-bar { background: #2a6a4a; width: 40px; }

.sim-style-desc {
  margin-top: 0.8rem;
  font-size: 0.75rem;          /* was 0.72rem */
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  text-align: center;
  min-height: 1.2em;
}

/* ── PLANOS ── */
.planos {
  padding: var(--gap) 0;
  background: var(--bg-alt);
}

.planos-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.planos-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  margin-top: 0.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.card {
  background: var(--bg);
  border: 1px solid oklch(0% 0 0 / 0.08);
  border-right: none;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.card:last-child {
  border-right: 1px solid oklch(0% 0 0 / 0.08);
}

.card.featured {
  background: var(--ink);
  color: var(--bg);
}

.card.featured .card-label,
.card.featured .card-desc,
.card.featured .card-item,
.card.featured .card-note,
.card.featured .card-infra {
  color: oklch(100% 0 0 / 0.65);  /* was 0.55 — better contrast on dark bg */
}

.card.featured .card-item::before {
  background: oklch(100% 0 0 / 0.4);  /* was 0.3 */
}

.card.featured .card-divider {
  background: oklch(100% 0 0 / 0.1);
}

.card.featured .card-btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.card.featured .card-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.card-badge {
  display: inline-block;
  font-size: 0.65rem;          /* was 0.62rem */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.card-label {
  font-size: 0.72rem;          /* was 0.7rem */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
}

.card-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 3em;
}

.card-price-wrap {
  margin-bottom: 1.5rem;
}

.card-price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
}

.card-currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.card-divider {
  height: 1px;
  background: oklch(0% 0 0 / 0.08);
  margin-bottom: 1.4rem;
}

.card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-item {
  font-size: 0.88rem;
  color: var(--ink-mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.card-item::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--ink-light);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.card-autonomy {
  font-size: 0.8rem;           /* was 0.78rem */
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.card-note {
  font-size: 0.82rem;          /* was 0.8rem */
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.card-infra {
  font-size: 0.78rem;          /* was 0.75rem */
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.card-btn {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.8rem;           /* was 0.78rem */
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.85rem;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
}

.card-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ── PROVA SOCIAL ── */
.prova {
  padding: var(--gap) 0;
}

.prova-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.prova-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-top: 0.8rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.testimonial {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid oklch(0% 0 0 / 0.08);
  border-right: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial:last-child {
  border-right: 1px solid oklch(0% 0 0 / 0.08);
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-name {
  font-size: 0.85rem;          /* was 0.82rem */
  font-weight: 500;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.75rem;          /* was 0.72rem */
  color: var(--ink-light);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ── DIFERENCIAL ── */
.diferencial {
  padding: var(--gap) 0;
  background: var(--bg-alt);
}

.diferencial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.diferencial-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
}

.diferencial-heading em {
  font-style: italic;
  color: var(--accent);
}

.diferencial-right {
  padding-top: 0.5rem;
}

.diferencial-intro {
  font-size: 1rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pontos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ponto {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid oklch(0% 0 0 / 0.06);
}

.ponto:last-child {
  border-bottom: none;
}

.ponto-num {
  font-family: var(--serif);
  font-size: 0.92rem;          /* was 0.9rem */
  color: var(--ink-light);
  font-style: italic;
  padding-top: 0.1rem;
}

.ponto-text {
  font-size: 0.97rem;          /* was 0.95rem */
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
}

/* ── INFO ── */
.info {
  padding: var(--gap) 0;
  border-top: 1px solid oklch(0% 0 0 / 0.08);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.info-item {
  padding: 2rem;
  border-right: 1px solid oklch(0% 0 0 / 0.08);
}

.info-item:last-child {
  border-right: none;
}

.info-label {
  font-size: 0.7rem;           /* was 0.68rem */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.8rem;
  display: block;
}

.info-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.info-body {
  font-size: 0.88rem;          /* was 0.86rem */
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
}

.info-body span {
  display: block;
}

/* ── FAQ ── */
.faq {
  padding: var(--gap) 0;
  background: var(--bg-alt);
}

.faq-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.faq-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-top: 0.8rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid oklch(0% 0 0 / 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--sans);
}

.faq-q-text {
  font-size: clamp(0.94rem, 1.2vw, 1rem);  /* was 0.92rem min */
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink-mid);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after  { width: 1px; height: 12px; }

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  font-size: 0.92rem;          /* was 0.9rem */
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

.faq-a span { display: block; }

/* ── CTA FINAL ── */
.cta-final {
  padding: var(--gap) 0;
  text-align: center;
}

.cta-final-heading {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  max-width: 20ch;
  margin-inline: auto;
}

.cta-final-heading em {
  font-style: italic;
  color: var(--accent);
}

.cta-line {
  width: 1px;
  height: 60px;
  background: var(--ink-light);
  margin: 0 auto 2.5rem;
}

/* ── FOOTER ── */
footer {
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid oklch(0% 0 0 / 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
}

.footer-copy {
  font-size: 0.75rem;          /* was 0.72rem */
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

.footer-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;          /* was 0.75rem */
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-ig:hover { color: var(--ink); }

.footer-ig svg {
  width: 18px;
  height: 18px;
}

/* ── TWEAKS PANEL ── */
#tweaks-panel {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--bg);
  border: 1px solid oklch(0% 0 0 / 0.12);
  padding: 1.2rem 1.4rem;
  width: 240px;
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.08);
}

#tweaks-panel h4 {
  font-size: 0.72rem;          /* was 0.7rem */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.tweak-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.tweak-row label {
  font-size: 0.78rem;          /* was 0.75rem */
  color: var(--ink-mid);
}

.tweak-row input[type=color] {
  width: 100%;
  height: 28px;
  border: 1px solid oklch(0% 0 0 / 0.1);
  cursor: pointer;
  background: none;
  padding: 2px;
}

.tweak-row select {
  font-family: var(--sans);
  font-size: 0.82rem;          /* was 0.8rem */
  padding: 0.4rem;
  border: 1px solid oklch(0% 0 0 / 0.1);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid oklch(0% 0 0 / 0.08);
    padding: 1rem clamp(1.5rem, 5vw, 4rem) 1.5rem;
  }

  .nav-links.open li { border-bottom: 1px solid oklch(0% 0 0 / 0.05); }
  .nav-links.open a  { display: block; padding: 0.8rem 0; }
  .nav-burger        { display: flex; }

  .hero-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .hero-sub          { max-width: 100%; }
  .intro-inner       { grid-template-columns: 1fr; }
  .intro-gallery     { order: -1; }

  .steps             { grid-template-columns: 1fr; }
  .step              { border-right: 1px solid oklch(0% 0 0 / 0.08) !important; border-top: none; }
  .step:first-child  { border-top: 1px solid oklch(0% 0 0 / 0.08); }

  .sistema-inner     { grid-template-columns: 1fr; }

  .cards             { grid-template-columns: 1fr; }
  .card              { border-right: 1px solid oklch(0% 0 0 / 0.08) !important; border-top: none; }
  .card:first-child  { border-top: 1px solid oklch(0% 0 0 / 0.08); }

  .testimonials      { grid-template-columns: 1fr; }
  .testimonial       { border-right: 1px solid oklch(0% 0 0 / 0.08) !important; border-top: none; }
  .testimonial:first-child { border-top: 1px solid oklch(0% 0 0 / 0.08); }

  .diferencial-inner { grid-template-columns: 1fr; }

  .info-grid         { grid-template-columns: 1fr; }
  .info-item         { border-right: none; border-bottom: 1px solid oklch(0% 0 0 / 0.08); }
  .info-item:last-child { border-bottom: none; }

  .strip-inner       { grid-template-columns: repeat(3, 1fr); }
  .strip-frame:nth-child(4),
  .strip-frame:nth-child(5) { display: none; }

  .intro-inner-solo  { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .strip-inner       { grid-template-columns: repeat(2, 1fr); }
  .strip-frame:nth-child(3),
  .strip-frame:nth-child(4),
  .strip-frame:nth-child(5) { display: none; }
  .sim-tabs          { flex-wrap: wrap; }
}

/* ── FOOTER LEGAL LINKS ── */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal-link {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--ink);
}

.footer-legal-sep {
  font-size: 0.75rem;
  color: var(--ink-light);
  opacity: 0.5;
}

/* ── LEGAL PAGES ── */
.legal-hero {
  padding-top: calc(80px + var(--gap));
  padding-bottom: 3rem;
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
}

.legal-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 1.2rem;
}

.legal-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.legal-body {
  padding: var(--gap) 0 calc(var(--gap) * 1.5);
  max-width: 72ch;
}

.legal-body p {
  font-size: 0.97rem;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.legal-body p:first-child {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0;
}

.legal-section ul li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}

.legal-section ul li::before {
  content: '—';
  color: var(--ink-light);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.legal-divider {
  height: 1px;
  background: oklch(0% 0 0 / 0.07);
  margin-bottom: 2rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 3rem;
}

.legal-back:hover {
  color: var(--ink);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PAGES — setup, obrigado, legal
   Migrado dos blocos <style> inline de setup.html e obrigado.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── SETUP ── */
.setup-wrap {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* Setup page gets a slightly off-white body */
body.setup-page {
  background: var(--bg-alt);
}

.setup-header {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
}

.setup-step-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 1rem;
}

.setup-plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
}

.setup-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── THEME CHOOSER ── */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

/* Theme cards get a slight elevation against the bg-alt page */
.theme-card {
  background: var(--bg);
}

@media (max-width: 600px) {
  .theme-grid { grid-template-columns: 1fr; }
}

.theme-card {
  border: 1px solid oklch(0% 0 0 / 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.theme-card:hover {
  box-shadow: 0 4px 20px oklch(0% 0 0 / 0.10);
}

.theme-preview {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.theme-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid;
}

.theme-preview-logo { width: 48px; height: 7px; border-radius: 1px; }
.theme-preview-dots { display: flex; gap: 5px; }
.theme-preview-dot  { width: 22px; height: 4px; border-radius: 1px; }

.theme-preview-hero {
  padding: 0.9rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.theme-preview-h1  { height: 20px; border-radius: 2px; width: 60%; }
.theme-preview-sub { height: 6px; border-radius: 1px; width: 38%; }

.theme-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.4rem 1rem;
}

.theme-preview-thumb { border-radius: 1px; aspect-ratio: 1; }

.theme-info {
  padding: 1.2rem;
  border-top: 1px solid oklch(0% 0 0 / 0.08);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.theme-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
}

.theme-desc {
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

.theme-btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: none;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.theme-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ── FORM ── */
.form-section {
  padding: 3rem 0 5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.form-label span {
  color: var(--ink-light);
  font-size: 0.65rem;
}

.form-input,
.form-textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid oklch(0% 0 0 / 0.12);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--ink);
}

.form-input[readonly] {
  background: oklch(0% 0 0 / 0.03);
  color: var(--ink-light);
  cursor: default;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

.form-config-box {
  grid-column: 1 / -1;
  background: oklch(0% 0 0 / 0.03);
  border: 1px solid oklch(0% 0 0 / 0.08);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.config-id-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 0.3rem;
}

.config-id-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.config-id-missing {
  font-size: 0.85rem;
  color: var(--ink-light);
  font-weight: 300;
}

.config-edit-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.config-edit-link:hover { color: var(--ink); }

.form-submit {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { opacity: 0.85; }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ── PROGRESS STEPS ── */
.progress-bar {
  display: flex;
  align-items: center;
  padding: 1.2rem 0;
  overflow: hidden;        /* prevent cutoff on mobile */
  flex-wrap: nowrap;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;      /* slightly smaller to fit on mobile */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Inactive — hide label on mobile, show only dot */
@media (max-width: 540px) {
  .progress-step:not(.active) .progress-label { display: none; }
}

.progress-step .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-light);
  flex-shrink: 0;
}

/* Active step — accent color dot + bold label */
.progress-step.active .dot {
  background: var(--accent);
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 3px oklch(52% 0.09 38 / 0.15);
}
.progress-step.active        { color: var(--accent); font-weight: 600; }
.progress-step:not(.active)  { color: var(--ink-light); }

.progress-sep {
  width: 20px;
  height: 1px;
  background: oklch(0% 0 0 / 0.10);
  margin: 0 0.3rem;
  flex-shrink: 1;          /* allow shrinking on small screens */
  min-width: 8px;
}

/* ── CONFIRMACAO (obrigado.html) ── */
.confirm-section {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
}

.confirm-inner {
  max-width: 560px;
  text-align: center;
}

.confirm-icon {
  width: 48px;
  height: 48px;
  border: 1px solid oklch(0% 0 0 / 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.confirm-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 1.5rem;
}

.confirm-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.confirm-body {
  font-size: 1rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

.confirm-id-box {
  display: inline-block;
  background: oklch(0% 0 0 / 0.04);
  border: 1px solid oklch(0% 0 0 / 0.08);
  padding: 0.8rem 2rem;
  margin-bottom: 2.5rem;
}

.confirm-id-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 0.4rem;
}

.confirm-id-value {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.confirm-divider {
  width: 1px;
  height: 48px;
  background: var(--ink-light);
  margin: 0 auto 2.5rem;
  opacity: 0.4;
}


/* ── THEMES MARQUEE ── */
.marquee-section {
  border-top: 1px solid oklch(0% 0 0 / 0.08);
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
  background: var(--bg-alt);
  overflow: hidden;
}

.marquee-label-row {
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem) 0;
}

.marquee-outer {
  overflow: hidden;
  padding: 1.2rem 0 1.8rem;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-card {
  transition: box-shadow 0.25s, transform 0.25s;
}

.marquee-card:hover {
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.12);
  transform: translateY(-3px);
}

/* ── PROGRESS BAR mobile fix — remove overflow:hidden so dots aren't clipped ── */
@media (max-width: 540px) {
  .progress-bar {
    overflow: visible;
  }
}

/* Marquee cards use the same info strip pattern as the theme chooser */
.marquee-card .theme-info {
  margin-top: auto;
  padding: 1.2rem !important;
  border-top: 1px solid oklch(0% 0 0 / 0.08) !important;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.marquee-card .theme-name {
  font-family: var(--serif) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  display: block;
  margin-bottom: 0.2rem !important;
}

.marquee-card .theme-desc {
  font-family: var(--sans) !important;
  font-size: 0.75rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0.04em !important;
  color: var(--ink-light) !important;
}


/* Flow fixes */
.checkout-page .nav-links a[href*="#planos"], .setup-page .nav-links a[href*="#planos"] { display: none !important; }
@media (max-width: 900px) { .checkout-page .nav-links.open, .setup-page .nav-links.open { right: clamp(1rem, 5vw, 2rem); left: clamp(1rem, 5vw, 2rem); width: auto; } }
@media (max-width: 540px) { .progress-bar { overflow-x: auto; overflow-y: visible; padding-bottom: 1.35rem; } .progress-step { font-size: 0.58rem; } .progress-sep { min-width: 12px; } }
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: clamp(3rem, 10vw, 5rem);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    align-self: start;
  }
}


/* ── FLOW NAV (setup, live-preview, checkout) ── */
.flow-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 56px;
  background: #F9F7F4;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transform: translateZ(0);
  will-change: transform;
}

/* Override generic nav styles for flow-nav */
nav.flow-nav {
  padding-top: 0;
  padding-bottom: 0;
}

.flow-nav-timeline {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 6px 0;
  min-width: 0;
}

/* Timeline steps rendered by JS */
.fn-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #d4624a;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.fn-step-active {
  color: #d4624a;
  font-weight: 600;
}

/* Bolinha numerada */
.fn-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d4624a;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}

.fn-dot-active {
  opacity: 1;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 3px rgba(212,98,74,0.15);
  font-size: 9px;
}

.fn-sep {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(212,98,74,0.2);
  margin: 0 3px;
  flex-shrink: 1;
  min-width: 4px;
  vertical-align: middle;
}

/* Hide inactive labels on mobile */
@media (max-width: 600px) {
  .fn-step:not(.fn-step-active) .fn-label { display: none; }
  .fn-sep { width: 8px; min-width: 3px; margin: 0 2px; }
}

/* Botão Próximo — sharp, seta no mobile */
.flow-nav-btn {
  flex-shrink: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  background: #d4624a;
  color: #fff;
  padding: 0 18px;
  height: 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-nav-btn:disabled {
  background: rgba(0,0,0,0.08);
  color: #a09890;
  cursor: not-allowed;
}

.flow-nav-btn:not(:disabled):hover { opacity: 0.85; }

/* Desktop: mostra texto, esconde seta */
.flow-nav-btn .fn-btn-label { display: inline; }
.flow-nav-btn .fn-btn-arrow { display: none; }

/* Mobile: square com seta, esconde texto */
@media (max-width: 600px) {
  .flow-nav-btn {
    width: 36px;
    height: 36px;
    padding: 0;
  }
  .flow-nav-btn .fn-btn-label { display: none; }
  .flow-nav-btn .fn-btn-arrow { display: inline-flex; align-items: center; justify-content: center; }
}

/* Separadores compactos no mobile */
@media (max-width: 600px) {
  .fn-sep { width: 6px; min-width: 3px; margin: 0 1px; }
}

/* Adjust page content to sit below flow-nav (56px) */
.setup-header {
  padding-top: calc(56px + 3rem);
}

.checkout-header {
  padding-top: calc(56px + 3rem);
}

/* Shared theme cards */
.theme-link-card {
  color: inherit;
  text-decoration: none;
}

.theme-select-indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e8e3dc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.theme-select-indicator.is-selected {
  border-color: #d4624a;
  background: #d4624a;
}

.theme-card-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  white-space: nowrap;
}

.theme-link-card:hover .theme-card-cta {
  border-color: #d4624a;
  color: #d4624a;
}


/* Theme card maintenance fixes */
.theme-info > div { min-width: 0; }
.theme-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.theme-card-cta { border-radius: 0; }
.marquee-card .theme-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
