/* ========================================================================== */
/* DESIGN SYSTEM NORK - BASE STYLES & RESET (v2)                              */
/* Clean, Human-Crafted Architecture                                          */
/* ========================================================================== */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 160, 89, 0.4);
}

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

html {
  font-family: var(--font-family-main);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.65;
}

:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding-top: var(--section-padding-block);
  padding-bottom: var(--section-padding-block);
  position: relative;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--section-header-gap);
}

/* Mesma linguagem do olho do hero: filete + caixa alta, sem selo arredondado. */
.section-header__tag {
  display: block;
  color: var(--color-accent-gold-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-header__tag::before {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  margin: 0 auto var(--space-4);
  background: var(--color-accent-gold);
}

.section-header__title {
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.section-header__subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Reveal */
.motion-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-stagger-1 {
  transition-delay: 60ms;
}

.motion-stagger-2 {
  transition-delay: 120ms;
}

.motion-stagger-3 {
  transition-delay: 180ms;
}

.motion-stagger-4 {
  transition-delay: 240ms;
}

/* Highlight */
.highlight-gold {
  color: var(--color-accent-gold-light);
  font-weight: inherit;
}