/* Removes */
#barraTopo,
#cabecalho,
.barra-inicial,
.secao-banners,
#rodape,
.ordenar-listagem.topo {
    display: none !important;
}

/* Geral */
:root {
    --verde-escuro: #16746d;
    --verde-claro: #5abc5d;
    --font: "Lexend", sans-serif;
}

body, html {
    font-family: var(--font);
    overflow-x: hidden;
    font-size: 14px;
}

.container, 
.conteiner {
    width: 1300px;
    max-width: 1300px;
}

.container::before,
.container::after {
    display: none;
}


/* Interna */
body:not(.pagina-inicial) .slider,
body:not(.pagina-inicial) .tarja,
body:not(.pagina-inicial) .banners {
    display: none !important;
}

body:not(.pagina-inicial) .conteiner-principal {
    margin-top: 50px;
}

/* Top Bar */
.top__bar {
    background: linear-gradient(90deg, rgba(22,116,109,1) 0%, rgba(90,188,93,1) 100%);
}

.top__bar .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.top__bar .splide__slide p {
    margin: 0;
    padding: 10px;
    font-size: 14px;
}

.top__bar .splide__slide p strong {
    padding: 2px 5px;
    background: var(--verde-claro);
    border-radius: 4px;
}

.top__bar .splide__arrow {
    background: transparent;
    width: 30px;
    height: 30px;
}

.top__bar .splide__arrow svg {
    width: 30px;
    height: 25px;
    fill: #fff;
}


/* Header */
header {
    background: #fff;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px 0;
}

header .logo {
    min-width: 255px;
    height: auto;
    display: block;
}

header .logo a {
    height: auto;
    display: block;
}

header .logo img {
    position: static !important;
}

header svg {
    max-width: 30px;
    max-height: 30px;
}

header .busca {
    background: #fff;
    padding: 0;
    border: 1px #dedede solid;
    border-radius: 40px;
    max-width: 630px;
    flex: 1;
    position: relative;
    height: 50px;
    overflow: hidden;
}

header .busca input {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 40px;
    border: 0;
    background: #fff;
    padding: 0 30px;
    box-sizing: border-box;
    box-shadow: none;
    font-family: var(--font);
}

header .busca button {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    height: 100%;
    width: 65px;
    background: var(--verde-claro);
    display: flex;
    align-items: center;
    justify-content: center;
}

header .busca button svg {
    width: 20px;
    fill: #fff;
}

header .sac {
    position: relative;
}

header .sac__box {    
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 0 30px #00000029;
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    display: none;
    width: 220px;
}

header .sac:hover .sac__box {
    display: flex;
}

.sac__box a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--verde-escuro);
    font-weight: bold;
}

.sac__box a svg {
    width: 25px;
    fill: var(--verde-claro);
}

header .acoes {
    display: flex;
    gap: 20px;
    align-items: center;
}

header .sac span {
    display: block;
    padding: 5px 25px;
    border: 2px #dedede solid;
    border-radius: 40px;
}

header .acoes a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    line-height: 10px;
    color: #000;
    gap: 5px;
    border: 0;
}

header .acoes a {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

header .acoes a svg {
    fill: var(--verde-escuro);
}

header .acoes a strong {
    display: block;
    line-height: 12px;
}

header .carrinho small {
    position: absolute;
    left: 21px;
    top: -5px;
    z-index: 999;
    width: 17px;
    height: 17px;
    background: var(--verde-claro);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    line-height: 17px;
}


/* Nav Header */
nav.header {
    background: #efffef;
    border-top: 1px #dedede solid;
    border-bottom: 1px #dedede solid;
}

nav.header .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav.header a {
    font-size: 15px;
    padding: 20px 10px;
}

nav.header .extra a {
    background: var(--verde-escuro);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
}

nav.header .extra a svg {
    width: 15px;
    fill: #fff;
    height: auto;
}

nav.header ul.principal {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    /* gap: 40px; */
}

nav.header ul.principal li a {
    color: var(--verde-escuro);
    display: block;
}

.splide__track a {
    color: white;
}

div.slider-mobile {
    display: none;
}

/* Tarja */
div.tarja {
    border-top: 1px #dedede solid;
    border-bottom: 1px #dedede solid;
    padding: 20px 0;
}

div.tarja .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

div.tarja .bloco {
    display: flex;
    align-items: center;
    gap: 10px;
}

div.tarja .bloco img {
    width: 35px;
    height: 35px;
}

div.tarja .bloco span {
    color: #000;
    font-size: 16px;
    line-height: 14px;
    display: block;
}

div.tarja .bloco .icone {
    border: 2px var(--verde-claro) solid;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    border-radius:50%;
}


/* Banners */
section.banners {
    padding: 60px 0;
}

section.banners .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}


