:root {
  --accent: #d4a253;          /* dourado mais saturado */
  --accent-deep: #9b6d2c;
  --warn: #c9533c;            /* cobre-vermelho de urgência */
  --line: rgba(212, 162, 83, 0.22);
  --font-display: 'Fraunces', Georgia, serif;
  --radius: 4px;
}

.urgency-strip {
  background: var(--warn);
  color: #fff;
  padding: 8px 24px;
  text-align: center;
  font: 500 10.5px/1 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
}

.btn-primary {
  background: var(--accent);
  color: #1a1208;
  padding: 20px 36px;
  border-radius: 4px;
  font: 700 14px/1 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px var(--accent), 0 0 32px rgba(212, 162, 83, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s, opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 0 0 1px var(--accent), 0 0 48px rgba(212, 162, 83, 0.4);
}

.btn-secondary {
  color: var(--fg); 
  padding: 20px 22px;
  font-size: 13px; 
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.h1-hero {
  font-family: var(--font-display);
  font-size: 96px; 
  font-weight: 700; 
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.h2-section {
  font-family: var(--font-display);
  font-size: 56px; /* up to 80px depending on media query, keeping 56 as base */
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-mono); 
  font-size: 11px; 
  letter-spacing: 0.28em;
  color: var(--accent); 
  text-transform: uppercase;
}
