/*CSS FOOTER*/
:root {
    --color-azul-oscuro: #283e73;
    --color-azul-claro: #219ace;
    --color-rojo-logo: #ee3238;
    --color-amarillo-logo: #fff215;
}

footer {
    background-color: var(--color-azul-oscuro);
    padding-top: 3rem;
}

div.container.contacts-section-footer {
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.logo-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-footer img {
    filter: drop-shadow(5px 2px 10px #000000);
}

.logo-footer p {
    max-width: 350px;
    text-align: center;
    color: white;
    margin-top: 1rem;
    margin-bottom: 0rem;
    padding: 0.5rem;
    background-color: hsla(0, 10%, 100%, .03);
    border-radius: 5px;
}

.contacts-section-footer h5 {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.contacts-section-footer .fa-ul {
    --fa-li-margin: 1.5em;
    list-style: none;
}

.contacts-section-footer .fa-ul li,
.links-interest-footer li {
    margin-top: 0.5rem;
}

.contacts-section-footer .fa-ul li span i {
    color: var(--color-amarillo-logo);
    font-size: 18px;
    vertical-align: middle;
}

.contacts-section-footer .fa-ul li a,
.contacts-section-footer .fa-ul li a address,
.links-interest-footer li a {
    /*Para que el transform: scale(1.01) funcione en los enlaces, la propiedad display debe estar en inline-block*/
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: transform 300ms;
}

.contacts-section-footer .fa-ul li a:hover,
.links-interest-footer li a:hover {
    transform: scale(1.01);
}

.links-interest-footer {
    padding-left: 0px;
    list-style: none;
}

.footer-separationline {
    --background-opacity: 0.5;
    height: 1px;
    background-color: rgb(33 154 206 / var(--background-opacity));
}

.img-payment-methods {
    display: block;
    max-width: 100%;
    height: auto;
}

div.footer-copyright {
    background-color: var(--color-azul-claro);
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

div.footer-copyright .local-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

div.footer-copyright .local-container p {
    margin-bottom: 0rem;
}

div.footer-copyright .local-container div a {
    display: inline-block;
    text-decoration: underline !important;
    color: white;
    transition: color .6s;
}

div.footer-copyright .local-container div a:hover {
    color: var(--color-azul-oscuro);
}

@media (max-width:768px) {
    div.footer-copyright .local-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width:576px) {

    div.footer-copyright .local-container * {
        text-align: center;
    }

    div.footer-copyright .local-container div span {
        display: inline-block;
    }
}

/*FIN CSS FOOTER*/