body {
  background-image: url(fondo.jpg);
  background-size: cover;
  color: #2C1810;
  font-family: "Poppins", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
}

.local-card {
  border: 2px solid #C79A6D;
  border-radius: 20px;
  padding: 14px 24px;
  background-color: #664a23;
  color: #fff;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  max-width: 350px;
  margin: 12px auto;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-box img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}


.local-card {
  animation: fadeIn 0.6s ease;
}

.img-box img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}