 /* ======== Whatsapp =========*/
 
 .action a {
     color: #000;
     text-decoration: none;
 }
 
 .action {
     position: fixed;
     bottom: 30px;
     left: 20px;
     width: 80px;
     height: 80px;
     background: rgb(8, 245, 146);
     border-radius: 50%;
     cursor: pointer;
     box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
     z-index: 9999999;
 }
 
 .action span img {
     position: relative;
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     /*ALTEREAQUIACORDOÍCONEDOBOTÃO*/
     /*font-size: 60px;
   */
     transition: 0.3s ease-in-out;
     -webkit-transition: 0.3s ease-in-out;
     -moz-transition: 0.3s ease-in-out;
     -ms-transition: 0.3s ease-in-out;
     -o-transition: 0.3s ease-in-out;
 }
 
 .action.active span {
     transform: rotate(720deg);
 }
 
 .action ul {
     font-family: 'Raleway', sans-serif !important;
     font-size: 1em;
     position: absolute;
     margin-bottom: 20px;
     left: 5px;
     background: #fff;
     min-width: 200px;
     padding: 10px;
     border-radius: 20px;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
     box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
 }
 
 .action.active ul {
     font-family: 'Raleway', sans-serif !important;
     bottom: 65px;
     opacity: 1;
     visibility: visible;
     transition: 0.3s;
 }
 
 .action.active ul li {
     list-style: none;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     padding: 10px 0;
     transition: 0.3s;
     font-size: 1em;
 }
 
 .action ul li:hover {
     font-weight: 600;
 }
 
 .action ul li:not(:last-child) {
     border-bottom: 1px solid rgba(0, 0, 0, 0.5);
 }
 
 .action ul li img {
     margin-right: 10px;
     transform: scale(0.8em);
 }
 
 .action ul li:hover img {
     opacity: 0.8;
 }
 
 .msg {
     position: fixed;
     bottom: 40px;
     left: 105px;
     width: 200px;
     height: 55px;
     background: rgb(8, 245, 146);
     border-radius: 10px;
     cursor: pointer;
     box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
     visibility: hidden;
     z-index: 999999;
 }
 
 .msg span {
     position: relative;
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #6a515e;
     font-size: 1em;
     transition: 0.5s ease-in-out;
     font-weight: bold;
 }
 /* STYLE DO FRAME DO BLIP CHAT */
 
 #blip-chat-open-iframe {
     display: none !important;
 }
 
 #blip-chat-container {
     height: 100% !important;
     bottom: 0 !important;
     right: 0 !important;
 }
 
 #blip-chat-iframe {
     position: absolute !important;
     top: 0 !important;
     right: -400px !important;
     bottom: 0 !important;
     height: 100% !important;
     max-height: 100% !important;
     transform: none !important;
     opacity: 1 !important;
     box-shadow: none !important;
     transition: 0.5s !important;
 }
 
 #blip-chat-iframe.blip-chat-iframe-opened {
     right: 0 !important;
     box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2) !important;
 }
 /* ======== End Whatsapp =========*/
 
 @media (max-width:500px) {
     .action {
         width: 60px;
         height: 60px;
     }
     .msg {
         display: none;
     }
     .action ul {
         font-size: 16px;
         margin-bottom: 15px;
         min-width: 120px;
         padding-left: 10px;
     }
 }
 
 @media (max-width:1024px) {
     .action ul li:hover {
         font-weight: 100;
     }
     .action ul li:hover img {
         opacity: 1;
     }
 }