.elementor-96 .elementor-element.elementor-element-57b0f19{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8b1db6d */.pagina-inicio {
  font-family: sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #333;
}

/* Imagen del restaurante: natural */
#restaurante .col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

/* Imagen de la sidrería: ajustada */
#sidreria .col-img img {
  width: 100%;
  height: 350px;      /* puedes ajustar: 300px, 350px, 400px */
  object-fit: cover;  /* recorta proporcionalmente */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}


.hero {
  text-align: center;
  margin-bottom: 3rem;
}
.hero h1 {
  font-size: 2rem;
  color: #8b5a2b;
}
.hero p {
  font-size: 1.2rem;
  color: #555;
}
/* Estilos para las secciones negocio */
.negocio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.negocio-imagen-izquierda .col-img {
  order: 0; /* imagen primero */
}
.negocio-imagen-derecha .col-img {
  order: 1; /* imagen después del texto */
}

.col {
  flex: 1;
}

.col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.botones {
  margin-top: 1rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.btn {
  background: #556b2f;
  color: #fff;
  text-decoration: none;
  padding: .6rem 1.2rem;
  border-radius: 25px;
  font-weight: bold;
  transition: all .2s ease;
}
.btn:hover {
  background: #4b5320;
}

/* Mapas */
.mapas h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #8b5a2b;
}
.mapas h3 {
  margin: 1rem 0 .5rem;
}
.mapas iframe {
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .negocio {
    flex-direction: column;
  }
  .negocio-imagen-derecha .col-img {
    order: 0;
  }
  .negocio-imagen-derecha .col-texto {
    order: 1;
  }
}/* End custom CSS */