
  
  a {
    color: inherit;
    text-decoration: none;
  }
  

  
  hr {
    border-color: var(--hr-color);
    margin: 20px 0;
  }
  
  .menu {
    display: flex;
    justify-content: center;
  }
  
  .menu li {
    margin-right: 70px;
  }
  
  .menu a {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .menu a span {
    transition: transform 0.2s ease-out;
  }
  
  .menu a span:first-child {
    display: inline-block;
    padding: 10px;
  }
  
  .menu a span:last-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
  }
  
  .menu i {
    font-size: 30px;
  }
  
  .menu a:hover span:first-child {
    transform: translateY(100%);
  }
  
  .menu a:hover span:last-child,
  .menu[data-animation] a:hover span:last-child {
    transform: none;
  }
  
  .icon-fire-work {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: -1px;
    background-color: currentColor;
    -webkit-mask-image: url('../imgs/icons-menu/fire-work-icon.png');
    mask-image: url('../imgs/icons-menu/fire-work-icon.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    mask-mode: alpha;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
    z-index: 1000;
    animation: whatsapp-pulse 2.5s infinite;
    transition: transform 0.2s ease;
  }

  .whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
  }

  @keyframes whatsapp-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 2px 2px 10px rgba(0, 0, 0, 0.35);
    }
    70% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 2px 2px 10px rgba(0, 0, 0, 0.35);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 2px 2px 10px rgba(0, 0, 0, 0.35);
    }
  }

  /* ANIMATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .menu[data-animation="to-top"] a span:last-child {
    transform: translateY(100%);
  }
  
  .menu[data-animation="to-top"] a:hover span:first-child {
    transform: translateY(-100%);
  }
  
  .menu[data-animation="to-right"] a span:last-child {
    transform: translateX(-100%);
  }
  
  .menu[data-animation="to-right"] a:hover span:first-child {
    transform: translateX(100%);
  }
  
  .menu[data-animation="to-left"] a span:last-child {
    transform: translateX(100%);
  }
  
  .menu[data-animation="to-left"] a:hover span:first-child {
    transform: translateX(-100%);
  }
  

  