/* ============================================================
   SAZÚ — Base
   Reset · Fuentes · Estilos globales
   ============================================================ */

/* ── Fuentes Bokra ── */
@font-face {
  font-family: 'Bokra';
  src: url('../fonts/bokra-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bokra';
  src: url('../fonts/bokra-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg-body);
  overflow-x: hidden;
  min-height: 100vh;
  /* Gradientes de fondo globales con glow morado */
  background-image:
    radial-gradient(ellipse 100% 55% at 50% 0%,   rgba(124, 58, 237, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 55%  45% at 85% 40%,   rgba(76,  29, 149, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45%  35% at 15% 75%,   rgba(217, 70, 239, 0.10) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ── Tipografía global ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
  font-weight: 700;
  line-height: 1.15;
}

p {
  line-height: 1.7;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-brand);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-brand);
}

address {
  font-style: normal;
}

/* ── Utilidades de texto ── */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-accent);
}

.eyebrow--dark {
  color: var(--color-magenta-dark);
}

/* ── Visibilidad accesible ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Animaciones de carga (initial state para GSAP) ── */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    opacity: 0;
    transform: translateY(24px);
  }
}
