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

body {
    background-color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

button {
    border: 0;
}

img {
    display: inline-block;
    vertical-align: middle;
}

.-justify {
    text-align: justify;
}

/* container */

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1600px;
}

/* header */

.header {
    position: relative;
    border-top: 5px solid #34b686;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 55%, #e1e1e1 100%);
    background: -webkit-linear-gradient(top, #ffffff 55%,#e1e1e1 100%);
    background: linear-gradient(to bottom, #ffffff 55%,#e1e1e1 100%);
}

.header::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 48px;
    background-color: #f0f0f0;
    content: '';
}

.header-container {
    position: relative;
    height: 180px;
    display: flex;
    justify-content: space-between;
}

.header-logo {
    align-self: center;
}

.header-logo a {
    display: block;
}

.header-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.header-info {
    height: 48px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 20px;
    background-color: #f0f0f0;
}

.header-info-item {
    margin-right: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #7d7d7d;
}

.header-info-item i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    width: 22px;
    height: 22px;
    background-image: url('../img/header-icons.png');
}

.header-info-item i.phone {
    background-position: 0 0;
}

.header-info-item i.whatsapp {
    background-position: -22px 0;
}

.header-info-item i.email {
    background-position: -44px 0;
}

/* menu-carrinho */

.menu-carrinho {
    display: flex;
    align-items: center;
    margin-top: 36px;
}

@media screen and (max-width: 1200px) {
    .header::before {
        display: none;
    }

    .header-info {
        display: none;
    }

    .menu-carrinho {
        margin-top: 0;
    }

    .header-container {
        height: 140px;
        align-items: center;
    }
}

/* carrinho */

.carrinho-button {
    width: 155px;
    height: 50px;
    margin-left: 10px;
    border-radius: 3px;
    background-color: #00813f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrinho-button i {
    margin-right: 12px;
    width: 20px;
    height: 19px;
    background-image: url('../img/icon-buy.png');
}

.carrinho-button-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #ffcc28;
    text-transform: uppercase;
}

.carrinho-button-text small {
    display: block;
    font-size: 12px;
    color: #fff;
}

/* menu */

@media screen and (max-width: 1200px) {
    .menu {
        display: none;
    }
}

.menu .menu-item,
.menu .menu-divider {
    display: block;
    position: relative;
    float: left;
}

.menu .menu-divider {
    width: 1px;
    height: 54px;
    margin-left: 2px;
    margin-right: 2px;
}

.menu .menu-divider::before {
    position: absolute;
    top: calc(50% - 20px / 2);
    left: 0;
    width: 1px;
    height: 20px;
    background-color: #f0f0f0;
    content: '';
}

@media screen and (max-width: 1245px) {
    .menu .menu-divider {
        display: none;
    }
}

.menu .menu-item {
    border-radius: 3px;
    border: 2px solid transparent;
}

.menu .menu-item:hover,
.menu .menu-active {
    border-color: #009050;
}

.menu .menu-link {
    cursor: pointer;
    display: block;
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 700;
    color: #646464;
    text-transform: uppercase;
}

