/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */


.servicioss-sectionn {
  background-color: transparent;
  /* background-color: #f7f7f7; */
  /* padding: 40px 5%; */
  text-align: center;
}

.tituloo-servicioss {
  color: black;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.contenedorr-servicioss {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-servicioo {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card-servicioo:hover {
  transform: scale(1.05);
}

.img-servicioo {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.info-servicioo {
  padding: 5px;
  background-color: #f5f5f5;
}

.info-servicioo h3 {
  font-size: 1.2rem;
  color: #001029;
  margin-bottom: 8px;
}

.info-servicioo p {
  font-size: 1rem;
  margin: 0 0 8px 0;
  color: #333;
}

.info-servicioo span {
  font-size: 0.9rem;
  color: grey;
  border-radius: 10%;
  position: static;
   /* position: absolute; */
  top: 80%; 
  left: 5px;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

.restaurantee {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.restaurantee-contenido {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.restaurantee-texto {
  flex: 1 1 55%;
}

.restaurantee-texto h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.restaurantee-texto p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.restaurantee-texto .resaltado {
  font-weight: bold;
  color: #5aa02c; /* verde suave */
}

.restaurantee-img {
  flex: 1 1 40%;
}

.restaurantee-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.restaurantee-boton {
  text-align: center;
  margin-top: 30px;
}

.btn-menu {
  display: inline-block;
  background: #5aa02c;
  /* color: #fff; */
  text-decoration: none;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.btn-menu a{
  color: #fff;
}

.btn-menu:hover {
  background: #4a8926;
}


    