@import"https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap";

.container {
    margin-top: 75px;
    display: flex;
    justify-content: center
}

.container-area {
    width: 1300px;
    display: flex;
    flex-direction: row;
    margin: 25px 0
}

.models {
    display: none
}

html {
    scroll-behavior: smooth
}

.menu-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
    background: #fff
}

.logo {
    display: block;
    height: 55px;
    font-size: 2rem;
    font-weight: 600
}

.logo img {
    height: 100%
}

#checkbox {
    display: none
}

.menu_hamburger {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    z-index: 99
}

.line {
    position: absolute;
    width: 20px
}

.line-main::before,
.line-main::after,
.line-split::before,
.line-split::after {
    content: "";
    position: absolute;
    width: inherit;
    height: 2px;
    border-radius: 5px;
    background: #0d6efd;
    transition: transform .5s
}

.line-main::before {
    transform: translateY(-7px)
}

.line-main::after {
    transform: translateY(7px)
}

.line-split::before,
.line-split::after {
    width: 10px;
    transition: transform .5s, opacity .5s
}

.line-split::after {
    transform: translateX(10px)
}

#checkbox:checked~.line-main::before {
    transform: rotate(45deg)
}

#checkbox:checked~.line-main::after {
    transform: rotate(-45deg)
}

#checkbox:checked~.line-split::before {
    transform: translateX(-10px);
    opacity: 0
}

#checkbox:checked~.line-split::after {
    transform: translateX(20px);
    opacity: 0
}

.menu ul {
    display: flex;
    list-style: none
}

.menu ul a {
    text-decoration: none;
    color: inherit;
    margin: 5px 10px;
    position: relative;
    padding-bottom: 6px;
    display: block;
    font-size: .85rem;
    font-weight: 500
}

.menu ul a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1px;
    background: #0d6efd;
    transition: .2s ease-out
}

.menu ul a:hover::after,
.menu .active::after {
    left: 0%;
    width: 100%
}

.menuMobile-area {
    display: none
}

.container-menu-mobile {
    display: none;
    line-height: 46px;
    height: 45px;
    cursor: pointer
}

.fa-arrow-left {
    font-size: 1.6rem;
    color: #0d6efd
}

main {
    flex: 1
}

.titulo--h1 {
    font-weight: 300;
    margin-bottom: 15px;
    text-align: center
}

h1 {
    font-weight: 600
}

.item-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.item {
    text-align: center;
    width: 250px;
    margin: 8px;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .084);
    transition: all ease .2s;
    z-index: 1;
    cursor: pointer
}


.item a {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 15px
}

.item--img {
    width: 200px;
    height: 200px;
    margin: 35px 10px 0;
    background-color: #eee;
    border-radius: 50px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, .02);
    z-index: -1;
    overflow: hidden;
}

.item--img div {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item--add {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #0d6efd;
    text-align: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-top: -25px;
    font-weight: 600;
    transition: all ease .3s
}

.item--add:hover {
    background: #0056b3;
}

.item--price {
    font-size: 15px;
    color: #333;
    margin-top: 5px
}

.item--name {
    width: 200px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 5px 10px
}

.item--desc {
    width: 200px;
    font-size: .75rem;
    color: #555;
    padding: 10px 10px 20px
}

.item-info-area {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, .5);
    display: none;
    transition: all ease .5s;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    opacity: 0;
    z-index: 99
}

.item-info-body {
    width: 900px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(153, 153, 153, .342);
    display: flex;
    margin: 20px 0px
}

.item-info-body .modal {
    padding: 10px 50px
}

.item-img-bg {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px 10px 0px;
    overflow: hidden;
}

.item-img-bg img {
    height: auto;
    width: 400px;
    border-radius: 50px;
}

.item-img-bg--back {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #000
}

.itemInfo {
    flex: 1;
    padding-bottom: 50px
}

.itemInfo h1 {
    margin-top: 50px
}

.itemInfo .itemInfo--desc {
    font-size: 15px;
    color: #999;
    margin-top: 10px;
    width: 90%
}

.itemInfo--sector {
    color: #ccc;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 10px
}

.itemInfo--sizes {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden
}

.itemInfo--size {
    padding: 10px 15px;
    color: #000;
    background-color: #eee;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s
}

