.descuento{
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.932);
}

.descuento p {
  color: white;
  font-weight: 400;
  margin: 0%;
}

.wapcall {
  width: 6em;
  position: fixed;
  right: 5%;
  bottom: 5%;
}

.wapcall img {
  width: 8em;
}

.carritobutton {
    padding: 1.4em 1.6em;
    position: fixed;
    right: 8vh;
    bottom: 5vh;
    background-color: rgb(225, 135, 0);
    border-radius: 50%;
  }
  
  .carritobutton:hover {
    background-color: rgb(205, 123, 0);
   }
   
  .carritobutton span {
   color: rgb(255, 255, 255);
   font-size: 4em;
  }
  
@media only screen and (max-width: 840px) {

  .descuento{
    display: none;
    text-align: center;
    padding: 0em 0.5em;
  }

  .wapcall {
    width: 4em;
    position: fixed;
    right: 5%;
    bottom: 5%;
  }
  
  .wapcall img {
    width: 8em;
  }
  
  .carritobutton {
    padding: 1em 1em;
    right: 1vh;
    bottom: 2vh;
  }
  

}