
@import "config.css";

/*
class para margin
*/
.mar5 { margin: 5px; }
.marTop5 { margin-top: 5px; }
.marBottom5 { margin-bottom: 5px; }
.marTopBottom5 { margin: 5px 0; }

.mar10 { margin: 10px; }
.marTop10 { margin-top: 10px; }
.marBottom10 { margin-bottom: 10px; }
.marTopBottom10 { margin: 10px 0; }

.mar15 { margin: 15px; }
.marTop15 { margin-top: 15px; }
.marBottom15 { margin-bottom: 15px; }
.marTopBottom15 { margin: 15px 0; }

.mar20 { margin: 20px; }
.marTop20 { margin-top: 20px; }
.marBottom20 { margin-bottom: 20px; }
.marTopBottom20 { margin: 20px 0; }

.mar30 { margin: 30px; }
.marTop30 { margin-top: 30px; }
.marBottom30 { margin-bottom: 30px; }
.marTopBottom30 { margin: 30px 0; }

.mar40 { margin: 40px; }
.marTop40 { margin-top: 40px; }
.marBottom40 { margin-bottom: 40px; }
.marTopBottom40 { margin: 40px 0; }

/* ESPACAMENTO / MARGIN */

/* ALIGN */
.alignTextCenter { text-align: center; }
.alignTextLeft { text-align: left; }
.alignTextRight { text-align: right; }
/* ALIGN */





/*
class para os styles de textos e titulos padroes 
*/
.title_default_main {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.title_default_main h1 {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--mainColor);
    font-size: var(--sizeText24);
    line-height: var(--sizeText30);
    font-weight: 400;
}

.title_default_main h2 {
    color: var(--grayDark);
    font-size: var(--sizeText20);
    font-weight: 300;
}

.text_p_default {
    display: block;
    font-size: var(--sizeText17);
    line-height: var(--sizeText24);
    color: var(--grayDark);
}

.text_ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}



/*
class para os styles de botoes tags e links 
*/


.btn_border,
.btn_default {
    text-align: center;
    display: block;
    font-size: var(--sizeText18);
    padding: 10px 10px;
    border-radius: 100px;
}

.btn_border {
    color: var(--mainColor);
    border: 1px solid var(--mainColor);
    transition: .5s;
}

.btn_default {
    color: #fff;
    background: var(--mainColor);
    transition: .5s;
    border: 0;
}

.btn_default:hover {
    color: #fff;
    background: var(--mainColor);
}
  
.icone_btn {
    width: 32px;
    height: 30px;
    margin-right: 5px;
    background: url("../images/user_btn.png") center center;
    background-repeat: no-repeat; 
    background-position: bottom -30px right 0;
}
  
.btn_border:hover .icone_btn {
    background-position: bottom 0px right 0;
}

.btn_border:hover {
    color: #fff;
    background: var(--mainColor);
}
/* ------ */


.tags_gray {
    width: auto;
    display: inline-block;
    padding: 7px 15px;
    margin: 5px;
    border-radius: 100px;
    color: #999;
    border: 1px solid rgba(153, 153, 153, 0.164);
    font-size: var(--sizeText14);
    transition: .3s;
    font-weight: 300;
}
  
.tags_gray:hover {
    color: var(--mainColor);
    border: 1px solid var(--mainColor);
}

.tags_green {
    width: auto;
    display: inline-block;
    padding: 7px 15px;
    border-radius: 100px;
    color: #fff;
    border: 1px solid #52b67d;
    font-size: var(--sizeText14);
    transition: .3s;
    font-weight: 300;
    background: #52b67d;
    height: fit-content;
}



/*
class para img
*/
.img_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*
class flex box
*/
.flex_row_between,
.flex_row_start,
.flex_row_end,
.flex_row_center {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
}

.flex_row_between {
    justify-content: space-between;
}

.flex_row_end {
    justify-content: flex-end;
}

