
/* Footer */
footer {padding-bottom: 90px; font-size:13px; margin-top: 0;  background: #f2f2f2;}

    footer .logo {display: block; margin-bottom: 70px; position: relative; }
    /*footer .logo:after {content:''; width:70px; border-radius: 5px; background: #F2F2F2; display: block; height:4px; position: absolute; bottom: -30px;}*/
    footer .footerRow{ position: relative; padding: 30px 0 0 0;}
    footer .secundary {display: flex;}
    footer .content{border: none;    }
    footer .contLogo{}
    footer .contSocial{border-top: 1px solid #CED4DA; position: absolute; bottom: 0;}
    
    footer .dados {display: flex; flex:1; gap: 50px;}
    footer .dados p {font-size: 13px; line-height: 18px;}
    footer .dados p strong {display: block;}
    footer .dados a {color:var(--preto);}
    footer .dados a:hover {text-decoration: underline; color:#000;}

    footer .menu {display: flex; flex-wrap: nowrap; gap:30px}
    footer .menu .bloco {min-width: 170px;}
    footer .menu a {display: block; color:#4D4D4D; line-height: 20px;}
    footer .menu a:hover {text-decoration: underline; color:#000;}
    footer .menu h3 {font-size: 15px; font-weight: bold; margin-bottom: 15px;}
    footer .menu ul {margin-bottom: 15px;}

    footer .social p {margin-bottom: 20px; font-weight: bold; color: #404040;}
    footer .social ul {display: flex; flex-wrap: nowrap; gap:15px;}
    footer .social ul a {display: block; color:#404040; font-size: 24px;}
    footer .social ul a:hover {color: #00b6}

    footer .unidade{line-height: 1.3; font-size: 16px; }


    footer .links__footer .container .links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px #50c0d5 solid;
        min-width: 100%;
        gap: 20px;
        justify-content: center;
    }

    footer .links__footer .container .links a {
        display: block;
        color: #4D4D4D;
    }

    footer .links ul li a {
        font-size: 16px;
        color: #404040;
        line-height: 2;
    }

    footer .links ul li strong {
        font-size: 16px;
        color: #404040;
        line-height: 2;
    }

    footer .links ul li a:hover {
        text-decoration: underline;
    }
   

    .content {
        display: flex; /* Aplica flexbox para alinhar os itens */
        flex-wrap: wrap; /* Permite que os itens quebrem para uma nova linha conforme necessÃ¡rio */
        gap: 20px; /* EspaÃ§amento entre os itens */
      }
    .unidade p {
        margin: 0; /* Remove a margem padrÃ£o do parÃ¡grafo */
      }


/* WhatsApp */
.whats__fluante {
    position: fixed;
    right: 0;
    bottom: 80px;
    width: 70px;
    height: 70px;
    display: flex;
    background: #00c50f;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    border-radius: 50px;
    z-index: 999;
}

@media (max-width:768px) {
    footer .contSocial{position: static;}
    footer .logo {margin-bottom: 0; }

    .whats__fluante {
        right: 0;
        bottom: 80px;
    }
}

.whats__fluante{

    animation: go-back 2s;

}

@keyframes go-back {
    from {
      transform: translateY(200px);
    }
    to {
      transform: translateY(0);
    }