/* Footer */
.footer {
    width: 100%;
    background: var(--bg-oscuro);
    border-top: var(--borde);
    padding: var(--padding);
    min-height: 300px;
}

.footerContenedor {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2rem;
}

.logoFooter img {
    max-width: 40px;
    height: 100%;
    align-items: center;
}

/* 
* Logo SVG adaptativo en footer
* Hereda el color blanco del contenedor
*/
.logoFooter .logoSvg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-blanco);
}

.logoFooter .logoSvg svg {
    width: 40px;
    height: auto;
    color: inherit;
}

footer a {
    color: var(--text-blanco);
    opacity: 0.7;
}

footer a:hover {
    opacity: 1;
}

footer h3 {
    color: white;
    font-size: 17px;
    padding-bottom: 5px;
}

ul.footer-menu-marcas,
ul.footer-menu-productos {
    height: 180px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 40px;
}

footer a {
    color: var(--text-blanco);
    opacity: 0.7;
    font-size: 13px;
    font-weight: 400;
}

.footerBlock {
    display: flex;
    justify-content: space-between;
}

.footerBlock p,
.footerBlock a {
    color: white;
    opacity: 0.7;
    white-space: nowrap;
    font-size: 12px;
}

@media (max-width: 900px) {
    .footerContenedor {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ul.footer-menu-marcas,
    ul.footer-menu-productos {
        height: unset;
    }

    .footerBlock {
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 10px;
    }
}
