/* =========================
   VARIABLES DE COLOR Y TIPOGRAFÍA
========================= */
:root {
  --color-fondo: #3b6e6930;
  --color-texto: #1F3A37;
  --color-principal: #3b6e69;
  --color-secundario: #FF7A1A;
  --color-blanco: #ffffff;
  --color-gris-suave: #e0e0e0;
  --fuente-principal: 'Inter', sans-serif;
  --fuente-titulos: 'Playfair Display', 'Inter';
}

.ibm-plex-serif-light {
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  font-style: normal;
}

/* =========================
  RESET BÁSICO (quita estilos por defecto)
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
  ESTILOS BASE (globales)
========================= */
body {
  font-family: var(--fuente-principal);
  background-color: var(--color-blanco);
  color: var(--color-texto);
  line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: var(--fuente-principal);
}

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

main {
  margin: 0;
  padding: 0;
  width: 100%;
}

section {
  padding: 40px 0;
  margin-bottom: 0;
  scroll-margin-top: 110px;
}

/* =========================
  TIPOGRAFÍA (jerarquía títulos)
========================= */
h1,
h2,
h3 {
  font-family: var(--fuente-titulos);
  color: var(--color-texto);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

h2 span,
h3 span {
  color: var(--color-secundario);
}

h3 {
  font-size: 1.5rem;
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

section p {
  max-width: 800px;
  margin: 0.5rem auto;
}
