/*Redes sociais lateral*/


 footer .center {
     height: 80px;
 }

 .redes-sociais {
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 300px;
     position: absolute;
     left: 50%;
     transform: translate(-50%);
 }

 .redes-sociais a {
     text-decoration: none;
 }

 .redes-sociais-right {
     height: auto;
     position: fixed;
     top: 70%;
     right: 10px;
     transform: translate(0, -50%);
     z-index: 999;
     display: flex;
     flex-direction: column;
     transition: 1s;
 }

 .redes-sociais-right a {
     text-decoration: none;
     margin: 5px 0px;
     height: 50px;
     display: flex;
     align-items: center;
 }

 .bolinha-social {
     background: #efefef;
     width: 42px;
     height: 42px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     text-decoration: none;
     font-size: 1.250em;
     color: #f9f9f9;
     margin: 0 5px;
     transition: 0.5s;
 }

 .redes-sociais-rodape .bolinha-social:hover i.fa-whatsapp {
     color: #25D366;
 }

 .redes-sociais-rodape .bolinha-social:hover i.fa-youtube {
     color: #FF0000;
 }

 .redes-sociais-rodape .bolinha-social:hover i.fa-instagram {
     color: #C13584;
 }

 .redes-sociais-rodape .bolinha-social:hover i.fa-facebook-f {
     color: #3b5998;
 }

 .redes-sociais-rodape .bolinha-social:hover i.fa-linkedin {
     color: #2867B2;
 }

 .redes-sociais-rodape .bolinha-social:hover i.fa-twitter {
     color: #1DA1F2;
 }


 .redes-sociais-right .fa-facebook-f {
     color: var(--branco);
 }

 .redes-sociais-right .fa-twitter {
     color: var(--branco);
 }

 .redes-sociais-right .fa-linkedin {
     color: var(--branco);
     font-size: 1.1em;
 }

 .redes-sociais-right .fa-instagram {
     color: var(--branco);
     font-size: 1.1875em;
 }

 .redes-sociais-right .fa-whatsapp {
     color: var(--branco);
     font-size: 1.2em;
 }

 .redes-sociais-right .fa-youtube {
     color: var(--branco);
     font-size: 1.1em;
 }

 .bolinha-facebook {
     background: #3b5998 !important;
 }

 .bolinha-linkedin {
     background: #2867B2 !important;
 }

 .bolinha-instagram {
     background: #C13584 !important;
 }

 .bolinha-twitter {
     background: #1DA1F2 !important;
 }

 .bolinha-whatsapp {
     background: #25D366 !important;
 }

 .bolinha-youtube {
     background: #FF0000 !important;
 }

 .bolinha-tour {
     background: #354b9c;
     box-shadow: 2px 0px 6px 6px rgb(255 255 255 / 75%);
     -webkit-box-shadow: 0px 0px 6px 4px rgb(255 255 255 / 75%);
     -moz-box-shadow: 0px 0px 6px 6px rgba(255, 255, 255, 0.75);
 }

 .bolinha-tour img {
     width: 58px;
     margin-top: 4px;
 }

 .bolinha-tour:hover {
     background: #354b9c;
 }

 .redes-sociais-right .bolinha-social:hover {
     transform: scale(1.2);
 }

 @media (max-width: 768px) {
     .redes-sociais-right {
         top: -100%;
     }

     .mostrar-redes-sociais {
         top: 100px;
         transform: none;
     }
 }

 .redes-sociais-right2 {
     display: none;
 }

 @media (max-width: 1024px) {
     .redes-sociais-right .ocultarMobile {
         display: none;
     }

     .redes-sociais-right2 {
         height: auto;
         position: fixed;
         bottom: 60px;
         right: 10px;
         z-index: 999;
         display: flex;
         flex-direction: column;
         transition: 1s;
         transform: scale(1.2);
     }

     .redes-sociais-right2 a i {
         color: var(--branco);
     }

 }