/* =========================================================================
   Oh Point Barbearia — site institucional
   Tokens espelhados de mobile/src/theme/index.ts (ouro escovado + prata / preto)
   ========================================================================= */

:root {
  /* Superfícies */
  --bg: #080808;
  --bg-elevated: #0e0e0e;
  --surface: #141414;
  --surface-alt: #101010;
  --border: #262626;
  --border-soft: #1c1c1c;

  /* Texto */
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-dim: #6e6e6e;

  /* Marca */
  --gold: #c99a45;
  --gold-light: #e8c57a;
  --gold-pale: #f1dca8;
  --gold-dark: #a87c2e;
  --gold-soft: rgba(201, 154, 69, 0.14);
  --gold-border: rgba(201, 154, 69, 0.38);
  --on-gold: #0a0a0a;
  --silver: #dedede;

  /* Apoio */
  --emerald: #22c55e;
  --teal: #14b8a6;
  --rose: #f43f5e;
  --blue: #60a5fa;
  --violet: #a78bfa;

  /* Gradientes */
  --grad-gold: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  --grad-silver: linear-gradient(180deg, #ffffff 0%, #bdbdbd 100%);
  --grad-surface: linear-gradient(180deg, #141414 0%, #080808 100%);

  /* Métrica */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shell: 1180px;
  --nav-h: 76px;

  --font-display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shadow-card: 0 18px 46px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 14px 38px rgba(201, 154, 69, 0.28);
}

/* ---------------------------------------------------------------- reset -- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection, ::selection { background: var(--gold); color: var(--on-gold); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p  { margin: 0 0 1em; color: var(--text-muted); }

/* ------------------------------------------------------------ utilitários -- */

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 88px) 0; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.silver-text {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--gold));
}
.section-head p { font-size: 1.05rem; margin-bottom: 0; }

.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-muted); }

/* Textura de grão + brilho radial de fundo */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.glow--gold { background: rgba(201, 154, 69, 0.16); }
.glow--faint { background: rgba(201, 154, 69, 0.07); }

/* ---------------------------------------------------------------- botões -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--gold {
  background: var(--grad-gold);
  color: var(--on-gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(201, 154, 69, 0.4); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--gold-border); color: var(--gold-light); transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* Badges de loja */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px 11px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.store-badge:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 26px; flex: none; fill: var(--silver); }
.store-badge span { display: block; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.store-badge strong { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--text); }

/* ------------------------------------------------------------------ nav -- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border-soft);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(100% - 40px, var(--shell)); margin-inline: auto; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__crown { width: 30px; height: 24px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.05rem; letter-spacing: 0.12em; line-height: 1; color: var(--silver); }
.brand__tag { display: block; font-size: 0.55rem; letter-spacing: 0.34em; color: var(--gold); font-weight: 700; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
/* O CTA dentro do menu só aparece na versão mobile (fora dela existe o .nav__cta-desktop). */
.nav__links .btn { display: none; }
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------- herói -- */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(201, 154, 69, 0.16), transparent 60%),
    radial-gradient(700px 460px at 6% 72%, rgba(201, 154, 69, 0.07), transparent 62%);
  z-index: 0;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__logo { width: min(330px, 74%); margin-bottom: 26px; filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.6)); }

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; display: block; }

.hero__lead { max-width: 520px; font-size: clamp(1.02rem, 1.5vw, 1.14rem); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }

.hero__note { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-dim); }
.hero__note svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 42px);
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
}
.hero__stats div { flex: 1 1 132px; min-width: 132px; }
.hero__stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
}
.hero__stats div span { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.04em; }

/* --------------------------------------------------------- mock celular -- */

.phone-wrap { position: relative; display: flex; justify-content: center; }

.phone-wrap::after {
  content: '';
  position: absolute;
  width: 78%; height: 60px;
  bottom: -12px; left: 11%;
  background: radial-gradient(ellipse at center, rgba(201, 154, 69, 0.22), transparent 70%);
  filter: blur(22px);
}

.phone {
  position: relative;
  width: min(320px, 82vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(150deg, #3a3a3a 0%, #101010 32%, #0a0a0a 68%, #2e2e2e 100%);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone__notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  border-radius: 999px;
  background: #000;
  z-index: 5;
}

.app { flex: 1; display: flex; flex-direction: column; padding: 44px 16px 0; overflow: hidden; }

.app__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.app__hi { font-size: 0.62rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.app__name { font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; }
.app__bell {
  width: 32px; height: 32px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--gold);
  position: relative;
}
.app__bell svg { width: 15px; height: 15px; }
.app__bell::after {
  content: '';
  position: absolute; top: 7px; right: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 2px var(--surface);
}

.app-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--grad-surface);
  padding: 14px;
  margin-bottom: 12px;
}