.flex_row_start {
    justify-content: flex-start;
}

.flex_row_center {
    justify-content: center;
}


.row { 
    display: flex; 
    flex-wrap: wrap;    
    justify-content: flex-start;
    margin-right:-5px;
    margin-left:-5px;
}

.align_vertical {
    align-items: center;
}

.col1 { width:8.33333333%; }
.col2 { width:16.66666667%; }
.col3 { width:25%; }
.col4 { width:33.33333333%; }
.col5 { width:41.66666667%; }
.col6 { width:50%; }
.col7 { width:58.33333333%; }
.col8 { width:66.66666667%; }
.col9 { width:75%; }
.col10 { width:83.33333333%; }
.col11 { width:91.66666667%; }
.col12 { width:100%; }

.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 { padding: 0 5px; }


/*  */
.division_section {
    width: 100%;
    height: auto;
    padding: 20px 0 50px 0; 
}

@media (max-width: 900px) {
    .division_section.section_product.section_destaques {
        padding: 20px 0 0;
    }
}

@media (max-width: 800px) {  
    .card_product {
        width: 100%;
    }
}

/* card produto */
.card_product {
    width: 285px;
    height: auto;
    /* min-height: 504px; */
    position: relative;
    margin: 10px auto;
    border-radius: 10px;
    transition: .5s;
    border: 1px solid var(--whiteColor);
    -webkit-box-shadow: 0px 1px 9px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 1px 9px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 1px 9px 0px rgba(50, 50, 50, 0.1);
    padding: 0 15px 15px 15px;
    background: #fff;
}
  
