/* La Forma de Antes — hoja de estilos base
   (extraída sin cambios del diseño aprobado; el resto del estilo
   va en línea en cada elemento del index.html, tal como se aprobó) */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #F2E8D6;
  font-family: 'Work Sans', system-ui, sans-serif;
  color: #2C2013;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
}

.lfa-cta {
  transition: background 0.15s ease;
}

.lfa-cta:hover {
  background: #8F3C25 !important;
}

.lfa-cta:active {
  opacity: 0.9;
}
