@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    margin: 0 336px;
}

/* HEADER  */

nav {
    z-index: 999999;
    position: relative;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.10);
}

.info-menu {
    background-color: #333333;
    height: 52px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.c-info-menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 22px;
}

.info-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
}

.info-menu-sociais {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 100;
}

.info-menu-sociais a i:hover {
    color: #F0162B;
    transition: all .3s;
}

.info-menu-sociais i {
    font-size: 26px;
    color: #fff;
}

.item-info-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-info-menu i {
    font-size: 26px;
    color: #fff;
}

.item-info-menu a i:hover {
    color: #F0162B;
    transition: all .3s;
}

.sociais-wrapper a i:hover {
    color: #F0162B;
    transition: all .3s;
}

.imgs-footer img:hover {
    transform: scale(1.05);
    transition: all .3s;
}

.item-info-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-info-menu p,
.item-info-menu p a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    font-family: Montserrat;
    text-decoration: none;
}

.navbar {
    width: 100%;
    height: 106px;
    background-color: rgb(255, 255, 255);
}

.c-navbar {
    display: flex;
    height: 100%;
    padding: 22px 0;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.itens-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    transition: opacity 0.5s ease;
}

.itens-nav li {
    list-style: none;
}

.itens-nav a {
    text-decoration: none;
    color: #324054;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    transition: all ease .2s;
    font-weight: 600;
}

.search path {
    fill: red;
    transition: all ease .2s;
    color: red;
}

.itens-nav a:hover {
    color: #E30613;
    transition: all ease .2s;
}

.itens-nav .active-link {
    color: #E30613;
}

