<!-- Tipografías e Íconos -->
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&display=swap" rel="stylesheet">
 
<!-- CSS Interno -->
<style>
  body {
    font-family: 'Merriweather', serif;
    background-color: #fff8f0; /* Fondo cálido, tipo pergamino */
    color: #4b2e05; /* Marrón oscuro para texto */
    margin: 0;
    padding: 0;
  }
 
  h1, h2 {
    font-family: 'Montserrat', sans-serif;
    color: #a0522d; /* Color marrón rojizo para títulos */
  }
 
  a {
    color: #b85c38;
    text-decoration: none;
  }
 
  a:hover {
    text-decoration: underline;
    color: #7a3f20;
  }
 
  .horizontal {
    background-color: #f3d9b1; /* Barra menú clara */
    padding: 10px 0;
    text-align: center;
  }
 
  .horizontal a {
    margin: 0 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
  }
 
  .importante {
    font-weight: bold;
    color: #7a3f20;
  }
 
  .boton {
    background-color: #a0522d;
    color: #fff8f0;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 5px;
  }
 
  .boton:hover {
    background-color: #7a3f20;
  }
 
  footer {
    background-color: #f3d9b1;
    text-align: center;
    padding: 15px 0;
    font-family: 'Montserrat', sans-serif;
    color: #7a3f20;
  }
 
  /* Mantengo tus otras clases igual */
</style>