/* Listagens */
.listagem .produtos-carrossel {
    padding-left: 25%;
    padding-right: 0;
}

.listagem .titulo-categoria {
    border:0;
    padding:0 !important;
    margin:0px !important;
    margin-bottom:40px !important;
    display:flex;
    justify-content:center;
    position:relative;
    background:#fff !important;
}

.listagem .titulo-categoria:after {
    content:'';
    width:100%;
    height:1px;
    display:block;
    background:#dedede;
    position:absolute;
    left:0;
    top:50%;
    z-index:1;
}

.listagem .listagem-linha {
    border: 0;
}

.listagem .listagem-linha li {
    border: 0;
}

.listagem .titulo-categoria strong {
    padding:0 30px !important;
    margin:0px !important;
    background:#fff;
    font-size:36px;
    color:#333;
    display:table;
    width:initial;
    z-index:30;
    position:relative;
}

#listagemProdutos > ul:nth-child(2):after  {
    content:'';
    width:24%;
    height:100%;
    background:url(https://cdn.awsli.com.br/2718/2718963/arquivos/agriex-banners-psd-m-dulo-arrozeiro-tripartido.jpg) center center no-repeat;
    background-size: cover;
    display:block;
    position:absolute;
    left:0;
    top:0;
    border-radius:8px;
    cursor: pointer;
}

#listagemProdutos > ul:nth-child(5):after  {
    content:'';
    width:24%;
    height:100%;
    background:url(https://cdn.awsli.com.br/2718/2718963/arquivos/agriex-banners-psd-aletas.jpg) center center no-repeat;
    background-size: cover;
    display:block;
    position:absolute;
    left:0;
    top:0;
    border-radius:8px;
    cursor: pointer;
}

.listagem .produtos-carrossel .listagem-linha.flexslider {
    padding:0;
}

.listagem .produtos-carrossel .listagem-linha li {
    border:0;
}

.listagem .listagem-linha li .listagem-item {
    border:1px #dedede solid !important;
    border-radius:8px;
    padding:10px;
    margin:10px;
    margin: 0 10px;
}

.listagem .listagem-item .imagem-produto {
    margin-top:30px;
}

.bandeiras-produto {
    left:auto;
    right:10px;
}

.bandeiras-produto span {
    background: var(--verde-escuro) !important;
    border:0;
    padding:2px 10px;
    box-shadow:none;
    border-radius:4px
}

.listagem .info-produto {
    padding:0;
    margin:30px 0;
    text-align:center;
}

.listagem .listagem-item .nome-produto {
    font-weight:bold;
    color:#000;
    font-size:16px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content: center;
}

.listagem-item .acoes-produto {
    position:static;
    opacity:1;
    border:0;
    padding:0;
}

.listagem-item .acoes-produto a {
    width:100%;
    box-sizing:border-box;
    padding:15px;
    font-size:16px;
    font-weight:bold;
    border:0;
    border-radius:4px;
    background:var(--verde);
}

.listagem .listagem-item:hover .acoes-produto a {
    background: var(--verde-escuro);
}

.listagem-item .acoes-produto a i {
    display: none;
}

/* Premissas */
section.premissas {
    margin: 120px 0;
    position: relative;
    padding-top: 100px;
}

section.premissas::after {
    content: '';
    width: 100vw;
    height: 80%;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50vw);
    top: 0;
    z-index: 1;
    background: url(https://cdn.awsli.com.br/2718/2718963/arquivos/bg-premissas.jpg) center center no-repeat;
    background-size: cover;
}

section.premissas .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

section.premissas .coluna {
    text-align: center;
    padding: 60px 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow:0 0 50px #0000001f
}

