.bottom-menu {
    position: fixed;
    bottom: 0;
    height: 5rem;
    width: 100%;
    background-color: var(--antaq-azul);
    z-index: 1000;
}

.bottom-menu ul {
    padding: 0.5rem;
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bottom-menu li {
    flex: 1;
    max-width: 20rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}


.bottom-menu a {
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    height: 100%;
    display: block;
    color: #4576a4;
}

.bottom-menu .icon {
    color: #4576a4;
    font-size: 2rem;
}

.bottom-menu a.active {
    color: white;
}

.bottom-menu .icon.active {
    color: white;
}