@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
  background-color: #f8f9fa; /* fondo claro para contraste */
  color: #333;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

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

/* Enlaces del footer */
footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
  color: #c5966e;
  text-decoration: underline;
}

/* Títulos del footer */
footer h5,
footer h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Párrafos del footer */
footer p,
footer small {
  font-size: 0.9rem;
  line-height: 1.4;
}