@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --color-primary: #007bff;
    --color-secondary: #01012f;
    --color-font: #01012f;
    --height-nav: 70px;
}
body::-webkit-scrollbar {
    width: 16px;
}

body::-webkit-scrollbar-track {
    background: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 20px;
    border: 5px solid #fff;
}
body,html{
    overflow-x: visible;
    font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--color-secondary);
}
a{
    text-decoration: none;
    color: var(--color-secondary);
}
p{
    line-height: 22px;
    font-size: 15px;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}

#btn-back-to-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 15px;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    background: var(--color-primary);
    z-index: 2;
    transition: .3s;
}
#btn-back-to-top svg{
    fill: #fff;
    stroke: #fff;
}
#btn-back-to-top:hover{
    background: var(--color-secondary);
}
#btn-whatsapp{
    display: flex;
    background: #1ad03f;
    color: #fff;
    position: fixed;
    bottom: 75px;
    right: 20px;
    padding: 15px;
    border-radius: 50%;
    z-index: 2;
}

header{
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}
header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .tarja{
    background: var(--color-secondary);
    color: #fff;
    padding: 15px 0;
}
header .tarja > div{
    display: flex;
    justify-content: space-between;
}
header .tarja b{
    text-decoration: underline;
}
header .tarja ul{
    display: flex;
}
header .tarja ul li{
    margin-left: 10px;
    font-size: 16px;
}
header .tarja ul li a{
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
header .tarja ul li a svg{
    width: 16px;
    height: 16px;
    fill: #fff;
}
header > :not(.tarja) > div{
    display: none;
}
header .logo{
    max-width: 190px;
    margin-right: 10px;
}
header .logo img{
    width: 100%;
}
header nav > ul{
    display: flex;
    align-items: center;
}
header nav > ul > li.has-children{
    position: relative;
}
header a{
    font-weight: 600;
}
header nav > ul > li > a{
    position: relative;
    padding: 20px 20px 20px 20px;
    display: inline-block;
}
header nav > ul > li.has-children > a{
    padding-right: 15px;
}
header nav > ul > li.has-children > a:before{
    content: "+";
    font-weight: bolder;
    position: absolute;
    right: 0;
}
header nav > ul > li.has-children > button{
    display: none;
}
header nav > ul > li > a:after{
    content: '';
    background: var(--color-primary);
    width: 0;
    height: 3px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
}
header nav > ul > li > a.login{
    background: #54B9F242;
}
header nav > ul > li > a:hover{
    color: var(--color-primary);
}
header nav > ul > li.has-children > a:hover:before{
    content: '-';
}
header nav > ul > li > a:hover:after{
    width: 100%;
    left: 0;
    right: auto;
}
header nav > ul > li ul{
    position: absolute;
    z-index: 99;
    width: 220px;
    background: var(--bs-white);
    padding: 5px;
    margin: 0;
    border: 0;
    border-radius: 0;
    -moz-box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.075);
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.075);
    font-size: 1rem;
    text-align: left;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
header nav > ul > li:hover ul{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
header nav > ul > li ul li a{
    display: inline-block;
    border-bottom: 1px solid #f7f7f7;
    font-weight: 600;
    line-height: 24px;
    padding: 8px 18px;
    width: 100%;
    transition: .3s;
}
header nav > ul > li ul li a:hover{
    background: #f7f7f7;
}

header .search{
    background: #123f5c;
    border: 0;
    border-radius: 50%;
    padding: 13px;
    transition: .3s;
}
header .search:hover{
    background: #1e618c;
    padding: 18px;
    margin: -5px;
}
header .search svg{
    fill: #fff;
    width: 14px;
    height: 14px;
}
header .menu{
    display: none;
    background: var(--color-primary);
    color: #fff;
    border: 0;
    padding: 6px;
}
header .menu svg{
    width: 25px;
    height: 25px;
    stroke: #fff;
}

#orcamento, #sobre{
    padding: 100px 0;
}
#orcamento .slide{
    position: relative;
}
#orcamento img{
    width: 100%;
}
#orcamento .slide > div{
    display: flex;
}
#orcamento h4,
#sobre h4{
    color: #000260;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}
