/* IMPORTAÇÃO DE FONTE */
@import url('https://fonts.googleapis.com/css2?family=Jaldi:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaldi:wght@400;700&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

@media (min-width: 1100px) {
    * {
        margin: 0;
        box-sizing: border-box;
        transition: all 300ms ease;
    }

    #header {
        height: 400px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .imgFitCover {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease-out;
    }

    #header>div {
        background-color: rgba(147, 197, 253, 0.5);
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
    }

    #header>h1 {
        position: absolute;
        font-family: "Zilla Slab";
        font-weight: bold;
        font-size: 64px;
        text-align: center;
        width: 100%;
        top: 50%;
        transform: translate(0, -50%);
    }

    #promo {
        height: 133px;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 25px;
    }

    #promo>div {
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        height: 133px;
        width: 100%;
    }

    #promo>h4 {
        font-family: "Zilla Slab";
        font-size: 28px;
        position: absolute;
        color: #fff;
        width: 770px;
        -webkit-text-stroke: 1.5px #000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    #produtos {
        display: flex;
    }

    #filtro {
        font-family: "Zilla Slab";
        width: 25%;
        padding-left: 15px;

        h2 {
            font-size: 24px;
        }

        h3,
        h4 {
            font-size: 20px;
        }

        ul,
        li {
            list-style: none;
        }

        ul {
            padding-left: 20px;
        }
    }

    .listfilter {
        display: flex;
    }

    ul.listfilter {
        flex-direction: column;
    }

    li.listfilter {
        flex-direction: row;
    }

    li.listfilter>input {
        margin-right: 10px;
    }

    #gradeprodutos {
        position: relative;
        width: 75%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .itemgrade {
        font-family: "Zilla Slab";
        font-size: 20px;
        font-weight: 400;
        width: 260px;
        margin-bottom: 25px;
        cursor: pointer;

        a {
            text-decoration: none;
            color: #000;
        }

        img {
            width: 260px;
            border-radius: 10px;
        }

        p {
            padding: 5px;
            padding-right: 5px;
        }
    }

    .itemgrade:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px black;
        border-radius: 10px;
    }
}

@media (max-width: 550px) {
    * {
        margin: 0;
        box-sizing: border-box;
        transition: all 300ms ease;
    }

    #header {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .imgFitCover {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease-out;
    }

    #header>div {
        background-color: rgba(147, 197, 253, 0.5);
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
    }

    #header>h1 {
        position: absolute;
        font-family: "Zilla Slab";
        font-weight: bold;
        font-size: 48px;
        text-align: center;
        width: 100%;
        top: 50%;
        transform: translate(0, -50%);
    }

    #promo {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 15px;
    }

    #promo>div {
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        height: 133px;
        width: 100%;
    }

    #promo>h4 {
        font-family: "Zilla Slab";
        font-size: 14px;
        position: absolute;
        color: #fff;
        width: 100%;
        -webkit-text-stroke: 0.7px #000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    #produtos {
        display: flex;
        flex-direction: column;
    }

    #filtro {
        font-family: "Zilla Slab";
        width: 90%;
        margin: 0 0 15px 25px;

        h2 {
            font-size: 15px;
        }

        h3,
        h4 {
            font-size: 13px;
        }

        ul,
        li {
            list-style: none;
        }

        ul {
            padding-left: 20px;
        }
    }

    #filtro>ul {
        display: flex;
        flex-direction: row;
    }

    .listfilter {
        display: flex;
    }

    ul.listfilter {
        flex-direction: column;
    }

    li.listfilter {
        flex-direction: row;
    }

    li.listfilter>input {
        margin-right: 10px;
    }

    #gradeprodutos {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        margin: 0 5px;
    }

    .itemgrade {
        font-family: "Zilla Slab";
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 25px;
        cursor: pointer;

        a {
            text-decoration: none;
            color: #000;
        }

        img {
            width: 100%;
            border-radius: 10px;
        }

        p {
            padding: 5px;
            padding-right: 5px;
        }
    }

    .itemgrade:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px black;
        border-radius: 10px;
    }
}

@media (min-width: 551px) and (max-width: 1099px){
    * {
        margin: 0;
        box-sizing: border-box;
        transition: all 300ms ease;
    }

    #header {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .imgFitCover {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease-out;
    }

    #header>div {
        background-color: rgba(147, 197, 253, 0.5);
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
    }

    #header>h1 {
        position: absolute;
        font-family: "Zilla Slab";
        font-weight: bold;
        font-size: 48px;
        text-align: center;
        width: 100%;
        top: 50%;
        transform: translate(0, -50%);
    }

    #promo {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 15px;
    }

    #promo>div {
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        height: 133px;
        width: 100%;
    }

    #promo>h4 {
        font-family: "Zilla Slab";
        font-size: 14px;
        position: absolute;
        color: #fff;
        width: 100%;
        -webkit-text-stroke: 0.7px #000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    #produtos {
        display: flex;
        flex-direction: column;
    }

    #filtro {
        font-family: "Zilla Slab";
        width: 90%;
        margin: 0 0 15px 25px;

        h2 {
            font-size: 22px;
        }

        h3,
        h4 {
            font-size: 20px;
        }

        ul,
        li {
            list-style: none;
        }

        ul {
            padding-left: 20px;
        }
    }

    #filtro>ul {
        display: flex;
        flex-direction: row;
    }

    .listfilter {
        display: flex;
    }

    ul.listfilter {
        flex-direction: column;
    }

    li.listfilter {
        flex-direction: row;
    }

    li.listfilter>input {
        margin-right: 10px;
    }

    #gradeprodutos {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        margin: 0 5px;
    }

    .itemgrade {
        font-family: "Zilla Slab";
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 25px;
        cursor: pointer;

        a {
            text-decoration: none;
            color: #000;
        }

        img {
            width: 100%;
            border-radius: 10px;
        }

        p {
            padding: 5px;
            padding-right: 5px;
        }
    }

    .itemgrade:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px black;
        border-radius: 10px;
    }
}