.itemInfo--size:hover {
    background-color: #ccc
}

.itemInfo--size span {
    font-size: 12px;
    color: #999;
    font-weight: normal
}

.itemInfo--size.selected {
    background-color: #0d6efd;
    color: #fff
}

.itemInfo--size.selected:hover {
    background-color: #0056b3;
}

.itemInfo--size.selected span {
    color: #fff
}

.itemInfo--price {
    display: flex;
    align-items: center
}

.itemInfo--actualPrice {
    font-size: 28px;
    width: 30%;
    margin-right: 30px
}

.itemInfo--qtarea {
    display: inline-flex;
    background-color: #eee;
    border-radius: 10px;
    height: 30px
}

.itemInfo--qtarea button {
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    font-size: 17px;
    outline: 0;
    cursor: pointer;
    padding: 0px 10px;
    color: #333
}

.itemInfo--qt {
    line-height: 30px;
    font-size: 12px;
    font-weight: bold;
    padding: 0px 5px;
    color: #000
}

.itemInfo--addButton {
    margin-top: 30px;
    padding: 20px 30px;
    border-radius: 20px;
    background-color: #0d6efd;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    margin-right: 30px;
    transition: all .3s
}

.itemInfo--addButton:hover {
    background-color: #0056b3;
}

.itemInfo--cancelButton {
    display: inline-block;
    cursor: pointer
}

.itemInfo--cancelMobileButton {
    display: none;
    height: 40px;
    line-height: 40px;
    margin-bottom: 5px;
    color: #888;
    font-weight: bold
}

@media(max-width: 1300px) {

    .menu-area,
    .container-area {
        padding: 0 8%
    }
}

@media(max-width: 1250px) {
    aside.show {
        width: 35%
    }
}

@media(max-width: 979px) {
    aside.show {
        width: 50%
    }
}

@media(max-width: 820px) {
    body {
        background: #fff;
        flex-direction: column;
        justify-content: center
    }

    .header {
        box-shadow: none;
    }

    .item {
        width: 280px;
        background: #fff;
        margin-top: 15px
    }

    .container-menu-mobile {
        display: flex
    }

    .menu_hamburger {
        display: inline-flex
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 98;
        display: flex;
        justify-content: center;
        width: 0px;
        height: 100vh;
        padding-top: 75px;
        background: rgba(255, 255, 255, .888);
        overflow-x: hidden;
        overflow-y: auto;
        transition: all ease .5s
    }

    .menu ul {
        flex-direction: column;
        padding-right: 40px
    }

    .menu li {
        display: block;
        padding: 8px;
        text-align: center
    }

    .menu-opened {
        width: 200px !important
    }

    .menuMobile-area {
        display: flex;
        z-index: 99;
        margin-right: 15px
    }

    .menu-closer {
        display: block;
        margin-bottom: 25px
    }

    .item-area {
        justify-content: flex;
        align-items: flex
    }

    .item-info-body {
        width: 100vw;
        display: block;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        z-index: 99
    }

    .item-info-body.modal {
        padding: 25px 40px;
        height: 100vh
    }

    .item-img-bg img {
        width: 90%;
        height: auto
    }

    .itemInfo h1 {
        margin-top: 5px;
        font-size: 22px
    }

    .itemInfo .itemInfo--desc {
        font-size: 12px
    }

    .itemInfo--sector {
        font-size: 15px;
        margin-top: 20px
    }

    .itemInfo--price {
        justify-content: space-between
    }

    .itemInfo--price .itemInfo--actualPrice {
        font-size: 22px
    }

    .itemInfo--size {
        padding: 10px;
        font-size: 18px
    }

    .itemInfo--size span {
        font-size: 18px
    }

    .itemInfo--qtarea {
        height: 40px
    }

    .itemInfo--qtarea button {
        font-size: 23px;
        padding: 0px 13px
    }

    .itemInfo--qt {
        line-height: 40px;
        font-size: 15px
    }

    .itemInfo--addButton {
        font-size: 15px;
        display: block;
        text-align: center;
        margin: 18px auto;
        padding: 15px 20px;
        border-radius: 10px
    }

    .itemInfo--cancelButton {
        display: none
    }

    .itemInfo--cancelMobileButton {
        display: block
    }
}