.app-card--gold {
  border-color: var(--gold-border);
  background: linear-gradient(150deg, rgba(201, 154, 69, 0.2), rgba(201, 154, 69, 0.04));
}

.app-card__label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.app-card__title { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
.app-card__meta { font-size: 0.68rem; color: var(--text-muted); }

.app-row { display: flex; align-items: center; gap: 10px; }
.app-avatar {
  width: 38px; height: 38px; border-radius: 13px;
  background: var(--grad-gold);
  display: grid; place-items: center;
  color: var(--on-gold);
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  flex: none;
}

.app-chip {
  margin-left: auto;
  font-size: 0.58rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: var(--emerald);
  font-weight: 600;
  white-space: nowrap;
}

.app-progress { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin-top: 10px; }
.app-progress i { display: block; height: 100%; width: 68%; border-radius: 999px; background: var(--grad-gold); }

.app-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.app-service {
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: var(--surface-alt);
  padding: 10px 6px;
  text-align: center;
}
.app-service svg { width: 17px; height: 17px; color: var(--gold-light); margin-bottom: 6px; }
.app-service span { display: block; font-size: 0.56rem; color: var(--text-muted); line-height: 1.35; }

.app-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 11px 4px 16px;
  border-top: 1px solid var(--border-soft);
  background: rgba(10, 10, 10, 0.9);
}
.app-tabbar div { display: grid; place-items: center; gap: 4px; color: var(--text-dim); font-size: 0.5rem; }
.app-tabbar div svg { width: 16px; height: 16px; }
.app-tabbar div.is-active { color: var(--gold); }

/* ------------------------------------------------------------- marquee -- */

.marquee {
  border-block: 1px solid var(--border-soft);
  background: var(--surface-alt);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee__track span::before { content: '◆'; color: var(--gold); font-size: 0.6rem; }

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------ features -- */

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--grad-surface);
  padding: 30px 26px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover { transform: translateY(-4px); border-color: var(--gold-border); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }

.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.94rem; }

.icon-tile {
  width: 50px; height: 50px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.icon-tile svg { width: 23px; height: 23px; }

/* ---------------------------------------------------------- split/painel -- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.checklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.96rem; color: var(--text-muted); }
.checklist li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.checklist li strong { color: var(--text); font-weight: 600; }

/* Painel administrativo (mock) */
.dash {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--grad-surface);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash__head h4 { font-family: var(--font-display); font-size: 0.95rem; margin: 0; }
.dash__tabs { display: flex; gap: 6px; }
.dash__tabs span {
  font-size: 0.62rem; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--border-soft); color: var(--text-dim);
}
.dash__tabs span.is-active { background: var(--gold-soft); border-color: var(--gold-border); color: var(--gold-light); }

.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi { border-radius: 14px; border: 1px solid var(--border-soft); background: var(--surface-alt); padding: 13px; }
.kpi span { display: block; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.kpi strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.kpi small { display: block; font-size: 0.62rem; color: var(--emerald); margin-top: 2px; }

.chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 116px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: var(--surface-alt);
  margin-bottom: 14px;
}
.chart i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--gold-light), rgba(201, 154, 69, 0.22));
  animation: grow 1.1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes grow { from { height: 0 !important; opacity: 0; } }

.agenda-row {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: var(--surface-alt);
  margin-bottom: 8px;
}
.agenda-row b { font-family: var(--font-display); font-size: 0.78rem; color: var(--gold-light); min-width: 40px; }
.agenda-row p { margin: 0; font-size: 0.76rem; color: var(--text); }
.agenda-row p span { display: block; font-size: 0.66rem; color: var(--text-dim); }
.agenda-row em {
  margin-left: auto; font-style: normal; font-size: 0.6rem;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(34, 197, 94, 0.14); color: var(--emerald);
}

/* --------------------------------------------------------------- passos -- */

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--grad-surface);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.75;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; margin: 0; }

