body {
  margin: 0;
  font-family: "Georgia", serif;
  background-image: url("img/fondo.jpg");
  background-size: cover;
  background-attachment: fixed;
}

nav {
  background-color: #d87a2c;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.contenedor {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.caja {
  background-color: #f4a261;
  padding: 20px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 4px 4px 0px #c96a1f;
}

.caja h2 {
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.grid img {
  width: 100%;
  border-radius: 10px;
}

.boton {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #9b4d16;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
.recuadro-home {
  background-image: url("img/recuadrohome.jpg");
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 15px;
  color: #3b1f0e;
}

.recuadro-home p {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px;
  border-radius: 10px;
}

.redes a {
  display: block;
  color: #3b1f0e;
  text-decoration: none;
  margin: 5px 0;
  font-weight: bold;
}

.redes a:hover {
  text-decoration: underline;
}


