section#sobre {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.sobre-slideShow {
  display: flex;
  width: 100%;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 1rem;
  overscroll-behavior-x: contain;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;
}
.sobre-slideShow::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.sobre-carrusel {
  flex: 0 0 60vw;
  min-width: 300px;
  scroll-snap-align: start;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-right: 10vw;
  margin-top: 1vw;
  background: rgba(255,255,255,0.05);
  padding: 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.aricaTitulo {
  grid-column: 1 / -1;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.sobre-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre-item a {
  background-color: #ffde59;
  border-radius: 12px;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  transition: 200ms;
  box-sizing: border-box;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  text-decoration: none;
}

.sobre-item a:hover {
  outline: 0;
  background: #f4e603;
  box-shadow: 0 0 0 2px rgba(0,0,0,.2), 0 3px 8px 0 rgba(0,0,0,.15);
}

.hotelNombre, .lugarNombre {
  font-weight: bold;
  margin-bottom: 0.2em;
  font-size: 2.1rem;
  text-align: center;
}

.hotelInfo, .lugarInfo {
  display: flex;
  gap: 1.5em;         /* Espacio entre los botones */
  align-items: center; /* Centra los botones si quieres */
  margin-bottom: 1em;
  font-size: 1rem;
  color: #333;
}


.hotelprev, .hotelnext {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
  background-color: #FFD70050;
}
.hotelnext {
  right: 4vw;
}

.hotelprev {
  left: 4vw;
}


/* Opcional: Responsive para móvil */
@media (max-width: 900px) {
  .sobre-carrusel {
    flex: 0 0 85vw;
    min-width: 220px;
    max-width: 70vw;
    margin-right: 5vw;
    margin-top: 8vw;
    padding: 1rem;
    grid-template-columns: 1fr;
  }
  .sobre-slideShow {
    gap: 1rem;
  }
  .hotelprev, .hotelnext {
  width: auto;
  margin-top: -22px;
  padding: 16px;
  font-size: 10px;
}
.aricaTitulo {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.sobre-item a {
  font-size: 12px;
}


.hotelNombre, .lugarNombre {
  margin-bottom: 0.2em;
  font-size: 1.1rem;
}

.hotelInfo, .lugarInfo {
  gap: 0.5em;
  margin-bottom: 1em;
  font-size: 0.5rem;
}



}

@media (min-width: 900px) {
  section#sobre {
    display: block; 
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
  }
  .sobre-slideShow {
    width: 100vw;
    max-width: 100vw;
    padding-left: 70vw;
  }
  .spacer-finalh {
    flex: 0 0 90vw; /* 60vw es el ancho de .expositorcarrusel */
    min-width: 0;
    height: 1px;
  }

  
}