.product_cover {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.product_cover .btn_border {
    padding: 9px;
    font-size: var(--sizeText16);
    margin-top: 10px;
    display: none;
}

.product_image_slider {
    width: 100%;
    height: auto;
    position: relative;
}

.cover_hover,
.product_image_slider li {
    display: block;
    width: 99%;
    margin: 10px auto 10px auto;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.cover_hover {
    width: 100%;
    position: absolute;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transition: .5s;
    margin: 10px auto;
    left: 0;
    right: 0;
}
  
    
/* setas */
.arrows_product .owl-nav .owl-next,
.arrows_product .owl-nav .owl-prev {
    width: 33px;
    height: 33px;
    position: absolute;
    opacity: 1;
    cursor: pointer;	
    display: block;
    top: 0;
    background: transparent !important;
}

.product_lists .owl-nav .owl-prev,
.product_lists .owl-nav .owl-next {
    top: calc(50% - 33px);
}

.product_lists .owl-nav .owl-prev {
    left: -3%;
}

.product_lists .owl-nav .owl-next {
    right: -3%;
}
  
/* --------------------------- */
.product_image_slider .owl-nav {
    width: 66px;
    height: 33px;
    position: absolute;
    z-index: 999;
    top: -47px;
    left: 50px;
}

.product_image_slider .owl-nav .owl-prev {
    /* left: 0; */
    top: 0;
}

.product_image_slider .owl-nav .owl-next {
    /* left: 33px; */
    top: 0;
}
/* setas */
  
.info_product {
    width: 100%;
    height: 145px;
    overflow: hidden;
    padding: 20px 0;
    background: #fff;
}

.info_product h3 {
    font-size: 16px;
    display: block;
    font-weight: 700;
    color: var(--grayDark);
}

.info_product .text_ellipsis {
    -webkit-line-clamp: 1;
}

.info_product strong {
    font-size: 24px;
    display: block;
    font-weight: 500;
    color: #000000;
    margin: 15px 0;
}

.info_product small {
    font-size: 16px;
    display: block;
    font-weight: 400;
    color: var(--grayDark);
}

.price_strike {
    color: #999;
    text-decoration: line-through;
    margin-top: 10px;
    font-size: var(--sizeText18);
    font-weight: 400;
}

/* ----------------------- */
  
.product_condition {
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_condition strong {
    font-weight: 400;
    margin-left: 4%;
}
  
.progress_bar_condition {
    width: 100%; 
    height: 7px; 
    background: #c2c2c2;
    border-radius: 70px; 
    overflow: hidden;
}

.color_condition {
    height: 7px;
    line-height: 30px;
    border-radius: 70px;
}

.progress_bar_condition.condicao_exelente .color_condition {
    width: 90%;
    background-color: #006646;
}

.condicao_otimo .color_condition {
    width: 60%;
    background-color: #00b177;
}

.condicao_bom .color_condition {
    width: 40%;
    background-color: #008da1;
}

.condicao_razoavel .color_condition{
    width: 20%;
    background-color: #fbb206;
}

.condicao_novo .color_condition{
    width: 100%;
    background-color:#26b67c;
}

.condicao_novo {color:#26b67c }
.condicao_excelente { color: #006646; }
.condicao_otimo { color: #00b177; }
.condicao_bom { color: #008da1; }
.condicao_razoavel { color: #fbb206;}

/* hovers */
.card_product:hover .cover_hover {
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.card_product:hover {
    border: 1px solid var(--mainColor);
}

.card_product:hover .btn_border {
    color: var(--whiteColor);
    background: var(--mainColor);
}

/* ============================= */
/* FIM BOXS PRODUTOS */
/* ============================= */


.arrows_carousel .owl-nav .owl-next,
.arrows_carousel .owl-nav .owl-prev {
    position: absolute;
    opacity: 1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    cursor: pointer;	
    display: block;
    z-index: 99999;
    width: 33px;
    height: 33px;
    top: calc(50% - 15px);
}

.arrows_carousel .owl-nav .owl-prev {
	left: -3%;
}

.arrows_carousel .owl-nav .owl-next {
	right: -3%;
}

@media (max-width: 900px) {  
    .arrows_carousel .owl-nav .owl-prev {
        left: -5%;
    }

    .arrows_carousel .owl-nav .owl-next {
        right: -5%;
    }
}

/* ============================= */
/* CLASS */
/* ============================= */

#newsletter {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: #00684a;
    text-align: center;
    color: #fff;
}

#newsletter h1 {
    font-size: var(--sizeText36);
    font-weight: 400;
}

#newsletter form {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#newsletter input {
    font-size: var(--sizeText18);
    font-weight: 300;
}

#newsletter input[type="text"] {
    width: 70%;
    height: 40px;
    border-radius: 100px;
    background: #fff;
    border: 0;
    padding: 0 20px;
}

#newsletter input[type="submit"] {
    width: 28%;
    height: 40px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid #fff;
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    transition: .5s;
}

#newsletter input[type="submit"]:hover {
    background: var(--mainColor);
}

/* ============================= */
/* FIM NEWSLETTER */ 
/* ============================= */

#footer {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--mainColor);
}

#footer .container_geral_semexe {
    max-width: 1025px;
}

#logo_footer {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 40px;
}

#footer .container_geral_semexe {
    display: flex;
    justify-content: space-between;
}

#footer .box_footer {
    width: 23%;
    font-size: var(--sizeText19);
}

#footer .box_footer_sobre {
    color: #fff;
    width: 30%;
}

#footer .box_footer_sobre p {
    font-weight: 300;
    max-width: 200px;
    margin-bottom: 30px;
    line-height: 27px;
}

#footer .box_footer_sobre h4 {
    font-weight: 300;
    font-size: var(--sizeText17);
    margin-bottom: 20px;
}

#footer .box_footer_sobre div {
    max-width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .box_footer ul li {
    margin-bottom: 15px;
}

#footer .box_footer ul li a {
    color: #fff;
    display: block;
    padding: 5px 0;
    font-weight: 300;
}

#footer .box_footer ul li:last-child {
    margin-bottom: 0;
}

