:root {
  --rojo: #c0392b;
  --gris: #555;
  --dorado: #b7950b;
  --blanco: #fff;
  --gris-claro: #f4f4f4;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--blanco);
  color: var(--gris);
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--rojo);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.historia {
  font-size: 1.1rem;
  text-align: justify;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  section h2 { font-size: 1.5rem; }
}