/* global.css - Variables, Reseteos, Layout Base, Tipografía y Botones */

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

:root {
  --bg: #ffffff;
  --bg2: #f8f9fa;
  --bg3: #e9ecef;
  --bg4: #dee2e6;
  --surface: #f1f3f5;
  --border: #ced4da;
  --border2: #adb5bd;
  --text: #000000;
  --text2: #343a40;
  --text3: #6c757d;
  --gold: #0052FF;
  --gold2: #0042CC;
  --gold-dim: rgba(0, 82, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --serif: 'Outfit', sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

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

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 82, 255, 0.12);
}

/* LAYOUT */
section {
  padding: 6rem 2.5rem
}

.container {
  max-width: 1080px;
  margin: 0 auto
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto
}

.divider {
  height: 1px;
  background: var(--border)
}

/* TYPE */
h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  font-weight: 500
}

h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em
}

p {
  color: var(--text2);
  line-height: 1.8
}

em {
  font-style: italic;
  color: var(--gold)
}

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.01em
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn-gold {
  background: var(--gold);
  color: #ffffff
}

.btn-gold:hover {
  background: var(--gold2)
}

.btn-outline {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2)
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--text3)
}
