/* MAPA */
.mapa-container {
    display: flex;
    justify-content: center;
}

.footer-contacto {
    padding: 10px 20px;
    color: var(--white);
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    max-width: 185px;
    height: auto;
    margin: 15px auto 18px;
}

.footer-direccion {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 232px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 400;
    filter: drop-shadow(white 0rem 0rem 0px);
}

.footer-direccion a {
    color: var(--white);
    text-decoration: none;
}

.footer-menus {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.footer-menu {
    justify-content: space-evenly;
}

.footer-menu,
.footer-menu-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-family: "Lato", sans-serif;
    font-style: normal;
}

.footer-menu-legal {
    justify-content: center;
    gap: 20px;
}

.footer-menu li a,
.footer-menu-legal li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-style: normal;
    filter: drop-shadow(white 0rem 0rem 0px);
}

.footer-menu li a {
    font-weight: 700;
    text-transform: uppercase;
}

.footer-menu-legal li a {
    font-weight: 400;
}

.footer-kit-section {
    text-align: center;
    margin: 0 auto;
    max-width: 930px;
    padding: 30px 15px 40px;
    font-size: 14px;
    display: grid;
    gap: 1.5em;
}

.kit-imgs {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
}

.kit-imgs img {
    max-width: 255px;
    width: 100%;
    height: auto;
}


@media (max-width: 600px) {
    .kit-imgs {
        flex-flow: column;
        align-items: center;
        gap: 2em;
    }

    .footer-contacto {
        padding: 10px 20px 30px;
    }
}

@media (max-width: 510px) {
    .footer-menu-legal, .footer-menu {
        gap: 10px;
    }

    .footer-direccion {
        margin-bottom: 25px;
    }

    .footer-menus {
        margin-top: 25px;
    }
}