@charset "UTF-8";
@import './components/address.css';
*,
*::before,
*::after {
  box-sizing: border-box;
}

.footer {
    /* background-image: url("../images/footer-background.png"); */
    /* background-color: var(--color-primary-dark); */
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 32px 0;
    }
    .footer__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    }
    @media screen and (min-width: 768px) {
    .footer__container {
        flex-direction: row;
    }
    }
    .footer__nav, .footer__address {
    flex-direction: column;
    display: flex;
    text-align: left;
    gap: 20px;
    text-align: center;
    }
    .footer__nav:hover, .footer__address:hover {
    color: #cacaca;
    }


    .footer__address {
    fill: #fff;
    }
    @media screen and (min-width: 768px) {
    .footer__nav, .footer__address {
        flex-direction: row;
        flex-basis: 50%;
        text-align: left;
    }
    }
    .footer__logos {
    display: flex;
    fill: #fff;
    }
    @media screen and (min-width: 768px) {
    .footer-whatsapp {
        padding-top: 2px;
    }
    }

    @media screen and (max-width: 435px) {
.footer__logos {
align-items: center;
justify-content: center;
}
}
.footer__logo, .footer__menu {
flex-grow: 1;
width: 100%;
}
.footer::before, .footer::after {
position: absolute;
background-repeat: no-repeat;
content: "";
bottom: 0;
}

.footer__link {
color: #fff;
line-height: 1.5;
text-decoration: none;
margin-bottom: 16px;
}
.footer__link:hover {
color: #cacaca;
font-weight: 500;
}