/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#6F5447;

    color:#FFF;

    padding:80px 0 30px;

}

footer p{

    color:rgba(255,255,255,.80);

    line-height:1.9;

    margin-bottom:25px;

}

footer h5{

    font-family:'Playfair Display',serif;

    font-size:24px;

    margin-bottom:25px;

    color:#FFF;

}

footer ul{

    margin:0;

    padding:0;

    list-style:none;

}

footer ul li{

    margin-bottom:14px;

}

footer ul li a{

    color:rgba(255,255,255,.80);

    transition:.30s;

}

footer ul li a:hover{

    color:#F8D9DE;

    padding-left:8px;

}

/*==================================
        REDES SOCIAIS
==================================*/

.social-footer{

    display:flex;

    gap:15px;

}

.social-footer a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#FFF;

    transition:.35s;

    font-size:20px;

}

.social-footer a:hover{

    background:#F8D9DE;

    color:#8A6A56;

    transform:translateY(-5px);

}

/*==================================
        COPYRIGHT
==================================*/

.footer-copy{

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:60px;

    padding-top:25px;

    font-size:15px;

    color:rgba(255,255,255,.75);

}

/*==================================
        WHATSAPP FIXO
==================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#FFF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:.35s;

    animation:pulse 2s infinite;

}

.whatsapp-float:hover{

    color:#FFF;

    transform:scale(1.10);

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.6);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

/*==================================
        RESPONSIVO
==================================*/

@media(max-width:768px){

    footer{

        text-align:center;

    }

    .social-footer{

        justify-content:center;

        margin-bottom:25px;

    }

    .footer-copy{

        text-align:center;

    }

    .whatsapp-float{

        width:58px;

        height:58px;

        font-size:28px;

        right:18px;

        bottom:18px;

    }

}