body {
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    line-height: 2em;
    font-size: 14px;
    padding: 0;
    margin: 0;
    background-color: #fff;
    color: #00204a;
    transition: .5s;
}

a {
    color: #005792;
    text-decoration: none;
}

    a:hover {
        color: #00bbf0;
    }

header {
    background-color: #00204a;
    color: #fff;
    height: 64px;
    font-size: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,.26);
    position: fixed;
    top: 0px;
    width: 100%;
}

header a {
    color: #fff;
}
    header a:hover {
        color: #00bbf0;
    }

header div {
    margin: 0 20px;
}

header img {
    max-height: 28px;
}

.code21-link {
    color: #361537;
    transition: 0.5s;
}

    .code21-link:hover {
        color: #8f358b;
    }

footer {
    background-color: #fdb44b;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

main {
    padding: 68px 0 48px;
    width: 90%;
    margin: auto;
    overflow: hidden;
}

hr {
    border: none;
    color: transparent;
    border-top: 1px solid lightgrey;
}

button {
    border: 1px solid #00204a;
    background-color: #005792;
    border-radius: 5px;
    color: #fff;
    padding: 10px 14px;
    font-size: 16px;
    transition: 0.2s;
}

    button:hover {
        border: 1px solid #005792;
        background-color: #00bbf0;
        cursor: pointer;
    }

    button:active {
        border: 1px solid #005792;
        background-color: #00bbf0;
        opacity: 0.9;
    }

input[type="text"] {
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: 0.5s;
    box-sizing: border-box;
}

    input[type="text"]:focus {
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
        border-color: #66afe9;
    }

.flex-container {
    display: flex;
    justify-content: center;
    flex-flow: row;
    flex-wrap: wrap;
}

.item-product {
    margin: 10px;
    width: 300px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 10px;
}

    .item-product:hover {
        background-color: #eee;
    }

    .item-product h2, .item-product p{
        text-align: left;
    }

.imagem-product {
    height: 200px;
}

.imagem-product img {
    vertical-align: middle;
    max-width: 200px;
    max-height: 200px;
}

.imagem-product-helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.div-image img{
    max-width: 360px;
    max-height: 280px;
}

.div-product {
    margin: 0 80px;
}

.pagination {
    padding: 8px;
    margin: 8px;
    border-radius: 10px;
    border: 1px solid #005792;
}

    .pagination:hover, .page-selected {
        background-color: #005792;
        color: #fff;
    }

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.space-div {
    margin: 20px;
}

.img-80-max {
    max-width: 80%;
}

@media (max-width: 767px) { 
    .brand-name {
        display: none;
    }
}