#orcamento .veja-tambem{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 60px;
}
#orcamento .veja-tambem > div{
    text-align: center;
}
#orcamento .veja-tambem h6{
    color: #000260;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}
#orcamento .veja-tambem a{
    box-shadow: -5px 5px 5px -1px rgba(2.6706521739130595, 0, 47.25, 0.25);
    background-color: #5bc0de;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 24px;
    display: inline-block;
}

#sobre .container > div{
    border-bottom: 4px solid var(--color-primary);
    margin-bottom: 20px;
}
#sobre .container > div:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}
#sobre .container > div a{
    display: block;
    color: rgb(57, 57, 57);
    font-weight: 700;
    margin-bottom: 20px;
}
#sobre .container > div .col-md-4{
    margin-bottom: 20px;
}

#banners{
    color: #fff;
    position: relative;
}
#banners > div{
    display: flex;
}
#banners .item{
    position: relative;
}
#banners .item > div{
    min-height: 800px;
    padding: 64px 0 160px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
#banners .item:after{
    content: '';
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: .0;
}
#banners .item .container{
    position: relative;
    z-index: 100;
}
#banners .item .container > div{
    max-width: 45rem;
}
#banners .slick-arrow,
#orcamento .slick-arrow{
    border: 0;
    color: #fff;
    outline: none !important;
    transition: .3s !important;
    position: absolute;
    top: calc(50% - 17px);
    padding: 5px 10px;
    background: #007bff78 !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    z-index: 2;
}
#banners .slick-arrow:hover,
#orcamento .slick-arrow:hover{
    opacity: .7;
}
#banners #arrow-next,
#orcamento #arrow-next{
    right: 20px;
}
#banners #arrow-prev,
#orcamento  #arrow-prev{
    left: 20px;
}
#banners .tag{
    background: var(--color-primary);
    padding: 10px 17px;
    margin-bottom: 38px;
    border-radius: 0 50px 50px 0;
    display: inline-block;
}
#banners .text-end .tag{
    border-radius: 50px 0 0 50px;
}
#banners h2{
    font-size: 45px;
    margin-bottom: 32px;
    font-weight: 700;
}
#banners p{
    font-size: 18px;
    margin-bottom: 32px;
}
#banners a{
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 100px;
    border: 1px solid var(--color-primary);
    transition: .3s;
}
#banners a:hover{
    background: var(--color-secondary);
}
#banners a svg{
    margin-right: 3px;
}

#apoiadores{
    margin-top: -120px;
    z-index: 1;
    position: relative;
}
#apoiadores .apoiadores{
    display: flex;
    flex-wrap: wrap;
}
#apoiadores .apoiadores > div{
    width: calc(25% - 24px);
    margin: 12px;
    padding: 34px;
    background: #f3f8fe;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 0.12);
    text-align: center;
    position: relative;
}
#apoiadores .apoiadores > div > div:first-child{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    transition: .3s;
}
#apoiadores .apoiadores > div > div:first-child:after{
    content: '';
    background: #000;
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#apoiadores .apoiadores > div > div:last-child{
    z-index: 2;
    position: relative;
}
#apoiadores .apoiadores > div .icone{
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    width: 70px;
    height: 70px;
    margin: 0 auto;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
#apoiadores .apoiadores > div .icone > div{
    background: var(--color-secondary);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
#apoiadores .apoiadores > div h6{
    font-weight: 700;
    font-size: 1.125rem;
    transition: .3s;
}
#apoiadores .apoiadores > div p{
    color: #393939;
    font-size: 16px;
    margin: 0;
    transition: .3s;
}
#apoiadores .apoiadores > div .icone > div svg{
    fill: #fff;
    width: 30px;
    height: 30px;
}
#apoiadores .apoiadores > div:hover > div:first-child{
    opacity: 1;
}
#apoiadores .apoiadores > div:hover h6,
#apoiadores .apoiadores > div:hover p{
    color: #fff;
}
#apoiadores .apoiadores > div:hover .icone{
    border-color: var(--color-primary);
}
#apoiadores .apoiadores > div:hover .icone > div{
    background: var(--color-primary);
}