.btn-ir-para-loja {
    background-color: #E30613;
    border-radius: 6px;
    text-decoration: none;
    padding: 12px 16px;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.btn-ir-para-loja:hover {
    background-color: rgb(145, 20, 20);
    transition: all .3s ease;
}

.box-right {
    display: flex;
    align-items: center;
    gap: 58px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.search {
    cursor: pointer;
}

.box-search {
    position: absolute;
    display: flex;
    align-items: center;
    height: 56px;
    background-color: #E30613;
    right: 0;
    width: 0px;
    border-radius: 100px;
    border: 1px solid #E30613;
    display: none;
    transition: width 0.5s ease;
}

.box-search input {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: none;
    padding: 0 32px;
    font-size: 16px;
    font-family: Roboto;
    color: #838383;
    outline: none;
}

/* -----  */


.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 240px;
    margin: 0 20px;
    font-size: large;
    height: 100%;
    display: flex;
    align-items: center;
}

.custom-select {
    background-color: #E30613;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    border: 0;
    outline: none;
    user-select: none;
    border-radius: 4px;
    font-family: Roboto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select svg {
    width: 12px;
    height: 10px;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #E30613;
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 1000;
    border: solid 2px #990a16;
    border-top: none;
}

.custom-options li {
    padding: 5px 10px;
    cursor: pointer;
    list-style: none;
    font-family: Roboto;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-options li svg {
    width: 20px;
    height: 15px;
}

.custom-options li img {
    width: 20px;
    height: 15px;
}

.custom-options li:hover {
    border-radius: 8px;
    background-color: #990a16;
}

.custom-select-wrapper:hover .custom-options {
    display: block;
}

/* ---  */

.box-search button {
    position: absolute;
    right: 9%;
    top: 13px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.box-search i {
    position: absolute;
    right: 5%;
    font-size: 25px;
    color: #324054;
    cursor: pointer;
}

.open-menu {
    display: none;
}

.close-menu {
    display: none;
}

/* --  */

.itens-nav.hide {
    opacity: 0;
}

.box-search.visible {
    display: flex;
    width: 600px;
}

/* --  */

.nav-mob {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 106px;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    z-index: 10;
}

/* FOOTER  */

.nav-footer {
    background-color: #333;
    padding: 40px 0;
}

.c-nav-footer {
    display: flex;
    justify-content: space-between;
    margin: 0 200px;
}

.sociais-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sociais-wrapper i {
    font-size: 28px;
    color: #fff;
}

.nav-wrapper {}

.nav-wrapper1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.nav-wrapper2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.selos-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 46px;
}

.box-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 100px;
}

.links {
    display: flex;
    gap: 33px;
}

.nav-footer li {
    list-style: none;
}

.links a {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.links a:hover {
    color: #E30613;
    transition: all .3s ease;
}

.sublinks-wrapper {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-top: 24px;
}

.sublinks {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    gap: 7px;
}

.sublinks a {
    color: #FFF;
    font-family: Montserrat;
    text-decoration: none;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.devolucao-produtos {
    text-decoration: none;
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.devolucao-produtos:hover {
    color: #E30613;
    transition: all .3s ease;
}

.sublinks a:hover {
    color: #E30613;
    transition: all .3s ease;
}

.nav-wrapper3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.nav-wrapper3 li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-wrapper3 li img {
    width: 32px;
}

.nav-wrapper3 li p,
.nav-wrapper3 li a {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.nav-wrapper3 li p span {
    color: #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.mercado-footer {
    align-items: flex-start !important;
}

.nav-wrapper4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.nav-wrapper4 h3 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.imgs-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-footer {
    padding: 25px 0;
}

.c-info-footer {
    display: flex;
    justify-content: space-between;
}

.c-info-footer p {
    color: #333;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.c-info-footer a {
    color: #176eac;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

/* BANNER  */

.banner {
    height: 525px;
    width: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.c-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.c-banner h1 {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-weight: 700;
}

/* FRAMES  */

.frames {
    padding: 50px 0;
}

.category-frames {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-frames {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box-search-frames {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.search-frames {
    width: 67%;
}

.category-frames {
    width: 33%;
}

.box-search-frames h2 {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.inp-search-frames {
    border-radius: 66px;
    border: 1px solid #000;
    height: 64px;
    position: relative;
    background-color: transparent;
}

.inp-search-frames input,
.inp-search-frames select {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 66px;
    padding: 0 30px;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    z-index: 1;
    outline: none;
}

.inp-search-frames img {
    position: absolute;
    right: 30px;
    top: 22%;
}

.frames-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 28.5px), 1fr));
    gap: 28.5px;
    row-gap: 64px;
    margin-top: 70px;
}

.frame {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 10px 14px -5px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-decoration: none;
}

.frame:hover {
    transform: scale(1.1);
}

.img-frame {
    width: 100%;
    height: 150px;
}

.img-frame img {
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info-frame {
    padding: 24px 32px;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.info-frame h2, .info-frame h3 {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
}

.info-frame h4 {
    color: #838383;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.info-frame .desc-blog {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
}

.info-frame p {
    color: #838383;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btns-frames {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 27px;
    margin-top: 64px;
}

.btns-frames a {
    border-radius: 60px;
    border: 1px solid #E30613;
    padding: 16px 48px;
    text-decoration: none;
    color: #E30613;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btns-frames a:hover {
    background-color: #E30613;
    color: #fff;
    transition: all .3s;
}

.btns-frames a:hover path {
    fill: #fff;
}

.mais-receitas {
    background-color: #E30613;
    color: #fff !important;
}

.btns-frames .mais-receitas:hover {
    background-color: #fff;
    color: #E30613 !important;
}


/* BANNER  */

.banner-receitas {
    position: relative;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 700px;
    background-color: #000;
}

.banner-receitas h1 {
    z-index: 1;
    position: absolute;
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-weight: 700;
}

.banner-receitas img {
    z-index: 0;
    object-fit: contain;
    width: 100%;
    opacity: 0.5;
    height: 100%;
}

/* MARCAS CLASSES  */

.mastroiani {
    background-color: #E3C07D !important;
}

.la-violetera {
    background-color: #018550 !important;
}

.la-preferida {
    background-color: rgb(113, 9, 34) !important;
}

.marca-carr:hover {
    filter: contrast(1.5);
}

/* ALTURA PRADRÃO BANNERS  */

.height-default {
    height: 525px !important;
}

/* CARROUSEL BANNER  */

.bullet-banner {
    background-color: #fff;
    border-radius: 100px;
    width: auto !important;
    padding: 8px;
    bottom: 32px !important;
    left: 336px !important;
}

.bullet-banner .swiper-pagination-bullet {
    background: #f67380;
    opacity: 1;
}

.bullet-banner .swiper-pagination-bullet-active {
    border-radius: 50px;
    background: #F0162B;
    width: 24px;
}

.banner-default-sobre {
    max-height: 525px;
    width: 100%;
}

.banner-default-sobre img {
    object-position: center;
    object-fit: contain;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.banner-default-sobre .banner-default-desk {
    display: block;
}

.banner-default-home {
    max-height: 700px !important;
    object-position: center;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.banner-default-home img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
}

.banner-default-mob {
    display: none;
}

.link-card {
    text-decoration: none;
}

@media all and (max-width:1800px) {

    .bullet-banner {
        left: 100px !important;
    }

    .container {
        margin: 0 100px;
    }

    /* HEADER  */

    .box-right {
        gap: 20px;
    }

}

@media all and (max-width:1200px) {

    .bullet-banner {
        left: 80px !important;
    }

    .container {
        margin: 0 80px;
    }

    /* HEADER  */

    .itens-nav {
        display: none;
    }

    .box-search {
        width: 300px !important;
    }

    .box-search button {
        right: 15%;
    }

    .box-search select {
        margin: 0px 10px !important;
    }

    .c-navbar {}

    .nav-mob {
        display: none;
        background-color: rgb(51, 51, 51);
        padding: 50px 0;
        height: 100vh;
    }

    .c-nav-mob {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .itens-nav-mob {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        opacity: 1 !important;
    }

    .itens-info-menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .btn-ir-para-loja-mob {
        width: 200px;
        align-items: center;
        justify-content: center;
    }

    .itens-info-menu .item-info-menu p {
        font-size: 16px;
    }

    .itens-nav-mob a {
        color: #fff;
    }

    .info-menu {
        display: none;
    }

    .btn-ir-para-loja {
        display: none;
    }

    .btn-ir-para-loja-mob {
        display: flex;
    }

    .open-menu {
        display: block;
        font-size: 24px;
        color: #ffffff;
        cursor: pointer;
        background-color: #E30613;
        border-radius: 10px;
        padding: 10px;
    }

    .close-menu {
        font-size: 30px;
        color: #324054;
    }

    /* FOOTER  */

    .c-nav-footer {
        flex-wrap: wrap;
        gap: 50px;
    }

    /* FRAMES  */

    .img-frame {
        height: 250px;
    }

    .frames-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(calc(50% - 14.25px), 1fr));
    }

}

@media all and (max-width:1021px) {

    .bullet-banner {
        left: 50px !important;
    }

    .container {
        margin: 0 50px;
    }

    /* BANNER  */

    .banner {
        height: 280px;
    }

    .c-banner h1 {
        font-size: 32px;
    }

    .banner-receitas h1 {
        font-size: 32px;
    }

    /* ALTURA PRADRÃO BANNERS  */

    .height-default {
        height: 280px !important;
    }

}

@media all and (max-width: 781px) {

    /* HEADER  */

    .item-info-menu p {
        font-size: 12px;
    }

    .search {
        font-size: 30px;
    }

    .box-search {
        width: 290px !important;
    }

    /* FOOTER  */

    .c-nav-footer {
        justify-content: center;
    }

    .nav-wrapper1 {
        flex-direction: row;
    }

    .nav-wrapper1 .selos-wrapper {
        display: none;
    }

    /* FRAMES  */

    .img-frame {
        height: 230px;
    }

    .info-frame {
        padding: 20px;
    }

    .box-search-frames {
        flex-direction: column;
    }

    .search-frames,
    .category-frames {
        width: 100%;
        gap: 20px;
    }

    .btns-frames {
        flex-direction: column;
    }

}

@media all and (max-width: 551px) {

    /* BANNER DEFAULT MOB  */

    .banner-default-desk {
        display: none;
    }

    .banner-default-mob {
        display: block;
    }

    .banner-default-sobre .banner-default-desk {
        display: none;
    }

    /* ---  */

    .bullet-banner {
        left: 20px !important;
    }

    .container {
        margin: 0 20px;
    }


    /* ALTURA PRADRÃO BANNERS  */

    .height-default {
        height: 200px !important;
    }

    .logo-menu {}

    .logo-menu.hide {
        opacity: 0;
    }

    .box-search.visible {
        display: flex;
    }

    /* FOOTER  */

    .c-info-footer {
        flex-direction: column;
        gap: 15px;
    }

    .sociais-wrapper i {
        font-size: 20px;
    }

    .sociais-wrapper {
        gap: 15px;
    }

    .logo-footer {
        width: 150px;
    }

    .links {
        flex-wrap: nowrap;
        gap: 20px;
        justify-content: center;
    }

    .sublinks-wrapper {
        gap: 20px;
        justify-content: space-between;
    }

    .box-links {
        gap: 15px;
        width: 100px;

    }

    .links a {
        font-size: 14px;
    }

    .sublinks {
        width: 100px;
    }

    /* BANNER  */

    .banner {
        height: 200px;
    }

    /* FRAMES  */

    .frames-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% - 28.5px), 1fr));
    }

    .img-frame {
        height: 370px;
    }

    .banner-default-home img {
        width: 100%;
        height: auto;
        max-height: 700px;
        object-fit: cover;
        height: 170px;
    }

}

/* modificando para blog */
.blog .img-frame {
    height: auto;
}

.blog .img-frame img {
    height: 150px;
    object-fit: cover;
    object-position: unset;
}