/*Menu*/
.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 1rem;
}

.menu__header img {
    width: 16px;
}

.menu__title {
    font-weight: 700;
    font-size: 14px;
}

.menu__list__item {
    display: none;
    font-size: 14px;
}

.menu__list__item:last-child {
    display: block;
    padding-right: 1rem;
}

/*Escritorio*/
@media screen and (min-width: 1024px) {
    .menu {
        padding-right: calc((100% - 1200px)/2);
        padding-left: calc((100% - 1200px)/2);
    }

    .menu__title {
        font-size: 16px;
    }

    .menu__header img {
        width: 18px;
    }
    
    .menu__list {
        display: flex;
        flex-direction: row;
    }

    .menu__list__item {
        display: flex;
        padding: .5rem;
        font-size: 16px;
    }

    .menu__list__item:hover {
        border-bottom: thin solid var(--color-de-boton);
    }

    .menu__list__item:last-child {
        font-weight: 700;
    }
}

/*Tablet*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .menu__list__item:last-child {
        font-weight: 700;
    }
}