a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: auto;
}

.transition-smooth {
  transition: all 0.3s ease-in-out;
}

.fade {
  transition: opacity 0.3s ease;
  opacity: 0;
}

#scroll-wrapper {
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
}

#mapa-container {
  position: relative;
  min-width: 1500px;
  height: 100%;
  overflow: hidden;
}

#mapa-fondo {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  filter: grayscale(50%); /* Aumentar o disminuir el nivel del filtro para escritorio */
  z-index: -1;
}

.hamburguesa {
  width: 8%;
  height: auto;
  z-index: 1;
}

.fundidor-img{
  z-index: -10;
}

#hamburguesas-container {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.project-details {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 23%;
  padding-top: 1%;
  padding-bottom: 0px;
  z-index: 10;
  height: 44vh;
  border-radius: 5px;
}

.project-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
  display: flex;
  justify-content: center;
  border-radius: 10px;
}

.modo-movil .hamburguesa {
  width: 12vw;
}

.modo-movil .project-details {
  width: 80vw;
  height: auto;
  padding: 15px;
  position: fixed;
  bottom: 10%;
  right: 10%;
  z-index: 20;
}

.modo-movil .project-details::before {
  background-size: cover;
}

.modo-movil .fundidor-img {
  display: none;
}

@media (max-width: 460px) {
  #mapa-container {
    min-width: 100vw;
  }
  .hamburguesa {
    min-width: 15%;
    height: auto;
  }
  #scroll-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  #mapa-container .modo-movil {
    min-width: unset;
  }
  #mapa-fondo {
    top: 0;
    width: auto;
    height: 100%;
    position: absolute;
    filter: grayscale(50%); /* Aumentar o disminuir el nivel del filtro para móviles */
    z-index: -1;
  }
}