main {
  margin-top: 72px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  z-index: 0;
}

.tituloProducto {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--blanco);
}

.descripcionProducto {
  color: var(--grisClaro);
}

.titulo {
  display: flex;
  justify-content: space-between;
}

h2 {
  z-index: 2;
}

footer {
  z-index: 0;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80vw;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.hero h1 {
  color: var(--blanco);
}

.fondoSeccion {
  height: fit-content;
  width: 100%;
  margin: 18px 0 12px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* text-align: center; */
}

.fondoSeccion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
}

.ocultar {
  display: none !important;
}

.menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80vw;
}

.columna {
  margin: 0 36px 0 36px;
}

.productoIndividual {
  margin-bottom: 10px;
}

h1 {
  text-align: center;
  font-size: 3rem;
}

#takeAway {
  margin-bottom: 8px;
  align-self: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 68px;
  }

  .menu {
    display: grid;
    grid-template-columns: 1fr;
    width: 90vw;
  }

  .hero {
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 90vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1500px) {
  .menu {
    width: 95vw;
  }

  .hero {
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 95vw;
  }
}