/* --------------------------------------------------------------- planos -- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.plan {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--grad-surface);
  padding: 30px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--gold-border); }

.plan--featured {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, rgba(201, 154, 69, 0.11), rgba(8, 8, 8, 0.9));
  box-shadow: var(--shadow-card);
}

.plan__badge {
  align-self: flex-start;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  color: var(--gold-light);
  margin-bottom: 16px;
}
.plan h3 { font-size: 1.2rem; margin-bottom: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 5px; margin: 12px 0 20px; }
.plan__price strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; }
.plan__price span { font-size: 0.86rem; color: var(--text-dim); }

.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.plan ul li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.plan ul li svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; width: 100%; }

/* ------------------------------------------------------------------ faq -- */

.faq { display: grid; gap: 12px; max-width: 840px; margin-inline: auto; }

.faq details {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 20px 24px;
  transition: border-color 0.25s ease;
}
.faq details[open] { border-color: var(--gold-border); background: var(--grad-surface); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 14px 0 0; font-size: 0.94rem; }

/* ---------------------------------------------------------------- cta -- */

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(201, 154, 69, 0.22), transparent 65%),
    var(--grad-surface);
  padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 64px);
  text-align: center;
}
.cta h2 { margin-bottom: 16px; }
.cta p { max-width: 560px; margin-inline: auto; }
.cta .stores { justify-content: center; margin-top: 30px; }

/* -------------------------------------------------------------- contato -- */

.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact > a, .contact > div {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  transition: border-color 0.25s ease;
}
.contact > a:hover { border-color: var(--gold-border); }
.contact svg { width: 21px; height: 21px; color: var(--gold); flex: none; margin-top: 3px; }
.contact strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 3px; }
.contact span { font-size: 0.88rem; color: var(--text-muted); }

/* --------------------------------------------------------------- footer -- */

.footer {
  border-top: 1px solid var(--border-soft);
  background: var(--surface-alt);
  padding: 56px 0 32px;
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer__grid p { font-size: 0.9rem; max-width: 300px; margin-top: 16px; }
.footer h5 {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s ease; }
.footer ul a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ----------------------------------------------------------- páginas legais -- */

.legal-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 44px;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(800px 340px at 20% 0%, rgba(201, 154, 69, 0.14), transparent 62%),
    var(--bg);
}
.legal-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 14px; }
.legal-hero p { max-width: 640px; margin-bottom: 0; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; font-size: 0.82rem; color: var(--text-dim); }
.legal-meta strong { color: var(--text-muted); font-weight: 500; }

.legal-layout {
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(44px, 6vw, 72px) 0 clamp(64px, 8vw, 96px);
}

.legal-toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 22px;
}
.legal-toc h5 { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.legal-toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; display: grid; gap: 9px; }
.legal-toc a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  transition: color 0.2s ease;
}
.legal-toc a::before {
  counter-increment: toc;
  content: counter(toc);
  position: absolute; left: 0; top: 0;
  font-size: 0.68rem; color: var(--gold); font-variant-numeric: tabular-nums;
}
.legal-toc a:hover { color: var(--gold-light); }

.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}
.legal-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { font-size: 1.05rem; margin-top: 28px; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: 0.97rem; }
.legal-body ul, .legal-body ol { padding-left: 20px; display: grid; gap: 9px; margin: 0 0 1.1em; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.callout {
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  background: linear-gradient(150deg, rgba(201, 154, 69, 0.12), rgba(201, 154, 69, 0.02));
  padding: 22px 24px;
  margin: 26px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--gold-light); }

.table-wrap { overflow-x: auto; margin: 22px 0 26px; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 0.9rem; }
thead { background: var(--surface); }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
th { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
td { color: var(--text-muted); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------- animação scroll -- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------ responsivo -- */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__logo, .hero__lead { margin-inline: auto; }
  .hero .eyebrow::after { content: ''; width: 26px; height: 1px; background: linear-gradient(270deg, transparent, var(--gold)); }
  .hero__cta, .hero__stats, .hero__note { justify-content: center; }
  .hero__stats { justify-content: space-around; }
  .phone-wrap { margin-top: 40px; }
  .grid--3, .steps, .plans, .contact { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .nav__links .btn { display: inline-flex; margin-top: 16px; border-bottom: 0; }
  .nav__toggle { display: inline-flex; }
  .nav__cta-desktop { display: none; }

  .grid--3, .grid--2, .steps, .plans, .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .kpis { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .card, .plan, .step { padding: 26px 22px; }
}