#formas-pagamento{
    padding: 100px 0;
}
#formas-pagamento .formas-pagamento{
    display: flex;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}
#formas-pagamento .formas-pagamento > div{
    width: calc(25% - 24px);
    margin: 12px;
    padding: 34px;
    background: #f3f8fe;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 0.12);
    text-align: center;
}
#formas-pagamento .formas-pagamento > div b{
    color: rgb(57, 57, 57);
    font-size: 20px;
    display: block;
    text-align: center;
    line-height: 24px;
    margin-bottom: 10px;
}
#formas-pagamento .formas-pagamento > div a{
    color: rgb(57, 57, 57);
    font-weight: 700;
    line-height: 17px;
    font-size: 14px;
    transition: .3s;
}
#formas-pagamento .formas-pagamento > div a:hover{
    color: var(--color-primary);
}
#formas-pagamento .formas-pagamento > div .icone{
    margin: 0 auto;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}
#formas-pagamento .formas-pagamento > div .icone svg{
    width: 35px;
    height: 35px;
}
#formas-pagamento .formas-pagamento > div:nth-child(1) .icone{
    color: #ee4a34;
    background: #fae4df;
}
#formas-pagamento .formas-pagamento > div:nth-child(2) .icone{
    color: var(--color-primary);
    background: #c9e1ff;
}
#formas-pagamento .formas-pagamento > div:nth-child(3) .icone{
    color: #116961;
    background: #d6ebea;
}

#produtos{
    padding: 100px 0;
    background: #f3f8fe;
}
#produtos img{
    width: 100%;
    max-width: 315px;
}
#produtos p{
    width: 58.333333%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 48px;
    font-weight: 500;
}
#produtos .produtos{
    display: flex;
    flex-wrap: wrap;
}
#produtos .produtos a{
    width: calc(50% - 25px);
    margin: 12px;
    background: #fff;
    box-shadow: 0 0 12px -1px rgb(0 0 0 / 0.2);
    display: flex;
    position: relative;
}
#produtos .produtos a:before{
    content: '';
    display: inline-block;
    width: 3.125rem;
    height: 100%;
    padding: 0.719rem 0.75rem;
    background: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    transition: width .3s;
}
#produtos .produtos a span{
    display: block;
    width: 100%;
    padding: 9px 0;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
    transition: .3s;
    margin-left: 4.125rem;
    position: relative;
    z-index: 2;
}
#produtos .produtos a:hover span{
    color: #fff;
}
#produtos .produtos a:hover:before{
    left: 3.125rem;
    width: calc(100% - 3.125rem);
}

#contato{
    background: var(--color-primary);
    color: #fff;
    padding: 94px 0;
}
#contato .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#contato p{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
}
#contato h2{
    font-size: 30px;
    font-weight: 700;
}
#contato a{
    background: #fff;
    color: var(--color-primary);
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500;
    border: 1px solid #fff;
    transition: .3s;
}
#contato a:hover{
    background: 0;
    color: #fff;
}

section.titulo{
    background: url('../imgs/catalogo.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
section.titulo:after{
    content: '';
    background: #000;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.titulo > div{
    background: #fff;
    width: auto;
    min-width: 320px;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 12px;
    max-width: 900px;
}
section.titulo > div h1{
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 15px;
    position: relative;
}
section.titulo > div h1:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--color-primary);
    margin: 0 auto;
}
section.titulo > div a{
    transition: .3s;
    font-weight: normal;
}
section.titulo > div a:hover{
    color: var(--color-primary);
}
section.titulo > div p{
    font-size: 16px;
    font-weight: 500;
}