.sub_footer {
    width: 100%;
    height: auto;
    border-top: 1px solid #fff;
    margin-top: 50px;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.cnpj_semexe {
    font-size: var(--sizeText18);
    font-weight: 300;
}

.sub_footer .certificados_footer {
    width: 14%;
}

.sub_footer .certificados_footer:nth-child(4) {
    width: 10%;
}



@media (max-width: 900px) {  
    #logo_footer {
        margin-bottom: 20px;
    }

    #footer .container_geral_semexe {
        flex-wrap: wrap;
    }

    #footer .box_footer, 
    #footer .box_footer_sobre {
        width: 100%;
    }

    #footer .box_footer_sobre {
        border-bottom: 1px solid #fff;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    #footer .box_footer_sobre p {
        max-width: 100%;
    }

    .sub_footer {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cnpj_semexe {
        width: 100%;
        order: 2;
        margin-top: 20px;
        line-height: var(--sizeText30);
    }

    .sub_footer .certificados_footer {
        width: 35%;
    }

    .sub_footer .certificados_footer:nth-child(4) {
        width: 25%;
    }

}



/* ============================= */
/* FIM FOOTER */
/* ============================= */

.crumb {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    font-size: var(--sizeText18);
    font-weight: 400;
    color: var(--grayDark);
}

.crumb a {
    color: var(--mainColor);
}

/* ============================= */
/* FIM CRUMB */
/* ============================= */
  

.text_more {
    max-height: 45px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}

.text_more p {
    color: var(--grayDark);
    margin: 0 0 15px 0;
    font-size: var(--sizeText16);
    line-height: 20px;
    font-weight: 400;
}

