/* Estilos para hacer el menú responsive */
@media screen and (max-width: 768px) {
  .sticky-menu {
    flex-direction: column;
    text-align: center;
  }
  
  .menu-button {
    width: 100%;
  }
}

.sticky-menu {
  position: fixed;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
    background: #FFF;
    box-shadow: 0 3px 6px 2px rgba(42,42,42,.4);
    transition: all .3s;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  opacity: 0;
  transition: bottom 0.3s, opacity 0.3s;
  width:100%
}

.sticky-menu.show {
  bottom: 0;
  opacity: 1;
}

.sticky-menu.hide {
  transform: translateY(100%);
  transition: transform 0.3s;
}



.menu-button{
  font-size:12px;
width: 296px;
  color: #ffffff;
    background-color: #E83636;
    
   border: 1px solid #ffffff;
    font-weight: bold;
    border-radius: 0;
  padding:5px;10px;
}

.menu-button:hover{
background-color: #4c9dd5; border: 1px solid #4c9dd5;
}