.bottom-nav{

    display:none;

}

@media(max-width:768px){

.bottom-nav{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    height:70px;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    border-top:1px solid #ececec;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    z-index:9999;

}

.bottom-nav a{

    flex:1;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:#777;

    font-size:23px;

    position:relative;

}

.bottom-nav a:hover{

    color:#d48a4f;

}

.bottom-nav small{

    font-size:11px;

    margin-top:3px;

}

.badge{

    position:absolute;

    top:7px;

    right:30%;

    width:18px;

    height:18px;

    background:#ff3b30;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:10px;

    font-weight:bold;

}

}

/*==========================
        FOOTER
==========================*/

.footer{

    margin-top:80px;

    background:#4b2b20;

    color:#fff;

}


.footer-container{

    width:90%;

    margin:auto;

    padding:60px 0;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}


.footer-logo img{

    width:140px;

    margin-bottom:20px;

}


.footer-logo p{

    line-height:1.7;

    color:#ddd;

}


.footer h3{

    margin-bottom:20px;

    color:#d68d52;

}


.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}


.footer-links a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}


.footer-links a:hover{

    color:#d68d52;

}


.footer-contato p{

    margin-bottom:12px;

    color:#ddd;

}


.footer-redes{

    display:flex;

    flex-direction:column;

}


.footer-redes a{

    color:white;

    font-size:26px;

    margin-bottom:15px;

    transition:.3s;

}


.footer-redes a:hover{

    color:#d68d52;

    transform:translateX(5px);

}


.footer-copy{

    text-align:center;

    padding:20px;

    background:#3b2219;

    color:#ccc;

    font-size:14px;

}

@media(max-width:768px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}


.footer-logo img{

    margin:auto;
    margin-bottom:20px;

}


.footer-redes{

    flex-direction:row;

    justify-content:center;

    gap:20px;

}

}

/* ==========================
      FOOTER MOBILE
========================== */

@media (max-width: 768px){

    .footer-container{

        display:flex !important;
        flex-direction:column !important;

        align-items:center;

        text-align:center;

        gap:35px;

        width:90%;

        margin:auto;

    }

    .footer-logo img{

        width:120px;

        margin:0 auto 15px;

    }

    .footer-links{

        align-items:center;

    }

    .footer-contato{

        text-align:center;

    }

    .footer-redes{

        display:flex;

        flex-direction:row;

        justify-content:center;

        gap:20px;

    }

    .footer-copy{

        font-size:13px;

        padding:18px;

    }

}