.iledysile-footer {
    padding: 3rem 1rem;
    font-size: 0.8rem;
}

.footer__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; 
    text-align: center;
}


/* Lista de enlaces */
.footer__links-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Enlaces */
.menu-item__link {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.menu-item__link:hover {
    color: #000;
}

@media (max-width: 768px) {
    .footer__navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: center; 
    }

    .footer__trademark {
        margin-bottom: 1rem; 
    }

    .footer__links-list {
        display: flex;
        justify-content: center; 
        gap: 1.5rem;
        width: 100%; 
    }
}