.text_more_overflow {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: linear-gradient(to bottom, transparent, #fff);
}

.text_more_overflow[data-state="visible"] {
    display: block;
}

.text_more_toggle {
    width: auto;
    padding: 0;
    margin-top: 0px;
    cursor: pointer;
    border: 0;
    background: transparent;
    margin-top: 0px;
    color: var(--mainColor);
    font-size: var(--sizeText17);
    display: flex;
    align-items: center;
    position: relative;
}

.text_more_toggle::after {
    content: " ";
    left: 100px;
    top: 4px;
    position: absolute;
    border: solid var(--mainColor);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
}

.text_more_toggle[data-state="less"]::after {
    transform: rotate(225deg);
    left: 115px;
    top: 10px;
}

.text_more_toggle[data-state="less"] {
    margin-top: 0;
}
/* ============================= */
/* FIM TEXTO VER MAIS */
/* ============================= */


.accordion_item_summary {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    cursor: pointer;
    padding: 10px 0;
}

.accordion_item_summary h5 {
    font-weight: 400;
    font-size: var(--sizeText16);
    color: var(--grayDark);
}

.accordion_item_detail {
    width: 100%;
    background-color: #FFF;
    max-height: 0;
    opacity: 0;
    padding: 0;
    visibility: hidden;
    overflow: hidden;
}

.accordion_item_detail::-webkit-scrollbar-track {background-color: #eee;}
.accordion_item_detail::-webkit-scrollbar {width:8px; background: #eee;}
.accordion_item_detail::-webkit-scrollbar-thumb {background: #ccc;}

.accordion_item_icon {
    width: 20px;
    height: 20px;
    transition: .5s;
}

.accordion_item_icon img {
    filter: none;
    -webkit-filter: grayscale(100%) !important;
}

.accordion_item_active .accordion_item_icon {
    transform: rotate(90deg);
    transition: .5s;
}

.accordion_item_active .accordion_item_icon img {
    -webkit-filter: grayscale(0%) !important;
    filter: grayscale(0%) !important;
}

.accordion_item_active .accordion_item_detail {
    max-height: 500px;
    overflow: auto;
    opacity: 1;
    visibility: visible;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
/* ============================= */
/* FIM ACCORDION */
/* ============================= */



@media (max-width: 1180px) {
    .cover_hover {
        display: none;
    }
}
  
@media (max-width: 900px) {
        
    #newsletter {
        padding: 40px 0;
    }

    #newsletter h1 {
        font-size: var(--sizeText30);
        font-weight: 400;
    }

    #newsletter form {
        display: block;
    }

    #newsletter input {
        width: 100% !important;
        margin: 5px 0;
    }

    /* ============================= */
    /* FIM NEWSLETTER */ 
    /* ============================= */


    .card_product {
        width: 90%;
    }

    .product_lists .owl-nav .owl-prev {
        left: -5%;
    }
    
    .product_lists .owl-nav .owl-next {
        right: -5%;
    }
  
}








.input_default input,
.input_default select {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #999999;
    padding: 0 10px;
    color: #9f9f9f;
    font-size: var(--sizeText17);
    font-weight: 300;
}

.input_default select {   
    background-image: url("../images/icons/chevron_big_down.png"); 
    background-repeat:no-repeat; 
    background-position: bottom 14px right 10px;
    filter: grayscale(100%);
}

.input_default input:focus,
.input_default select:focus {
    border: 1px solid var(--mainColor);
}

.input_default label {
    width: 100%;
    color: var(--grayDark);
    font-size: var(--sizeText16);
    font-weight: 400;
}




/* STYLE INPUT */

.checkbox_default label { 
    display: flex; 
    align-items: center;
    margin: 15px 0;
}

.checkbox_default label > input { display: none; }

.checkbox_default label > i {
    display: inline-block;
    width: 22px;
    height: 20px;
    border-radius: 5px;
    margin-right: 5px;
    border: 1px solid var(--gray);
    background: var(--whiteColor);    
    -webkit-transition: .25s;
    transition: .25s;
}

.checkbox_default label > span {
    width: calc(100% - 25px);
    display: block;
    padding-left: 5px;
    color: var(--grayDark);
    font-size: var(--sizeText16);
    font-weight: 400;
}

.checkbox_default label > input:checked + i {
    border: 2px solid var(--mainColor);   
    background: url(../images/nova_home/icon_ok.png) var(--mainColor) center no-repeat; 
    background-size: cover;
    box-shadow: 0 0 0 3px var(--mainColorShadow);
}

.checkbox_default label:hover {
    cursor: pointer;
}

.checkbox_default label > input:disabled + i {
    border: 1px solid #eee;   
    box-shadow: 0 0 0 3px var(--mainColorShadow);
}

.checkbox_default label > .disabled  {
    color: #eee !important;
    background: #fff !important;
}

/* STYLE INPUT */

























#col_register {
    width: 100%;
    height: auto;
    max-width: 700px;
    margin: 0 auto;
}

#col_register form {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#col_register form .input_default {
    width: 47%;
    margin: 15px 1.5%;
}

#col_register form .input_default label {
    margin-bottom: 10px;
}

#col_register .btn_default {
    width: 100%;
    max-width: 400px;
    margin: 15px auto;
    height: 40px;
    padding: 0;
    font-weight: 300;
    cursor: pointer;
}
.btn_facebook {
    background: #4267b2;
}

.image-content {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.image-content img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Ajuste carousel imagens produto */

.card_product .product_image_slider .owl-nav {
    width: 100%;
    height: 33px;
    position: absolute;
    z-index: 999;
    top: 80px;
    left: 0;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.card_product:hover .product_image_slider .owl-nav {
    opacity: 1;
}

.discount_price {
    margin-top: 10px;
    color: darkgray!important;
    display: inline-flex!important;
    gap: 5px;
}
  
.discount_percent {
    font-size: 12px;
    background: #52b67d;
    margin-left: 10px;
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    display: inline-flex;
}

.img-cover-height {
    height: 230px;
}

@media (max-width: 660px) {
    #col_register form .input_default {
        width: 100%;
        margin: 15px 0;
    }
    
    #col_register form .input_default label {
        margin-bottom: 10px;
    }    
}