section.listagem{
    margin-top: 40px;
}
section.listagem h2{
    color: var(--color-primary);
    border-bottom: 1px solid #cbdef4;
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
section.listagem h2 a{
    font-size: 16px;
    margin-left: auto;
}
section.listagem ul{
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
section.listagem ul li{
    width: calc(20% - 20px);
    margin: 10px;
}
section.listagem ul li a{
    height: 100%;
    display: flex;
    flex-direction: column;
}
section.listagem ul li .img{
    flex: 1;
    display: flex;
    align-items: center;
}
section.listagem ul li .img img{
    width: 100%;
}
section.listagem ul li b{
    text-align: center;
    display: block;
}
section .title{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    flex-direction: column;
    align-items: center;
}
section .title h3{
    font-size: 37.925px;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin-top: 15px;
}
section .title h3 b{
    font-weight: 700;
    color: var(--color-primary);
}
section .title span{
    padding: 5px 20px;
    font-size: 12px;
    position: relative;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    text-align: center;
}
section .title span:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0.6875rem;
    height: 0.6875rem;
    background-color: var(--color-primary);
    transform: translateY(50%) rotate(45deg);
    z-index: 1;
}
footer{
    background: var(--color-secondary);
    color: #fff;
    margin-top: 40px;
}
footer nav{
    display: flex;
    padding: 40px 0;
}
footer h4{
    position: relative;
    padding-left: 24px;
    font-size: 20px;
}
footer h4:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 100%;
    background-color: var(--color-primary);
}
footer nav{
    margin: -10px;
}
footer nav ul{
    margin: 10px;
}
footer nav ul li{
    margin-bottom: 24px;
}
footer nav ul li a{
    color: #fff;
}
footer nav ul li a:hover{
    color: var(--color-primary);
}
footer nav ul li a svg{
    color: var(--color-primary);
}
footer .container > div{
    padding: 46px 0;
    border-top: 1px solid var(--color-primary);
    text-align: center;
}
form.busca{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    min-width: 100%;
}
form.busca > button{
    padding: 10px;
    border: 0;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
}
form.busca > button svg{
    width: 25px;
    height: 25px;
    fill: var(--color-secondary);
}
form.busca > div{
    border: 1px solid #dedede;
    width: 100%;
    max-width: 400px;
    display: flex;
}
form.busca > div input{
    border: 0;
    outline: none;
    width: 100%;
    padding: 10px;
}
form.busca > div button{
    background: #123f5c;
    color: #fff;
    border: 0;
    padding: 0 14px;
    transition: .3s;
}
form.busca > div button:hover{
    background: #1e618c;
}

.container-pagination{
    display: flex;
    justify-content: end;
}
.pagination{
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #dedede;
}
.pagination button{
    background: 0;
    border: 1px solid #dedede;
    padding: 1px 10px;
}
.pagination button:disabled{
    background: var(--color-opacity);
}
.pagination button:first-child{
    border-radius: 50px 0 0 50px;
}
.pagination button:last-child{
    border-radius: 0 50px 50px 0;
}

.modal-1{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.modal-1 > div:first-child{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
}
.modal-1 h4{
    text-align: center;
    margin-bottom: 20px;
}
.modal-1 > div:last-child{
    position: relative;
    background: #fff;
    border-radius: 10px;
    z-index: 999;
    padding: 20px;
    width: 100%;
    max-width: 590px;
    margin: 20px;
}
.modal-1 > div:last-child > button{
    background: 0;
    border: 0;
    color: var(--color-font);
    position: absolute;
    top: 5px;
    right: 5px;
}
.modal-1 > div:last-child > div{
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    overflow-x: hidden;
}
.modal-1 input,
.modal-1 select{
    display: block;
    width: 100%;
    background: 0;
    border: 1px solid #e3e8ee;
    outline: none !important;
    border-radius: 7px;
    padding: 8px 15px;
    margin-top: 3px;
}
.modal-1 .btn-1{
    background: var(--color-primary);
    border: 0;
    color: #fff;
    padding: 6px 15px;
}
.modal-1 .cadastro,
.modal-1 .logar{
    text-decoration: underline;
    color: #ff0000;
}

#produto{
    padding: 100px 0;
}
#produto b{
    color: var(--color-primary);
}
#produto .images ul{
    display: flex;
}
#produto .images img{
    width: 100%;
}
#produto .col-md-7{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#produto .especificacoes{
    background-color: #f4f4f4;
    border: 1px solid #ccc;
}
#produto .especificacoes > a{
    padding: 15px 20px;
    display: inline-block;
    background: #fff;
    font-size: 28.605px;
    font-weight: 700;
    color: rgb(57, 57, 57);
}
#produto .especificacoes > div{
    padding: 25px 20px;
    background: #fff;
}
#produto .especificacoes > div a{
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.vazio{
    font-size: 20px;
    text-align: center;
    padding: 100px 0;
}