section.premissas .coluna h4 {
    font-size:24px;
    color:var(--verde-escuro);
    margin:20px 0
}

section.premissas .coluna p {
    font-size:15px;
    line-height:1.4;
}


/* Footer */
footer .principal {
    background: #efffef;
    padding: 100px 0;
    border-top: 5px var(--verde-escuro) solid;
    border-bottom: 5px var(--verde-escuro) solid;
}

footer .principal .container {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    box-sizing: border-box;
}

footer .principal .redes { 
    display: flex;
    gap: 30px;
    align-items: center;
}

footer .principal h3 {
    color:var(--verde-claro);
    margin-bottom:20px
}

footer .sobre {
    padding-right: 100px;
}

footer .sobre a {
    margin-bottom: 30px;
    display:block
}

footer .sobre p {
    font-size: 15px;
    line-height: 1.5;
}

footer .menu li {
    margin:0;
    padding:0;
    margin-bottom:10px;
}

footer .menu li a {
    color:#333;
    font-size:15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .menu li a:before {
    content:'';
    width: 7px;
    height: 7px;
    background: var(--verde-escuro);
    display: block;
}

footer .contato a {
    display:flex;
    align-items:center;
    margin-bottom:20px;
    gap:5px;
    font-size:15px;
    color:#333
}

footer .contato a svg {
    width:20px;
    height:20px;
    fill:var(--verde-escuro);
}

footer .copyright {
    padding: 50px 0;
}

footer .copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

/* svg oculto até o carregamento da pagina */
footer .svg-container {
    display: none;
}

a.whatsRight {
    background:url(https://cdn.awsli.com.br/2718/2718963/arquivos/icone-whats-rodape.png) center center #00ad40 no-repeat; 
    display:table; 
    width:65px; 
    height:65px; 
    position:fixed; 
    right:20px; 
    bottom:20px; 
    z-index:99; 
    border-radius:50%; 
    text-indent:-9999px;
}

/* Sidebar */
.menu .nivel-dois, .menu .nivel-tres, .menu.lateral .nivel-um>li>a {
    box-shadow:none;
    border:1px #dedede solid;
    margin-bottom:-1px;
}

.menu.lateral .nivel-um>li.ativo>a>.titulo {
    font-weight:bold;
}

.menu.lateral.outras li .titulo {
    color:#000;
    font-family:var(--font);
    font-size:15px;
    padding:5px
}


/* Internas */
.conteudo h1 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 1.2;
}


/* Relacionados */
.aproveite-tambem {
    margin-top: 90px;
}

.aproveite-tambem h4 {
    text-align:center;
    font-size:36px;
    line-height:1.5;
    font-weight:bold;
    color:#333;
    font-family:var(--font);
    margin-bottom:40px !important;
    display:block
}
.aproveite-tambem .listagem-linha ul {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 10px;
}

.aproveite-tambem ul:before,
.aproveite-tambem ul:after {
    display:none;
}

.aproveite-tambem .listagem-linha li {
    width:100%;
    margin:0;
}


/* Produto */
.abas-custom .tab-content {
    box-shadow: none;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
}


.pagina-produto .secao-principal h2 {
    text-align: center;
    font-size: 36px;
    line-height: 1.5;
    font-weight: bold;
    color: #333;
    font-family: var(--font);
    margin-bottom: 40px !important;
    display: block;
}


.pagina-produto .produto .tarja {
    display: block !important;
    margin: 90px 0;
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.produto>.row-fluid:first-child {
    display:flex;
    align-items:center;
}

.info-principal-produto .breadcrumbs li:not(:nth-child(2)) {
    display:none;
}

.info-principal-produto .breadcrumbs li:nth-child(2):after {
    content: '';
    display:none;
}

.info-principal-produto .breadcrumbs li:nth-child(2) a {
    color:var(--verde-claro);
    font-size:14px;
    text-transform:uppercase;
    font-weight:bold;
}

.pagina-produto #corpo .info-principal-produto .nome-produto {
    font-size:36px;
    font-weight:bold;
    color:#333;
    line-height:1.2;
    font-family:var(--font);
    margin:10px 0;
}

.pagina-produto #corpo .codigo-produto {
    border:0;
    margin-bottom:30px
}

.pagina-produto #corpo .codigo-produto span {
    color:#666;
    font-size:12px;
}

