/* Footer */
footer {
    overflow: hidden;
    display: block;
    background: url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

footer .sobre {
    padding: 60px 0;
    padding-right: 60px;
}

footer .sobre img {
    filter: drop-shadow(3px 3px 2px grey);
    width: 225px;
}

footer .sobre p.description {
    margin: 30px 0;
    font-size: 14px;
    line-height: 24px;
}

footer .sobre a,
footer .sobre .endereco {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

footer .sobre i {
    color: var(--laranja);
    font-size: 18px;
}


/* Categorias */
footer .categorias {
    position: relative;
    padding: 60px;
}

footer .categorias * {
    position: relative;
    z-index: 10;
}

footer .categorias::after {
    content: '';
    width: 70vw;
    height: 100%;
    background: url(../img/bg-categorias.jpg) center center no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

footer .categorias h3 {
    color: #fff;
    font-weight: bold;
    border-bottom: 1px #326350 solid;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

footer .categorias ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

footer .categorias ul a {
    display: flex;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    gap: 15px;
    align-items: center;
}

footer .categorias ul a:hover {
    color: var(--laranja);
}

footer .categorias ul a:before {
    content: '';
    width: 5px;
    height: 14px;
    display: block;
    background: var(--laranja);
}

footer .copy {
    color: #979797;
    padding: 30px 0;
    font-size: 14px;
    border-top: 1px #dedede solid;
}

footer .copy .container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 769px){
  footer .copy{
    margin-bottom: 70px;
}  
}
/*
.botaoFixo {
    display: none;
}

@media all and (max-width: 768px) {

    .botaoFixo {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999;
        display: none;
        background: #fff;
        width: 100%;
        box-shadow: 0 0 10px #0000006e;
    }

    .botaoFixo .item {
        min-width: 50%;
        display: none;
    }

    .botaoFixo .item a {
        display: none;
        margin: 10px;
        background: #f07a20;
        padding: 12px;
        text-align: center;
        position: relative;
        padding-top: 16px;
        text-decoration: none;
        border-radius: 5px;
    }

    .botaoFixo .item a.whatsClass {
        background: #1b8743;
        display: none;
    }

    .botaoFixo .item i {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        background: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        line-height: 32px;
        font-size: 18px;
        color: #02293a;
    }

    .botaoFixo .item span {
        font-weight: bold;
        color: #fff;
        display: none;
    }
}*/