.c-footer {
    border-top: 1px solid #000000;
    background-color: var(--bg-footer);
    color: var(--text-footer);

    padding: 3rem 4rem;
    display: flex;
    gap: 3rem;
}

.c-footer h2 {
    font-size: var(--fuente-subtitulo);
}

.c-footer a {
    font-size: var(--fuente-texto);
    color: var(--text-footer);
    text-decoration: none;
}

.c-footer-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.c-footer-logo img {
    width: 90px;
    padding-bottom: 3px;
}

.siguenos {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.redes {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.redes img {
    width: 15px;
}


.c-footer-productos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.c-footer-ubicanos {
    flex: 1;
}

.c-footer-metodos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.icon-metodos {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-metodos img {
    width: 20px;
    height: min-content;
}

.reclamacion {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.reclamacion img {
    width: 26px;
}


@media screen and (max-width: 768px){
    .c-footer{
        flex-direction: column;
        padding-inline: 2rem;
    }

    .c-footer-logo{
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .siguenos{
        flex-direction: row;
        align-items: center;
    }
}


@media screen and (max-width: 320px){
    .c-footer-logo{
        flex-direction: column;
    }
}