.pagina-produto #corpo .produto-mais-info,
.produto .acoes-produto .disponibilidade-produto,
.pagina-produto .produto-compartilhar {
    display:none !important;
}

.pagina-produto .produto .acoes-produto {
    padding:0;
}

.pagina-produto  .principal .acoes-produto .comprar {
    float: left;
}

.produto .acoes-produto .comprar a {    
    display: table;
    padding: 10px 40px;
    font-size: 22px;
    border: 0;
    border-radius: 4px;
    background: var(--verde-claro);
    box-sizing: border-box;
}

.pagina-produto .produto .conteiner-imagem {
    border:1px #dedede solid;
    border-radius:4px;
    overflow:hidden
}



/* Checkout */
.finalizar-compra .caixa-sombreada {
    box-shadow: none;
}

#modalSolicitarOrcamento input.invalid {
    border: 1px red solid;
}

/* Menu Responsivo */
.menu__responsivo {
    position: fixed;
    width: 70%;
    background: #fff;
    z-index: 9999;
    padding: 30px;
    box-sizing: border-box;
    height: 100%;
    left: -70%;
    transition: all .5s;
}

.menu__responsivo.ativo {
    left: 0;
}

.menu__responsivo .logo {
    display: table;
    margin: auto;
}

.menu__responsivo .content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.menu__responsivo .menu a {
    display: block;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    color: #000;
}


/* Responsivo */
@media (max-width:1320px) {
    .container,
    .conteiner {
        width: 90%;
        max-width: 90%;
    }

    header .logo {
        max-width: 20%;
        min-width: auto;
    }
}

@media (max-width:998px) {

    nav.header,
    header .sac,
    header .acoes a span {
        display: none;
    }

    header .container {
        gap: 25px;
        flex-wrap: wrap;
    }

    .openResponsivo {
        display: flex !important;        
        flex-direction: column;
        gap: 3px !important;
        width: 50px !important;
        height: 50px !important;
        background: var(--verde-escuro);
        justify-content: center;
        align-items: center;
        border-radius: 4px;
    }

    .openResponsivo div {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
    }

    header .logo {
        max-width: 145px;
        min-width: 145px;
    }

    .listagem .produtos-carrossel {
        padding-left: 0;
    }

    .listagem .produtos-carrossel:after,
    .listagem .listagem-item .acoes-produto-responsiva {
        display: none !important;
    }

    .listagem-item .acoes-produto {
        display: flex !important;
    }

    section.premissas .coluna {
        display: block !important;
    }
}

@media (max-width:768px) {

    .top__bar .splide__slide p {
        font-size: 10px;
    }

    .top__bar .splide__arrow--next {
        right: -20px;
    }

    .top__bar .splide__arrow--prev {
        left: -20px;
    }

    header .container {
        padding: 25px 0;
    }

    header .busca {
        order: 4;
        min-width: 100%;
    }

    header .acoes a {
        width: 30px;
        height: 30px;
        gap: 0;
    }
    
    div.slider {
        display: none;
    }

    div.slider-mobile {
        display: block !important;
    }
    div.tarja .container,
    section.banners .container {
        flex-wrap: wrap;
    }

    div.tarja .container {
        gap: 15px;
    }

    section.premissas {
        margin-top: 0;
    }

    section.premissas .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    section.premissas .coluna {
        padding: 30px !important;
        gap: ;
    }

    section.premissas .coluna h4 { 
        font-size: 22px;
    }
    
    section.premissas .coluna p {
        font-size: 14px;
    }

    section.premissas img {
        width: 80px;
    }

    footer .principal .container {
        grid-template-columns: 100%;
    }

    .produto>.row-fluid:first-child {
        flex-wrap: wrap;
        gap: 30px;
    }

    body:not(.pagina-inicial) .conteiner-principal {
        margin-top: 0;
    }

    .produto .conteiner-imagem > div {
        border: 0;
    }

    .produto .acoes-produto .comprar a {
        padding: 10px 20px;
        font-size: 18px;
    }

    .pagina-produto .principal .acoes-produto .comprar {
        float: none;
    }

    .aproveite-tambem .listagem-linha ul {
        grid-template-columns: repeat(1, 1fr);
    }
}