@media screen and (max-width: 1470px) {
    .menu .menu-link {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media screen and (max-width: 1255px) {
    .menu .menu-link {
        font-size: 11px;
    }
}

.menu .menu-item:hover .menu-link,
.menu .menu-active .menu-link {
    color: #008f4f;
}

.menu li:hover > ul {
    display: block;
    position: absolute;
    z-index: 100;
}

.menu .menu-sub,
.menu .menu-sub-sub {
    display: none;
    background-color: #fff;
    box-shadow: 0 0 16px rgba(0,0,0,0.2);
}

.menu .menu-sub-item {
    position: relative;
    width: 100%;
}

.menu .menu-sub-item::before {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    border-bottom: 1px solid #d6d6d6;
    content: '';
}

.menu .menu-sub-item:last-child::before {
    display: none;
}

.menu .menu-sub-link,
.menu .menu-sub-sub-link {
    cursor: pointer;
    display: block;
    padding: 18px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #737373;
    text-transform: uppercase;
}

.menu .menu-sub-sub-link {
    padding: 8px 24px;
}

.menu .menu-sub-sub-link:hover,
.menu .menu-sub-item:hover .menu-sub-link {
    color: #008f4f;
}

.menu ul {
    min-width: 265px;
}

.menu ul ul {
    left: 100%;
    top: 0;
    padding-top: 14px;
    padding-bottom: 14px;
}

.menu .menu-sub-last {
    right: 0;
}

.menu .menu-drop {
    position: relative;
    padding-right: 18px;
}

.menu .menu-drop::before {
    position: absolute;
    top: calc(50% - 4px / 2);
    right: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #4b4b4d;
    content: '';
}

.menu .menu-item:hover .menu-drop::before,
.menu .menu-active .menu-drop::before {
    border-top-color: #009050;
}

.menu .menu-sub-drop {
    position: relative;
    padding-right: 18px;
}

.menu .menu-sub-drop::before {
    position: absolute;
    top: calc(50% - 6px / 2);
    right: 0;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #4b4b4d;
    content: '';
}

.menu .menu-sub-item:hover .menu-sub-drop::before {
    border-left-color: #c7383e;
}

/* slider */

.slider {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    background-image: url('../img/slider-bg.png');
    background-repeat: repeat-x;
}

/* swiper-slide-main-item */

.swiper-slide-main-item a {
    display: block;
}

.swiper-slide-main-item img {
    border-radius: 15px;
}

/* content */

.content {
    padding-top: 70px;
    padding-bottom: 70px;
}

.content-grey {
    background-color: #f5f5f5;
}

.content-marcas {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffcc27;
}

@media screen and (max-width: 970px) {
    .content,
    .content-marcas {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* footer */

.footer {
    color: #fff;
    background-color: #008f4f;
    background-image: url('../img/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: top right;
}

/* footer-info */

.footer-info {}

.footer-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 210px;
}

.footer-endereco {
    position: relative;
    padding-left: 36px;
}

.footer-endereco i {
    position: absolute;
    top: calc(50% - 13px);
    left: 0;
    width: 21px;
    height: 26px;
    background-image: url('../img/icon-map.png');
}

.footer-fones {
    display: flex;
    align-items: flex-start;
}

.footer-fones-item {
    margin-right: 15px;
}

.footer-fones-item:last-child {
    margin-right: 0;
}

.footer-fones-item h2 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 32px;
    font-size: 17px;
    font-weight: 700;
}

.footer-fones-item h2 i {
    position: absolute;
    top: calc(50% - 10.5px);
    left: 0;
    width: 21px;
    height: 21px;
    background-image: url('../img/icons-phone.png');
}

.footer-fones-item h2 i.whatsapp {
    background-position: -21px 0;
}

.footer-fones-item a {
    color: #fff;
    font-size: 16px;
}

.footer-fones-item a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
}

.footer-social-text {
    margin-right: 18px;
}

@media screen and (max-width: 1260px) {
    .footer-logo {
        display: none;
    }
}

@media screen and (max-width: 1050px) {
    .footer {
        background-image: none;
    }

    .footer-info-container {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }

    .footer-fones {
        margin-top: 20px;
        margin-bottom: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-endereco i,
    .footer-fones-item h2 i {
        display: none;
    }

    .footer-fones-item h2,
    .footer-endereco {
        padding-left: 0;
    }

    .footer-fones-item {
        margin-right: 0;
        text-align: center;
    }
}

/* copyright */

.copyright {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.copyright {
    font-size: 15px;
    text-align: center;
}

.copyright a {
    color: #fff;
}

.copyright a:hover {
    text-decoration: underline;
}

/* social */

.social {
    display: flex;
    align-items: center;
}

.social-icon {
    margin-left: 3px;
    margin-right: 3px;
    width: 24px;
    height: 24px;
    background-image: url('../img/icons-social.png');
}

.social-icon-fb {
    background-position: -24px 0;
}

.social-verde .social-icon-in {
    background-position: 0 -24px;
}

.social-verde .social-icon-fb {
    background-position: -24px -24px;
}

/* header-page */

.header-page {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00813f;
    background-image: url('../img/slider-bg.png');
}

.header-page-container {
    text-align: center;
}

.header-page-container h1 {
    line-height: 1.4;
    font-size: 50px;
    font-weight: 900;
    color: #ffcc27;
    text-transform: uppercase;
}

.header-page-container span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

@media screen and (max-width: 970px) {
    .header-page {
        height: 80px;
    }

    .header-page-container h1 {
        font-size: 30px;
    }
}

/* title */

.title {
    margin-bottom: 32px;
    line-height: 1.2;
    font-size: 50px;
    font-weight: 900;
    color: #ffcc28;
    text-transform: uppercase;
}

.title-medium {
    font-size: 35px;
    color: #4eb467;
}

.title-center {
    text-align: center;
}

.subtitle {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.subtitle strong {
    font-weight: 900;
}

.subtitle-center {
    text-align: center;
}

@media screen and (max-width: 1140px) {
    .title {
        font-size: 30px;
    }
}

@media screen and (max-width: 640px) {
    .title,
    .subtitle {
        font-size: 20px;
    }
}

/* text */

.text p {
    margin-bottom: 24px;
    font-size: 15px;
    color: #333;
}

.text p:last-child {
    margin-bottom: 0;
}

/* empresa */

.empresa-slider {
    float: right;
    width: 800px;
    height: 440px;
    padding-left: 44px;
}

@media screen and (max-width: 1140px) {
    .empresa-slider {
        width: 100%;
        height: auto;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .empresa-slider img {
        width: 100%;
    }
}

/* marcas */

.marcas-container {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* produtos */

.produtos-container {
    display: flex;
}

.produtos-sidebar {
    width: 20%;
}

.produtos-content {
    width: 80%;
    padding-left: 35px;
}

@media screen and (max-width: 1020px) {
    .produtos-container {
        flex-direction: column;
    }

    .produtos-sidebar,
    .produtos-content {
        width: 100%;
    }

    .produtos-content {
        padding-left: 0;
        margin-top: 20px;
    }
}

.produtos-page-header {
    padding-bottom: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d6d6d6;
}

.produtos-page-title h1 {
    font-size: 25px;
    font-weight: 900;
    color: #646464;
    text-transform: uppercase;
}

.produtos-page-title h1 span {
    font-weight: 400;
}

@media screen and (max-width: 900px) {
    .produtos-page-header {
        flex-direction: column;
    }

    .produtos-page-title {
        margin-bottom: 15px;
    }
}

.produtos {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

.produtos-item {
    width: 25%;
    padding-right: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
    .produtos-item {
        width: 33.33%;
    }
}

@media screen and (max-width: 750px) {
    .produtos-item {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .produtos-item {
        width: 100%;
    }
}

.produtos-link {
    display: block;
}

.produtos-link p {
    font-size: 14px;
    color: #00813f;
    text-align: center;
    font-weight: bold;
}

.produtos-image {
    padding: 30px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
}
.produtos-image img {
    max-height: 280px;
}

.produtos-title {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #646464;
    text-align: center;
    text-transform: uppercase;
}

.produtos-hover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(54,131,73,0.7);
}

.produtos-hover span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    border-radius: 5px;
    background-color: #ffcc29;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.produtos-hover span i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 24px;
    height: 16px;
    background-image: url('../img/icon-arrow-right.png');
}

.produtos-link:hover .produtos-hover {
    opacity: 1;
}

.produtos-link:hover .produtos-title {
    color: #138b4d;
}

/* pagination */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination li {
    margin-left: 3px;
    margin-right: 3px;
    width: 53px;
    height: 47px;
    border-radius: 3px;
    background-color: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #6d6d6d;
}


.pagination li:hover,
.pagination li:hover a,
.pagination .pagination-active,
.pagination .pagination-active a{
    color: #fff;
    background-color: #00813f;
}
.pagination li a {
    font-size: 18px;
    font-weight: 700;
    color: #6d6d6d;
}

/* detalhes */

.detalhes {
    display: flex;
}

.detalhes-content {
    width: 56%;
    padding-right: 70px;
}

.detalhes-margin {
    margin-bottom: 20px;
}

.detalhes-info p {
    margin-bottom: 20px;
    font-size: 15px;
}

.detalhes-slider {
    width: 44%;
}

.detalhes-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #ffcc28;
    text-transform: uppercase;
}

.detalhes-text {
    font-size: 15px;
}

@media screen and (max-width: 940px) {
    .detalhes {
        flex-direction: column;
    }

    .detalhes-content {
        order: 2;
        margin-top: 20px;
    }

    .detalhes-content,
    .detalhes-slider {
        width: 100%;
        padding-right: 0;
    }
}

/* catalogos */

.catalogos {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.catalogos-item {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.catalogos-item a{
    width:100%;
    display:table;
    border-radius:10px;
    border:1px solid #ddd;
    text-align:center;
}
.catalogos-item a img{
    margin:0 auto;
    display:table;
}


@media screen and (max-width: 1150px) {
    .catalogos-item {
        width: 33.33%;
    }
}

@media screen and (max-width: 840px) {
    .catalogos-item {
        padding-left: 10px;
        padding-right: 10px;
        width: 50%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 840px) {
    .catalogos-item {
        padding-left: 10px;
        padding-right: 10px;
        width: 50%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .catalogos-item {
        width: 100%;
    }
}

.catalogos-link {
    display: block;
    padding: 30px;
    border-radius: 5px;
    border: 2px solid #d6d6d6;
    text-align: center;
}

.catalogos-link h1 {
    margin-top: 22px;
}

.catalogos-link h1,
.catalogos-link h2 {
    font-size: 15px;
    font-weight: 700;
    color: #646464;
    text-align: center;
}

/* representantes */

.representantes-header {
    display: flex;
    align-items: center;
}

.representantes-text {
    flex: 1 1 auto;
    padding-right: 60px;
}

.representantes-select {
    flex: 1 0 400px;
}

@media screen and (max-width: 920px) {
    .representantes-header {
        flex-direction: column;
    }

    .representantes-select {
        flex: 1 0 auto;
        width: 100%;
        margin-top: 15px;
    }
}

.representantes-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: 100%;
    height: 60px;
    padding: 0 32px;
    border-radius: 3px;
    background-color: #4fb568;
    background-image: url('../img/icon-select.png');
    background-position: center right;
    background-repeat: no-repeat;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.representantes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: -20px;
    margin-right: -20px;
}

.representantes-item {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
    .representantes-item {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .representantes-line {
        flex-direction: column;
    }
}

.representantes-box {
    padding: 22px;
    border: 1px solid #d6d6d6;
}

.representantes-box h1 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #4fb568;
    text-transform: uppercase;
}

.representantes-line {
    display: flex;
    font-size: 15px;
    margin-bottom: 2px;
}

.representantes-label {
    width: 90px;
    font-weight: 700;
}

/* form */

.form input,
.form select,
.form textarea {
    outline: 0;
    width: 100%;
    padding: 20px 22px;
    margin-bottom: 16px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    /*text-transform: uppercase;*/
}

.form select {
    padding: 19px 20px;
    cursor: pointer;
}

.form textarea {
    height: 235px;
    resize: vertical;
}

.form-container {
    display: flex;
}

.form-left,
.form-right {
    width: 50%;
}

.form-left {
    padding-right: 8px;
}

.form-right {
    padding-left: 8px;
}

@media screen and (max-width: 600px) {
    .form-container {
        flex-direction: column;
    }

    .form-left,
    .form-right {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

.form-button {
    display: flex;
    justify-content: flex-end;
}

/* button */

.button {
    outline: 0;
    cursor: pointer;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 3px;
    background-color: #36a573;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    .button {
        width: 100%;
    }
}

.button i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    width: 24px;
    height: 16px;
    background-image: url('../img/icon-arrow-right.png');
}

.button i.buy {
    width: 20px;
    height: 19px;
    background-image: url('../img/icon-buy.png');
}

.button-white {
    background-color: #fff;
    color: #54c18c;
}

.button-white i {
    background-image: url('../img/icon-arrow-right-green.png');
}

.button-grey {
    color: #44bc8f;
    background-color: #f0f0f0;
}

/* index-secundary */

.index-secundary-container {
    display: flex;
}

.index-secundary-column {
    padding-right: 20px;
    width: 50%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1020px) {
    .index-secundary-container {
        flex-direction: column;
    }

    .index-secundary-column {
        width: 100%;
        padding-right: 0;
    }

    .index-secundary-column {
        margin-bottom: 20px;
    }

    .index-secundary-column:last-child {
        margin-bottom: 0;
    }
}

.index-secundary-image {
    width: 42%;
}

.index-secundary-image img {
    border-radius: 15px;
    width: 100%;
}

.index-secundary-content {
    width: 58%;
    padding-left: 30px;
    padding-right: 40px;
}

.index-secundary-content h1 {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 30px;
    font-weight: 400;
    color: #ffcc27;
    text-transform: uppercase;
}

.index-secundary-content h1 strong {
    display: block;
    font-weight: 900;
}

.index-secundary-content p {
    font-size: 15px;
    color: #333;
}

@media screen and (max-width: 700px) {
    .index-secundary-content h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 560px) {
    .index-secundary-column {
        flex-direction: column;
    }

    .index-secundary-image,
    .index-secundary-content {
        width: 100%;
    }

    .index-secundary-content {
        padding-left: 0;
        margin-top: 15px;
    }
}

/* carousel-produtos */

.carousel-produtos-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 160px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    color: #646464;
}

.carousel-produtos-link i {
    display: block;
    width: 82px;
    height: 58px;
    background-image: url('../img/icons-produtos.png');
}

.carousel-produtos-link i.categoria-1 { background-position: 0 0; }
.carousel-produtos-link i.categoria-2 { background-position: -82px 0; }
.carousel-produtos-link i.categoria-3 { background-position: -164px 0; }
.carousel-produtos-link i.categoria-4 { background-position: -246px 0; }
.carousel-produtos-link i.categoria-5 { background-position: -328px 0; }
.carousel-produtos-link i.categoria-6 { background-position: -410px 0; }
.carousel-produtos-link i.categoria-7 { background-position: -492px 0; }
.carousel-produtos-link i.categoria-8 { background-position: -574px 0; }
.carousel-produtos-link i.categoria-9 { background-position: -656px 0; }
.carousel-produtos-link i.categoria-10 { background-position: -738px 0; }
.carousel-produtos-link i.categoria-11 { background-position: -820px 0; }
.carousel-produtos-link i.categoria-12 { background-position: -902px 0; }
.carousel-produtos-link i.categoria-13 { background-position: -984px 0; }

.carousel-produtos-link h1 {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.carousel-produtos-link:hover {
    color: #4fb568;
    border-color: #4fb568;
}

.carousel-produtos-link:hover i.categoria-1 { background-position: 0 -58px; }
.carousel-produtos-link:hover i.categoria-2 { background-position: -82px -58px; }
.carousel-produtos-link:hover i.categoria-3 { background-position: -164px -58px; }
.carousel-produtos-link:hover i.categoria-4 { background-position: -246px -58px; }
.carousel-produtos-link:hover i.categoria-5 { background-position: -328px -58px; }
.carousel-produtos-link:hover i.categoria-6 { background-position: -410px -58px; }
.carousel-produtos-link:hover i.categoria-7 { background-position: -492px -58px; }
.carousel-produtos-link:hover i.categoria-8 { background-position: -574px -58px; }
.carousel-produtos-link:hover i.categoria-9 { background-position: -656px -58px; }
.carousel-produtos-link:hover i.categoria-10 { background-position: -738px -58px; }
.carousel-produtos-link:hover i.categoria-11 { background-position: -820px -58px; }
.carousel-produtos-link:hover i.categoria-12 { background-position: -902px -58px; }
.carousel-produtos-link:hover i.categoria-13 { background-position: -984px -58px; }


/* alto-vale */

.alto-vale {
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #4fb568;
    background-image: url('../img/alto-bg.png');
    position: relative;
}

.alto-vale-image {
    position: absolute;
    top: -40px;
    right: 0;
    width: 50%;
}

.alto-vale-image img {
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.alto-vale-content {
    width: 38%;
}

.alto-vale-content h1 {
    margin-bottom: 30px;
    line-height: 1.2;
    font-size: 55px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

.alto-vale-content h1 small {
    display: block;
    font-size: 45px;
    font-weight: 4700;
}

.alto-vale-text p {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 300;
    text-align: justify;
}

.alto-vale-text {
    margin-bottom: 30px;
}

@media screen and (max-width: 1220px) {
    .alto-vale-image {
        display: none;
    }

    .alto-vale-content {
        width: 100%;
    }
}

@media screen and (max-width: 970px) {
    .alto-vale {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .alto-vale-content h1 {
        font-size: 30px;
    }

    .alto-vale-content h1 small {
        font-size: 20px;
    }
}

/* swiper-slide-fotos */

.swiper-slide-fotos-item a {
    display: block;
}

.swiper-slide-fotos-item img {
    border-radius: 5px;
}

/* accordion */

.accordiont {}

.accordiont li {
    margin-bottom: 5px;
    position: relative;
}

.accordiont li div {
    display: none;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.accordiont span {
    width: 100%;
    display: block;
    /*cursor: pointer;*/
    position: relative;
    padding: 8px 26px;
    border-radius: 5px;
    background-color: #f0f0f0;
    font-size: 16px;
    font-weight: 700;
    color: #4eb467;
}
/*
.accordion span:after {
  width: 6px;
  height: 6px;
  border-right: 1px solid #4fb568;
  border-bottom: 1px solid #4fb568;
  position: absolute;
  right: 20px;
  content: " ";
  top: calc(50% - 3px);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}*/

.accordion-links a {
    display: block;
    padding: 14px 26px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 300;
    color: #585858;
}

.accordion-links a.active,
.accordion-links a:hover {
    color: #fff;
    background-color: #ffcc29;
}

.accordiont span:hover,
.accordiont span.active {
    color: #fff;
    background-color: #4fb568;
}

.accordiont span:hover:after {
    border-right-color: #fff;
    border-bottom-color: #fff;
}

.accordiont span.active:after {
    border-right-color: #fff;
    border-bottom-color: #fff;
    transform: rotate(-135deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* search */

.search {
    display: flex;
    height: 56px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #d6d6d6;
}

.search input {
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0 24px;
    width: 450px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #a1a1a1;
    text-transform: uppercase;
}

.search button {
    width: 56px;
    cursor: pointer;
    border: 0;
    outline: 0;
    border-radius: 5px;
    background-color: #d6d6d6;
    background-image: url('../img/icon-arrow-right-green.png');
    background-repeat: no-repeat;
    background-position: center center;
}

.filtro_produtos{
    display: block;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #d6d6d6;
}

/*

.filtro_produtos select{
    outline: 0;
    width: 100% !important;
    padding: 20px 22px !important;
    margin-bottom: 16px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700 !important;
    color: #000;
    text-transform: uppercase;
    
}*/

.filtro_produtos p{
    font-weight: bold;
    margin-top: 10px;
}

.filtro_produtos select {
    padding: 5px 5px !important;
    cursor: pointer;
    width: 100%;
}

.filtro_produtos button {
    outline: 0;
    cursor: pointer;
    width: 100%;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 3px;
    background-color: #36a573;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

@media screen and (max-width: 635px) {
    .produtos-page-search {
        width: 100%;
    }
    .search input {
        width: 100%;
    }
}

/* swiper-slide-detalhes-item */

.swiper-container-detalhes {
    border-radius: 5px;
    border: 1px solid #d6d6d6;
    width: 100%;
}

.swiper-slide-detalhes-item {
    padding: 20px;
    text-align: center;
}

.swiper-slide-detalhes-item a {
    display: inline-block;
}

/* swiper-container-default-arrows */

.swiper-container-default-arrows {}

/* swiper-button-next-default */

.swiper-button-next-default,
.swiper-button-prev-default {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    background-image: url('../img/icons-arrow-default.png');
    background-size: auto;
}

.swiper-button-prev-default {
    background-position: 0 0;
    left: 15px;
}

.swiper-button-next-default {
    background-position: -50px 0;
    right: 15px;
}

/* swiper-pagination-default */

.swiper-pagination-default .swiper-pagination-bullet {
    opacity: 1;
    width: 15px;
    height: 15px;
    background-color: #d6d6d6;
}

.swiper-pagination-default .swiper-pagination-bullet-active {
    background-color: #4fb568;
}

.swiper-container-detalhes > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 8px;
    margin-right: 8px;
}

/* swiper-container-detalhes */

.swiper-container-detalhes {
    padding-bottom: 60px;
}

/* swiper-slide-marcas-item */

.swiper-slide-marcas-item {
    text-align: center;
}

.swiper-slide-marcas-item h1 {
    width:100%;
    border-radius:5px;
    border: 1px solid #fff;
    min-height: 150px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* contato */

.contato {
    position: relative;
}

.contato-box {
    position: absolute;
    top: -50px;
    left: 0;
    width: 600px;
    padding: 50px;
    background-color: #4fb568;
    color: #fff;
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 970px) {
    .contato-box {
        display: none;
    }
}

.contato-box-container {
    display: flex;
    flex-direction: column;
}

.contato-box h5 {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

.contato-box h5 strong {
    font-weight: 900;
    display: block;
}

.contato-box .footer-fones {
    margin-top: 15px;
    margin-bottom: 15px;
    flex-direction: column;
}

.contato-box .footer-fones .footer-fones-item:first-child {
    margin-bottom: 15px;
}

/* carrinho */

.carrinho-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: -1px;
    border: 1px solid #d6d6d6;
}

.carrinho-quantidade{
    width:30%;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.carrinho-produto{
    width:40%;
}

@media screen and (max-width: 860px) {
    .carrinho-item {
        flex-direction: column;
    }
    .carrinho-produto{
        width:100%;
    }

    .carrinho-quantidade {
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: center;
        width:100%;
    }
}

.carrinho-produto {
    display: flex;
    align-items: center;
}

.carrinho-produto-foto {
    margin-right: 40px;
    width: 100px;
}

.carrinho-produto-detalhes h1 {
    font-size: 16px;
    font-weight: 700;
    color: #138b4c;
}

.carrinho-produto-detalhes span {
    font-size: 16px;
    font-weight: 300;
}

.carrinho-produto-detalhes p {
    font-size: 14px;
    font-weight: 300;
}

.carrinho-quantidade h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* quantidade */

.quantidade {
    width: 140px;
    height: 46px;
    border-radius: 3px;
    border: 1px solid #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.quantidade input[type="text"] {
    float: left;
    width: 60px;
    font-size: 13px;
    color: #a5a5a5;
    text-align: center;
    border: none;
    padding: 12px 0;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.quantidade-icon {
    width: 46px;
    height: 46px;
    cursor: pointer;
    background-image: url('../img/icons-quantidade.png');
}

.quantidade-icon.menos {
    background-position: 0 0;
}

.quantidade-icon.mais {
    background-position: -46px 0;
}

.quantidade-valor {
    font-size: 20px;
    font-weight: 700;
    color: #646464;
    cursor: default;
}

/* excluir */

.excluir {
    cursor: pointer;
    display: inline-flex;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #8b8b8b;
    text-transform: uppercase;
}

.excluir i {
    margin-left: 18px;
    width: 19px;
    height: 21px;
    background-image: url('../img/icon-excluir.png');
}

/* swiper-pagination-main */

@media screen and (max-width: 620px) {
    .swiper-pagination-main {
        display: none;
    }
}

.swiper-pagination-main .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background-color: #f0f0f0;
}

.swiper-pagination-main .swiper-pagination-bullet-active {
    background-color: #ffcc29;
}

.swiper-container-main > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 8px;
    margin-right: 8px;
}

.swiper-container-main > .swiper-pagination-bullets {
    bottom: 40px;
}

/* carrinho-actions */

.carrinho-actions {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 760px) {
    .carrinho-actions {
        margin-top: 20px;
        flex-direction: column;
    }

    .carrinho-actions-left .button {
        margin-bottom: 5px;
    }

    .carrinho-actions .button {
        width: 100%;
    }
}

/* swiper-container-marcas */

.swiper-container-marcas {
    width: 100%;
}

.swiper-container-marcas .swiper-button-next-default,
.swiper-container-marcas .swiper-button-prev-default {
    display: none !important;
}

.content-tabs {
    padding-top: 30px;
}
.alert{
    outline: 0;
    cursor: pointer;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 3px;
    background-color: #36a573;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}


/* Blog */
.page-news{
    width:100%;
    display:block;
}
.data-news,
.title-news{
    font-weight:900;
    font-size:17px;
    margin-bottom:10px;
    width: 45%;
}
.page-news p{
    text-align: justify;
    margin-bottom: 10px;
}

#social-share{
    margin-bottom:15px;
    width:fit-content;
}

#Slider{
    float:right;
    width:50%;
    margin-left:30px;
    margin-bottom:20px;
    position: relative;
    margin-top: -100px;
}
#Slider img{
    border-radius:10px;
    width: 100%;
}

@media screen and (max-width: 1100px){
    .page-news{
        display: flex;
        flex-direction: column;
    }
    #Slider{
        float: none;
        margin: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
    #social-share{
        margin-left: auto;
        margin-right: auto;
    }
    .data-news,
    .title-news{
        width: 100%;
        text-align: center;
    }
}


.blogIndex{
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #4fb568;
    background-image: url('../img/alto-bg.png');
    position: relative;
}
.containerBlog{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 40px;
}

.itemBlogInd{
    width: 100%;
    display: flex;
}
.itemBlogInd img{
    border-radius: 15px;
}
.itemBlogInd .txtItemBlog{
    margin-left: 20px;
    height: fit-content;
    align-self: center;
}
.itemBlogInd .txtItemBlog p{
    color: #fff;
    font-size: 18px;
}
.itemBlogInd .txtItemBlog p.dataN{
    font-weight: bold;
    font-size: 20px;
}


@media screen and (max-width: 1200px){
    .containerBlog{
        grid-template-columns: repeat(1,1fr);
    }
}

@media screen and (max-width: 650px){
    .itemBlogInd{
        flex-direction: column;
    }
    .itemBlogInd img{
        width: 100%;
        margin-bottom: 10px;
    }
    .itemBlogInd .txtItemBlog{
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

.paginationBlog{
    display: flex;
    justify-content: center;
}
#pagination ul{
    display: flex;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
#pagination ul li{
    width: fit-content;
    margin-right: 5px;
}
#pagination ul li:last-child{
    margin-right: 0;
}
#pagination ul li a{
    color:#fff;
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#pagination ul li a{
    border:1px solid #e5e5e5;
}
#pagination ul li:hover a,
#pagination ul li.ativo a{
    color:#fff;
    background:#ffcc27;
}