@media(max-width: 992px){
    header .tarja{
        display: none;
    }
    header nav,
    header .search{
        display: none;
    }
    header .menu{
        display: inline-block;
    }
    header nav{
        display: block;
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        max-width: calc(100% - 30px);
        width: 0;
        transition: .3s;
        height: 100vh;
        z-index: 1000;
        overflow: hidden;
    }
    header.open nav{
        width: 290px;
    }
    header nav ul{
        flex-wrap: wrap;
    }
    header nav ul li{
        width: 100%;
        border-top: 1px solid #e0e0e0;
    }
    header nav ul li a{
        width: 100%;
        padding: 8px 18px;
        white-space: nowrap;
    }
    header nav > ul > li > a:after{
        content: none;
    }
    header nav > ul > li > a:hover{
        color: var(--color-secondary);
        background: #f7f7f7;
    }
    header nav > ul > li.has-children > a:before{
        content: none !important;
    }
    header nav ul li ul{
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0;
        transform: unset;
        opacity: unset;
        visibility: unset;
        transition: unset;
    }
    header nav > ul > li.has-children{
        display: flex;
        flex-wrap: wrap;
    }
    header nav > ul > li.has-children ul{
        display: none;
    }
    header nav > ul > li.has-children > a{
        width: calc(100% - 40px);
    }
    header nav > ul > li.has-children > button{
        display: block;
        border: 0;
        border-left: 1px solid #e0e0e0;
        background: #f3f8fe;
        padding: 0;
        width: 40px;
    }
    header nav > ul > li.has-children > button svg{
        stroke: var(--color-secondary);
    }
    header.open > :not(.tarja) > div{
        display: block;
        z-index: 999;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #000;
        opacity: .6;
    }
    
    #apoiadores{
        margin-top: 40;
    }
    #apoiadores .apoiadores{
        margin: -12px;
    }
    #apoiadores .apoiadores > div {
        width: calc(50% - 24px);
    }
    
    #produtos img{
        margin: 0 auto;
        margin-bottom: 20px;
        display: block;
    }
}
@media(max-width: 768px){
    section.listagem ul li{
        width: calc(25% - 20px);
    }
    footer nav{
        flex-wrap: wrap;
    }
    
    #banners h2{
        font-size: 28px;
    }
    #banners p{
        font-size: 14px;
    }
    #banners .slick-arrow{
        display: none !important;
    }
    #banners .item > div{
        min-height: unset;
        padding: 64px 0;
    }
    #banners .item .container > div{
        max-width: 100%;
    }
    
    #formas-pagamento .formas-pagamento > div{
        width: calc(100% - 24px);
    }
    
    #contato{
        text-align: center;
    }
    #contato a{
        margin: 0 auto;
        margin-top: 10px;
    }
}
@media(max-width: 576px){
    section.listagem ul li{
        width: calc(33.333333% - 20px);
    }
    #produtos .produtos a{
        width: calc(100% - 25px);
    }
}
@media(max-width: 455px){
    section.listagem ul li{
        width: calc(50% - 20px);
    }
    section.titulo > div{
        margin: 12px;
        min-width: 0;
    }
    #apoiadores .apoiadores > div{
        width: calc(100% - 24px);
    }
}