/* =========================
   RESET BÁSICO
========================= */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f1f1f;
  background: #ffffff;
  line-height: 1.6;
}

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

figure {
  margin: 0;
}

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

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   VARIABLES
========================= */
:root {
  --color-primary: #0f172a;
  --color-secondary: #334155;
  --color-accent: #facc15;
  --color-accent-dark: #eab308;
  --color-text: #1e293b;
  --color-muted: #64748b;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-bg-soft: #f8fafc;
  --color-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
}

/* =========================
   UTILIDADES GENERALES
========================= */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--color-muted);
}

.hidden {
  display: none !important;
}

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

/* =========================
   TIPOGRAFÍA GLOBAL
========================= */

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  line-height: 1.2;
}

p {
  line-height: 1.2;
}

/* CONTENIDO DE POSTS */
.entry-content p {
  line-height: 1.55;
  margin-bottom: 1.1em;
}

/* =========================
   LISTAS EN CONTENIDO
========================= */

.entry-content ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0 0 1.2em;
}

.entry-content ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin: 0 0 1.2em;
}

.entry-content li {
  margin-bottom: 0.4em;
  line-height: 1.5;
}

/* Sublistas */
.entry-content ul ul {
  list-style: circle;
}

.entry-content ul ul ul {
  list-style: square;
}