   /* 11 */
   .btn-11 {
    border: none;
    /*background: rgb(251,33,117);
    background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%);*/
    color: #fff;
    overflow: hidden;
  }
  .btn-11:hover {
      text-decoration: none;
      color: #fff;
  }
  .btn-11:before {
      position: absolute;
      content: '';
      display: inline-block;
      top: -180px;
      left: 0;
      width: 30px;
      height: 100%;
      background-color: #fff;
      animation: shiny-btn1 3s ease-in-out infinite;
  }
  .btn-11:hover{
    opacity: .7;
  }
  .btn-11:active{
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.2),
      inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
  }
  @-webkit-keyframes shiny-btn1 {
      0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
      80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
      81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
      100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
  }

/*:::::::::::::INI EFECTO SHINE::::::::::::::::::*/
.btn-shine i{ font-size:34px;}
.btn-shine{
    /*position: absolute;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 12px 0;
    color: #ffffff;
    background: linear-gradient(to right, #4d4d4d 0, white 10%, #4d4d4d 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
}
    
@keyframes shine {
    0% { background-position: 0 }
    60% {background-position: 180px }
    100% {background-position: 180px}
}
/*:::::::::::::FIN EFECTO SHINE::::::::::::::::::*/

/* 3 */
.btn-3 {
    padding:0; 
    border: none;
}
.btn-3 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px; 
}
.btn-3:before, .btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: rgb(1, 130, 67); 
    transition: all 0.3s ease;
}
.btn-3:before {
    height: 0%;
    width: 2px;
}
.btn-3:after {
    width: 0%;
    height: 2px;
}
.btn-3:hover{
    background: transparent;
    box-shadow: none;
}
.btn-3:hover:before {
    height: 100%;
}
.btn-3:hover:after {
    width: 100%;
}
.btn-3 span:hover{
    color: rgba(2,126,251,1);
}
.btn-3 span:before,
.btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: rgb(1, 130, 67); 
    transition: all 0.3s ease;
}
.btn-3 span:before {
    width: 2px;
    height: 0%;
}
.btn-3 span:after {
    width: 0%;
    height: 2px;
}
.btn-3 span:hover:before {
    height: 100%;
}
.btn-3 span:hover:after {
    width: 100%;
}


/*:::::::::::::::REDES SOCIALES:::::::::::::::::*/
.middlew {
    /*position: absolute;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    /*width: 100%;*/
    float:right;
    text-align: center;
  }

  .btnw {
    /*float: right;*/
    display: block;
    width: 43px;
    height: 41px;
    background: #007bff;
    margin: 7px;
    border-radius: 50%;
    box-shadow: 0 5px 15px -5px #00000070;
    color: #fff;
    overflow: hidden;
    position: relative;
  }

  .color_you {
    background: #d02422;
  }

  .color_whatsap {
    background: #00b07c;
  }

  .btnw i {
    line-height: 41px;
    font-size: 17px;
    transition: 0.2s linear;
  }

  .btnw:hover i {
    transform: scale(1.3);
    color: #f1f1f1;
  }

  .btnw::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: #3498db;
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
  }

  .btnw:hover::before {
    animation: aaa 0.7s 1;
    /*Here, using top: -10%; caused a problem overlapping the animation.*/
    top: -10%;
    left: -10%;
  }

  @keyframes aaa {
    0% {
      left: -110%;
      top: 90%;
    }
    50% {
      left: 10%;
      top: -30%;
    }
    100% {
      left: -10%;
      top: -10%;
    }
  }
/*:::::::::::::::REDES SOCIALES:::::::::::::::::*/









