/* =============================================================================
   Elocuenta · Base: reset ligero y estilos de elementos
   ============================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
  margin: 0 0 var(--space-4);
}

a {
  color: var(--brand-primary);
  transition: color var(--transition-base);
}

/* Sin subrayado en ningún estado (Bootstrap lo activa por defecto) */
a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

a:hover {
  color: var(--brand-primary-dark);
}

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