/* ============================================================
   BASE.CSS
   Estilos base de documento: tipografía, fondo y accesibilidad.
   ============================================================ */

body {
  background-color: var(--color-bg);
  color: var(--color-neutral-1);
  font-family: var(--font-body);
  font-weight: 700; /* Montserrat Bold como tipografía de texto */
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 700; /* Barlow Semi Condensed Bold como tipografía de títulos */
  line-height: 1.1;
}

/* Textura de fondo: trama de puntos que retoma la textura semitonada
   del isotipo de Sinestesia TV, más un halo verde detrás de la tarjeta
   de donación. Puramente decorativo. */
.bg-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Estado de foco visible y consistente para navegación por teclado */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--color-accent);
  color: var(--color-on-accent);
}
