/* ── Reset mínimo ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* ── Oferta: texto dourado bold para legibilidade no fundo escuro ── */
#oferta .pilar-oferta span,
#oferta h3,
#oferta h4 {
  font-weight: 700;
}

/* ── Scrollbar customizada ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-dark); }
* { scrollbar-width: thin; scrollbar-color: var(--color-gold) var(--color-cream); }

/* ── Body ── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: var(--leading-relaxed);
  overflow-x: hidden;
}

/* ── Tipografia base ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 6vw, var(--text-6xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-4xl)); }
h3 { font-size: clamp(1.4rem, 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-body);
  line-height: var(--leading-relaxed);
}

strong {
  font-weight: 500;
  color: var(--color-text);
}

em {
  font-style: italic;
}

/* ── Links ── */
a {
  text-decoration: none;
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-dark);
}

/* ── Imagens ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Seleção ── */
::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ── Listas ── */
ul, ol {
  list-style: none;
}

/* ── Botão reset ── */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Focus visível acessível ── */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
