:root{
    --default: #ffd400;
    --defaultBlack: #141414;
    --defaultWhite: #ffffff;

    --headerHeight:70px;
    --headerBackground: var(--defaultBlack);
    --headerColor: var(--defaultWhite);
    --headerLogoWidth: 300px;

    --footerHeight:240px;
    --footerPadding:50px 0;
    --footerBackground: var(--defaultBlack);
    --footerColor: #bbb;
    --footerLogoWidth: 100px;

    --headerMenuWidth:300px
}
[data-anime]{
    filter:opacity(0);
    transition: .4s;
}
[data-anime="up"]{
    transform: translate3d(0, +70px, 0);
}
[data-anime="left"]{
    transform: translate3d(-70px, 0, 0);
}
[data-anime="right"]{
    transform: translate3d(+70px, 0, 0);
}
[data-anime].animate{
    filter:opacity(1) !important;
    transform: translate3d(0,0,0);
}
@font-face { font-family: Raleway; src: url(fonts/Raleway-Regular.ttf); }
@font-face { font-family: Raleway-Medium; src: url(fonts/Raleway-Medium.ttf); }
@font-face { font-family: Raleway-SemiBold; src: url(fonts/Raleway-SemiBold.ttf); }
@font-face { font-family: Raleway-Bold; src: url(fonts/Raleway-Bold.ttf); }
@font-face { font-family: Raleway-ExtraBold; src: url(fonts/Raleway-ExtraBold.ttf); }
@font-face { font-family: Raleway-Black; src: url(fonts/Raleway-Black.ttf); }
/* ----------- Body ----------- */
body, html{
    font-family: Raleway;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: var(--defaultWhite);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    position: relative;
    height: 100%;
}
/* ------------------- */
::-webkit-scrollbar {
    width: 4px;               /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
background: var(--defaultBlack);        /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
background-color: var(--default);    /* color of the scroll thumb */
}
/* ------------------- */
.divider-h{
    height: 1px;
    background-color: #e8e8e8;
    width: 100%;
    margin: 10px 0;
}
/* ------------------- */
.banner>img[data-slide]{
    z-index: -2;
    transition: 1s;
    filter: opacity(1);
}
.banner>img[data-slide="2"]{
    z-index: 0;
}
.banner>img[data-slide="1"]{
    z-index: 1;
}
.banner>img[data-slide].fade{
    filter: opacity(0);
}
/* ------------------- */
.logo-flutuante{
    width: 70px;
    height: 70px;
    box-sizing: border-box;    
    position: fixed;
    z-index: -2;
    border-radius: 50%;
    padding: 1rem;
    background-color: var(--defaultBlack);
    display: flex;
    align-items: center;
    justify-content: center;
    filter:opacity(0);
    transition: .2s;
    margin-top: 10px;
    margin-left: 2rem;
}
.logo-flutuante.active{
    filter:opacity(1) !important;
    margin-top: 2rem;
    z-index: 10;
}
.logo-flutuante img{
    width: 100%;
    height: auto;
}
/* ------------------- */
.carrinho-flutuante{
    width: 70px;
    height: 70px;
    box-sizing: border-box;    
    position: fixed;
    z-index: 10;
    border-radius: 50%;
    padding: 1rem;
    background-color: var(--default);
    display: flex;
    align-items: center;
    justify-content: center;
    filter:opacity(1);
    transition: .2s;
    margin-bottom: 2rem;
    margin-right: 4rem;
    bottom: 0;
    right: 0;
}
.carrinho-flutuante:hover{
    transform: scale(1.1,1.1);
}
.carrinho-flutuante>img{
    width: 80%;
    height: auto;
}
/* ------------------- */
.container{
    width: auto;
    max-width: 1460px;
    display: flex;
    margin: auto;
    padding: 0 2rem;
}
.container.min{
    max-width: 1000px;
}
/* ------------------- */
.btn{
    width: fit-content;
    padding: 12px 30px;
    letter-spacing: 1.4px;
    background: var(--default);
    color: var(--defaultBlack);
    font-family: Raleway-Bold;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: .2s;
    text-align: center;
    margin:auto;
}
.btn:hover{
    transform: scale(1.04);
}
/* ------------------- */
.topic{
    padding: 50px 0;
    width: 100%;
}
.topic .title,.topic .topic-title{
    font-size: 38px;
    font-family: Raleway-Bold;
    color: var(--defaultBlack);
}
.topic .topic-sub-title{
    font-size: 22px;
    font-family: Raleway-SemiBold;
    margin-bottom: 2px;
    color: var(--defaultBlack);
}
.topic .topic-desc{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--defaultBlack);
    line-height: 21px;
}
.topic .topic-desc a,.topic .topic-sub-title a,.topic .topic-title a{
    color: var(--defaultBlack);
    font-weight: 500;
    text-decoration: none;
    position: relative;
}
.topic .topic-desc a::before, .topic .topic-sub-title a::before, .topic .topic-title a::before{
    content: '';
    position: absolute;
    bottom: -2px;
    height: 1px;
    width: 100%;
    background-color: #ddd;
    left: 0;
}
.topic .topic-desc a::after, .topic .topic-sub-title a::after, .topic .topic-title a::after{
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--default);
    left: 0;
    transition: .5s;
}
.topic .topic-desc a:hover::after, .topic .topic-sub-title a:hover::after, .topic .topic-title a:hover::after{
    width: 100%;
}
.topic .topic-banner{
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.topic .topic-banner img{
    width: 100%;
    height: auto;
    position: relative;
}
.topic .topic-image{
    width: 340px;
    height: auto;
}
.topic .topic-image img{
    width: 100%;
    height: auto;
}
.topic-point{
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}
.topic-point::before{
    content: '-';
    font-size: 30px;
    position: absolute;
    left: 6px;
    top: 0;
}
/* header */
#header{
    width: 100%;
    height: var(--headerHeight);
    background: var(--defaultBlack);
    color: var(--defaultWhite);
}
#header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}
#header .header-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}
#header .header-logo>img{
    max-height: 76%;
    margin:0 40px 0 80px;
}
#header .list{
    position: absolute;
    top: var(--headerHeight);
    height: fit-content;
    left: 0;
    width: 100%;
    background-color: #fcfcfc;
    box-shadow: 0 2px 6px 0px #00000033;
    z-index: 10;
    filter: opacity(0);
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .list.active{
    padding: 30px 0 60px 0;
    filter: opacity(1);
}
#header .list .menu-list-topic{
    filter: opacity(0);
    display: none;

    transition: .5s;
    transform: translate3d(0, +30px, 0);
}
#header .list .menu-list-topic.open{
    display: flex;
}
#header .list .menu-list-topic.open.anim{
    filter: opacity(1);
    transform: translate3d(0,0,0);
}
#header .list .menu-list-topic-item{
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    font-size: 18px;
    font-family: Raleway-Medium;
}
#header .list .menu-list-topic-item .menu-list-home-hook{
    display: none;
}
#header .list .menu-list-topic-item .menu-list-topic-item-title{
    text-transform: uppercase;
    padding-top: 15px;
    padding-right: 10px;
    margin-right: -10px;
    color: var(--defaultBlack);
    text-decoration: none;
    width: fit-content;
}
#header .list .menu-list-topic-item .menu-list-topic-item-desc{
    color: var(--defaultBlack);
    text-decoration: none;
    width: fit-content;
    padding-top: 5px;
    padding-right: 10px;
    margin-right: -10px;
}
#header .list .menu-list-topic-item>*{
    position: relative;
    cursor: pointer;
}
#header .list .menu-list-topic-item>*::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    background-color: var(--default);
    width: 0%;
    transition: .3s;
}
#header .list .menu-list-topic-item>*:hover::before{
    width: 100%;
}
.menu-change{
    display: none;
}
.menu{
    display: flex;
    width: calc(100% - var(--headerLogoWidth));
    height: 100%;
    justify-content: end;
    position: relative;
}
.menu .menu-list-topic{
    display: none;
}
.menu-item{
    min-width: fit-content;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: .1s;
    text-decoration: none;
    color: var(--headerColor);
}
.menu-item>div{
    width: fit-content;
    position: relative;
}
.menu-item>div::after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
    height: 2px;
    width: 0%;
    transition: .25s;
    background:var(--default);
}
.menu-item.active{
    background: var(--default);
    color: var(--defaultBlack);
    font-weight: 600;
}
.menu-item.active:hover{
    color: var(--defaultBlack);
}
.menu-item.active>div::after{
    background:var(--defaultBlack);
}
.menu-item:hover{
    color: var(--default);
}
.menu-item:hover div::after, .menu-item.active div::after{
    width: 100%;
}
/* footer */
#footer{
    padding: var(--footerPadding);
    background: var(--defaultBlack);
    color: var(--footerColor);
    width: 100%;
}
#footer .container{
    justify-content: start;
    padding: 0;
}
#footer .footer-logo{
    display: flex;
    align-items: start;
    justify-content: start;
    cursor: pointer;
    width: 18%;
    margin-left: 100px;
}
#footer .footer-logo>img{
    max-width: 66%;
}
#footer .footer-item{
    width: 23%;
    display: flex;
    flex-direction: column;
}
#footer .footer-item > [class^="footer-item-"]{
    font-size: 14px;
    margin: 7px 0;
    font-weight: 500;
    text-decoration: none;
    color: var(--footerColor);
    cursor: default;
}
#footer .footer-item a.footer-item-text:hover{
    text-decoration: underline;
    cursor: pointer;
}
#footer .footer-item .footer-item-title{
    font-size: 16px;
    margin-top: 0px;
}
/* ------------------- */
.banner.b01{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
}
.banner.b01 > img{
    min-width: 100%;
    min-height: 100%;
    position: absolute;
}
.banner.b01 .topic{
    position: absolute;
    width: 56%;
    background: none;
    z-index: 3;
}
.banner.b01 .topic .title, .banner.b01 .topic .desc, .banner.b01 .topic .sub-desc{
    width: 60%;
}
.banner.b01 .topic .title{
    color: var(--default);
    font-size: 50px;
    font-weight:900;
    font-family: Raleway-Black;
}
.banner.b01 .topic .desc{
    color: var(--defaultWhite);
    font-size: 38px;
    font-family: Raleway-Bold;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}
.banner.b01 .topic .sub-desc{
    color: #ccc;
    font-size: 19px;
    font-family: Raleway-Medium;
}
/* ------------------- */
.banner.b02{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    overflow: hidden;
}
.banner.b02 > img{
    width: 100%;
    position: absolute;
}
/* ------------------- */
.banner.b03{
    position: relative;
    overflow: hidden;
    height: 380px;
}
.banner.b03 .container{
    z-index: 1;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.banner.b03 .topic{
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    width: 90%;
}
.banner.b03 > img{
    z-index: 0;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    bottom: 50%;
    transform: translate(0, -50%);
}
.banner.b03 .card{
    width: 40%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px 22px;
    box-sizing: border-box;
}
.banner.b03 .card .title{
    font-size: 26px;
    color: var(--defaultBlack);
    margin-bottom: 12px;
}
.banner.b03 .card .desc{
    font-size: 18px;
    color: var(--defaultBlack);
    margin-bottom: 18px;
}
/* ------------------- */
.banner.b04 .topic{
    justify-content: end;
}
/* ------------------- */
#eficazContra{
    background-color:var(--defaultBlack);
}
#eficazContra .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--default);
    padding-bottom: 50px;
}
#eficazContra .topic .cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#eficazContra .topic .cards .card{
    width: 170px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#eficazContra .topic .cards .card img{
    width: 50%;
    margin-bottom: 30px;
}
#eficazContra .topic .cards .card .desc{
    font-family: Raleway-Black;
    color: var(--defaultWhite);
    font-size: 20px;
    user-select: none;
    margin-bottom: 30px;
}
/* ------------------- */
#saudeGlobal .topic{
    display: flex;
    justify-content: space-evenly;
    padding: 100px 0;
}
#saudeGlobal .topic .img{
    width: 36%;
    aspect-ratio: 10 / 9;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
#saudeGlobal .topic .info{
    width: 38%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#saudeGlobal .topic .info .title{
    color: var(--defaultBlack);
    padding-bottom: 8px;
}
#saudeGlobal .topic .info .desc{
    color: var(--defaultBlack);
    font-family: Raleway-SemiBold;
    font-size: 19px;
    padding-bottom: 30px;
    width: 90%;
}
/* ------------------- */
#tecnologia{
    background: var(--defaultWhite);
}
#tecnologia .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 60px;
    margin-top: -70px;
}
#tecnologia .topic .cards{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#tecnologia .topic .cards .card{
    width: 28%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 200px;
}
#tecnologia .topic .cards .card .img{
    width: 100%;
    aspect-ratio: 7 / 4;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    filter: brightness(0.6) contrast(0.8);
    position: absolute;
    z-index: 2;
}
#tecnologia .topic .cards .card .title{
    font-family: Raleway-Bold;
    color: var(--defaultWhite);
    font-size: 26px;
    user-select: none;
    margin-bottom: 10px;
    margin-top: 0px;
    z-index: 3;
    padding-bottom: 10px;
}
#tecnologia .topic .cards .card .desc{
    font-family: Raleway-Medium;
    color: var(--defaultWhite);
    font-size: 18px;
    user-select: none;
    z-index: 3;
    text-align: center;
    width: 70%;
}
/* ------------------- */
#diferentesSetores{
    background: var(--defaultWhite);
}
#diferentesSetores .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 50px;
}
#diferentesSetores .topic .cards{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#diferentesSetores .topic .cards .card{
    width: 36%;
    display: flex;
    justify-content: space-between;
    height: 200px;
}
#diferentesSetores .topic .cards .card .img{
    height: 80%;
    aspect-ratio: 1 / 1;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}
#diferentesSetores .topic .cards .card .desc{
    font-family: Raleway-SemiBold;
    color: var(--defaultBlack);
    font-size: 17px;
    user-select: none;
    width: 70%;
    margin-left: 26px;
    margin-top: 6px;
}
#diferentesSetores .topic .cards .card .desc>b{
    font-family: Raleway-Bold;
    font-size: 22px;
    line-height: 34px;
}
/* ------------------- */
#comprarAgora{
    background: var(--defaultWhite);
}
#comprarAgora .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 50px;
    font-size: 30px;
    font-family: Raleway-Black;
    text-align: center;
    margin-top: -50px;
}
#comprarAgora .topic .btn{
    font-size: 24px;
    margin: 0 auto;
}
/* ------------------- */
#ondePodeSerAplicado{
    background-color:var(--defaultWhite);
}
#ondePodeSerAplicado .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 50px;
    text-align: center;
}
#ondePodeSerAplicado .topic .cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#ondePodeSerAplicado .topic .cards .card{
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 38px;
    margin-bottom: 50px;
}
#ondePodeSerAplicado .topic .cards .card .img{
    width: 90%;
    aspect-ratio: 1 / 1;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}
#ondePodeSerAplicado .topic .cards .card .desc{
    font-family: Raleway-Bold;
    color: var(--defaultBlack);
    font-size: 22px;
    width: 80%;
    user-select: none;
    text-align: center;
}
/* ------------------- */
#aprovadoPeloMundo{
    background-color:var(--defaultWhite);
    margin-top: -30px;
}
#aprovadoPeloMundo .container{
    display:flex;
    flex-direction: column;
    margin-bottom: 90px;
    align-items: center;
}
#aprovadoPeloMundo .topic{
    display: flex;
    align-items: center;
    width: 100%;
}
#aprovadoPeloMundo .topic .title{
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--defaultBlack);
    text-align: end;
}
#aprovadoPeloMundo .topic .cards{
    width: 60%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#aprovadoPeloMundo .topic .cards img{
    width: 170px;
    height: 100px;
    object-fit: contain;
    margin: 4px 8px;
}
/* ------------------- */
#first-ever-registered_info{
    background: var(--defaultWhite);
}
#first-ever-registered_info .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 80px;
    margin-top: -20px;
}
#first-ever-registered_info .topic .cards{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: self-start;
}
#first-ever-registered_info .topic .cards .card{
    width: 28%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
}
#first-ever-registered_info .topic .cards .card .icon{
    width: 29%;
    background-color: var(--defaultBlack);
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    z-index: 2;
}
#first-ever-registered_info .topic .cards .card .icon img{
    width: 60%;
    height: auto;
}
#first-ever-registered_info .topic .cards .card .title{
    font-family: Raleway-Bold;
    color: var(--defaultBlack);
    font-size: 28px;
    user-select: none;
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 2px;
}
#first-ever-registered_info .topic .cards .card .desc{
    font-family: Raleway-Medium;
    color: var(--defaultBlack);
    font-size: 16px;
    user-select: none;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}
/* TECNOLOGIA */
/* ------------------- */
#tecnologia_tecnologia{
    background: var(--defaultWhite);
}
#tecnologia_tecnologia .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 30px;
}
#tecnologia_tecnologia .topic .desc{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    font-size: 26px;
    font-family: Raleway-Bold;
    text-align: center;
}
/* ------------------- */
#tecnologia_insetosQueRepelimos .topic{
    display: flex;
    justify-content: space-evenly;
}
#tecnologia_insetosQueRepelimos .topic .img{
    width: 36%;
    aspect-ratio: 10 / 9;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
#tecnologia_insetosQueRepelimos .topic .info{
    width: 38%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#tecnologia_insetosQueRepelimos .topic .info .title{
    color: var(--defaultBlack);
    padding-bottom: 8px;
}
#tecnologia_insetosQueRepelimos .topic .info .desc{
    color: var(--defaultBlack);
    font-family: Raleway-SemiBold;
    font-size: 19px;
    padding-bottom: 30px;
    width: 90%;
}
/* ------------------- */
#tecnologia_info{
    background: var(--defaultWhite);
}
#tecnologia_info .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 80px;
    margin-top: -20px;
}
#tecnologia_info .topic .cards{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#tecnologia_info .topic .cards .card{
    width: 28%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}
#tecnologia_info .topic .cards .card .img{
    width: 100%;
    aspect-ratio: 8 / 6;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    z-index: 2;
}
#tecnologia_info .topic .cards .card .title{
    font-family: Raleway-Bold;
    color: var(--defaultBlack);
    font-size: 28px;
    user-select: none;
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 10px;
}
#tecnologia_info .topic .cards .card .desc{
    font-family: Raleway-Medium;
    color: var(--defaultBlack);
    font-size: 18px;
    user-select: none;
    z-index: 3;
    text-align: center;
    width: 70%;
}
/* insetos-que-repelimos */
/* ------------------- */
#insetos-que-repelimos_insetos-que-repelimos{
    background: var(--defaultWhite);
}
#insetos-que-repelimos_insetos-que-repelimos .topic .title{
    padding: 24px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
}
#insetos-que-repelimos_insetos-que-repelimos .topic .desc{
    text-align: center;
    width: 90%;
    margin: 0 auto;
    font-size: 20px;
    font-family: Raleway-SemiBold;
}
/* ------------------- */
#insetos-que-repelimos_info{
    background: var(--defaultWhite);
}
#insetos-que-repelimos_info .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 80px;
    margin-top: -20px;
}
#insetos-que-repelimos_info .topic .cards{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: self-start;
}
#insetos-que-repelimos_info .topic .cards .card{
    width: 28%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
}
#insetos-que-repelimos_info .topic .cards .card .img{
    width: 100%;
    aspect-ratio: 8 / 6;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    z-index: 2;
}
#insetos-que-repelimos_info .topic .cards .card .title{
    font-family: Raleway-Bold;
    color: var(--defaultBlack);
    font-size: 28px;
    user-select: none;
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 2px;
}
#insetos-que-repelimos_info .topic .cards .card .desc{
    font-family: Raleway-Medium;
    color: var(--defaultBlack);
    font-size: 16px;
    user-select: none;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}
/* doencas-transmitidas-por-insetos */
/* ------------------- */
#doencas-transmitidas-por-insetos_doencas-transmitidas-por-insetos{
    background: var(--defaultWhite);
}
#doencas-transmitidas-por-insetos_doencas-transmitidas-por-insetos .topic .title{
    padding: 24px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
}
#doencas-transmitidas-por-insetos_doencas-transmitidas-por-insetos .topic .desc{
    text-align: center;
    width: 90%;
    margin: 0 auto;
    font-size: 20px;
    font-family: Raleway-SemiBold;
}
/* ------------------- */
#doencas-transmitidas-por-insetos_info{
    background: var(--defaultWhite);
}
#doencas-transmitidas-por-insetos_info .topic .title{
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
    padding-bottom: 80px;
    margin-top: -20px;
}
#doencas-transmitidas-por-insetos_info .topic .cards{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
}
#doencas-transmitidas-por-insetos_info .topic .cards .card{
    width: 28%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
}
#doencas-transmitidas-por-insetos_info .topic .cards .card .img{
    width: 100%;
    aspect-ratio: 8 / 6;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    z-index: 2;
}
#doencas-transmitidas-por-insetos_info .topic .cards .card .title{
    font-family: Raleway-Bold;
    color: var(--defaultBlack);
    font-size: 28px;
    user-select: none;
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 2px;
}
#doencas-transmitidas-por-insetos_info .topic .cards .card .desc{
    font-family: Raleway-Medium;
    color: var(--defaultBlack);
    font-size: 16px;
    user-select: none;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}
/* SAUDE GLOBAL */

/* ------------------- */
#saudeglobal_saudeglobal{
    background: var(--defaultWhite);
}
#saudeglobal_saudeglobal .topic .title{
    padding: 24px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--defaultBlack);
}
/* shop */

/* ------------------- */
.product{
    display: flex;
    justify-content: center;
    height: auto;
    width: 80%;
    margin: auto;
    padding: 20px 0;
    color: var(--defaultBlack);
}
.product .product-image{
    width: 45%;
    display: flex;
    align-items: center;
    height: fit-content;
    padding: 0 30px 0 0;
}
.product .product-image img{
    max-width: 100%;
    height: auto;
}
.product .product-info{
    width: 55%;
}
.product .product-info .product-name{
    font-size: 28px;
    font-family: Raleway-Bold;
    text-transform: uppercase;
    text-transform: capitalize;
}
.product .product-info .product-price{
    font-size: 28px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    position: relative;
    padding-left: 26px;
}
.product .product-info .product-price::before{
    content: 'R$ ';
    font-size: 17px;
    bottom: 3.5px;
    left: 0px;
    position: absolute;
    font-weight: 600;
}
.product .product-info .product-size{
    font-size: 17px;
    font-family: Raleway-SemiBold;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}
.product .product-info .product-size .opts{
    display: flex;
}
.product .product-info .product-size .opt{
    width: fit-content;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--defaultWhite);
    border: 1px solid #ccc;
    font-size: 16px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 6px;
    margin-top: 4px;
    padding: 0 15px;
    user-select: none;
}
.product .product-info .product-size .opt.selected{
    background-color: var(--default);
}
.product .product-info .product-size .opt:hover{
    filter: brightness(0.92);
    cursor: pointer;
}
.product .product-info .product-quantity{
    font-size: 17px;
    font-family: Raleway-SemiBold;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    color: var(--defaultBlack);
}
.product .product-info .product-quantity .input{
    display: flex;
    justify-content: space-between;
    width: 130px;
    height: 40px;
    align-items: center;
    margin-top: 4px;
    border: 1px solid #ddd;
    font-size: 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.product .product-info .product-quantity .input .num{
    margin-bottom: 2px;
    font-size: 20px;
}
.product .product-info .product-quantity .input .subt,.product .product-info .product-quantity .input .add{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding-bottom: 6px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    color: #777;
}
.product .product-info .product-quantity .input .subt:hover,.product .product-info .product-quantity .input .add:hover{
    background-color: #eee;
}
.product .product-info .product-add{
    margin-bottom: 20px;
}
.product .product-info .product-desc{
    padding-top: 20px;
    font-size: 20px;
    position: relative;
    font-family: Raleway;
}
.product .product-info .product-desc::before{
    content: 'Descrição:';
    position: absolute;
    text-transform: uppercase;
    font-family: Raleway-Bold;
    letter-spacing: 3px;
    transform: scaleY(.9);
    top: 0px;
    left: 0;
    font-size: 16px;
}
/* ------------------- */
#carrinho{
    display: flex;
    justify-content: space-between;
    margin: 3rem auto;
}
.items{
    width: calc(65% - 20px);
    border: 1px solid #ddd;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.items>.title{
    width: 100%;
    padding: 20px 24px 18px 24px;
    font-size: 20px;
    font-family: Raleway-SemiBold;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
.items .item{
    padding: 20px 24px;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.items .item .info{
    box-sizing: border-box;
    display: flex;
    width: 80%;
}
.items .item .info img{
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
}
.items .item .info .title{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    width: 65%;
}
.items .item .info .title .text{
    font-size: 20px;
    font-family: Raleway-SemiBold;
    box-sizing: border-box;
    height: 50%;
    padding: 4px 0;
}
.items .item .info .title .btns >*{
    text-decoration: none;
    color: var(--default); /* #343fdb; */
    font-family: Raleway-SemiBold;
    font-size: 15px;
    margin-right:16px;
    text-shadow: orange 0.5px 0.5px 0.5px;
    -webkit-text-stroke: 0.5px orange;
}
.items .item .info .title .btns >*:hover{
    text-decoration: underline;
}
.items .item .info .product-quantity{
    font-size: 17px;
    font-family: Raleway-SemiBold;
    text-transform: uppercase;
    display: flex;
    width: 35%;
    justify-content: space-between;
    flex-direction: column;
    color: var(--defaultBlack);
    align-items: center;
}
.items .item .info .product-quantity .desc{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
}
.items .item .info .product-quantity .input{
    display: flex;
    justify-content: space-between;
    width: 130px;
    height: 40px;
    align-items: center;
    margin-top: 4px;
    border: 1px solid #ddd;
    font-size: 24px;
    border-radius: 4px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.items .item .info .product-quantity .input .num{
    margin-bottom: 2px;
    font-size: 20px;
}
.items .item .info .product-quantity .input .subt,.items .item .info .product-quantity .input .add{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding-bottom: 6px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    color: #777;
}
.items .item .info .product-quantity .input .subt:hover,.items .item .info .product-quantity .input .add:hover{
    background-color: #eee;
}
.items .item .price{
    display: flex;
    margin-left: auto;
    font-size: 24px;
    font-family: Raleway-SemiBold;
    position: relative;
}
.items>.fare{
    width: 100%;
    padding: 20px 24px 18px 24px;
    font-size: 20px;
    font-family: Raleway-SemiBold;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.items>.fare .value{
    position: relative;
    font-size: 24px;
    font-family: Raleway-SemiBold;
}
.resume{
    width: calc(35%);
    border: 1px solid #ddd;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.resume .info{
    padding: 20px 24px;
}
.resume>.title{
    width: 100%;
    padding: 20px 24px 18px 24px;
    font-size: 20px;
    font-family: Raleway-SemiBold;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
.resume .product_total, .resume .fare_total, .resume .total_total{
    width: 100%;
    font-size: 14px;
    font-family: Raleway-Medium;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: end;
}
.resume .total_total{
    font-size: 16px;
    margin-top: 20px;
}
.resume .product_total .value, .resume .fare_total .value{
    position: relative;
    font-size: 16px;
    font-family: Raleway-SemiBold;
}
.resume .total_total .value{
    position: relative;
    font-size: 24px;
    font-family: Raleway-SemiBold;
}
.resume .btn{
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.btn.disabled{
    pointer-events: none;
    opacity: 0.5;
}

.resume .product_total .value::before, .resume .fare_total .value::before{
    content: 'R$ ';
    position: absolute;
    left: -30px;
}
.items .item .price::before, .items>.fare .value::before, .resume .total_total .value::before{
    content: 'R$ ';
    position: absolute;
    left: -40px;
}
@media (max-width:1090px) {
    .logo-flutuante{
        margin-left: 1rem;
    }
    .logo-flutuante.active{ 
        margin-top: 1rem;
    }
    .carrinho-flutuante{
        margin-bottom: 1.2rem;
        margin-right: 1.2rem;
    }
    /* ------------------- */
    #header .header-logo>img{
        max-height: 60%;
        margin:0 0 0 20px;
    }
    #header .list{
        display: none;
    }
    /* ------------------- */
    .menu-change{
        width: var(--headerHeight);
        height: var(--headerHeight) !important;
        display: flex;
        align-items: center;
        justify-content: end;
        color: var(--default);
        border-radius: 3px;
        padding-right: 10px;
        box-sizing: border-box;
        cursor: pointer;
        padding: 10px 10px 10px 0;
    }
    .menu-change font{
        width: calc(var(--headerHeight) - 20px);
        height: calc(var(--headerHeight) - 20px);
        background-color: #ffffff22;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        font-size: 40px;
        font-weight: 600;
    }
    .menu-change:hover font{
        background-color: #ffffff33;
    }
    .menu-change font:active{
        background-color: #ffffff11;
    }
    .menu .menu-change{
        width: 100%;
        margin: 0 auto;
    }
    .menu{
        display: flex;
        flex-direction: column;
        width: var(--headerMenuWidth);
        max-width: 90%;
        height: 100%;
        justify-content: start;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 12;
        background-color: #242424;
        transition: .2s;
        overflow-y: scroll;
    }
    .menu .menu-list-topic{
        display: flex;
        flex-direction: column;
        padding: 6px 0;
        background-color: #00000022;
        width: calc(100% - 10px);
        margin: 2px auto;
        border-radius: 10px;
        box-shadow: 0px 0px 0px 3px inset #ffffff11;
        transition: .3s;
        height: var(--elemHeight) !important;
        min-height: var(--elemHeight) !important;
    }
    .menu .menu-list-topic.hiddenControl{
        overflow: hidden;
    }
    .menu .menu-list-topic.close{
        height: 0px !important;
        min-height: 0px !important;
        padding: 0px;
    }
    .menu .menu-list-topic-item{
        display: flex;
        flex-direction: column;
        font-size: 18px;
        font-family: Raleway-Medium;
    }
    .list .menu-list-topic-item .menu-list-home-hook{
        display: flex;
    }
    .menu .menu-list-topic-item>*{
        text-transform:capitalize;
        color: var(--headerColor);
        text-decoration: none;
        width: calc(100% - 12px);
        margin: 0 auto;
        display: flex;
        font-family: Raleway;
        font-weight: 400 !important;
        font-size: 14px;
        justify-content: center;
        padding: 6px 0;
        position: relative;
        border-radius: 6px;
        cursor: pointer;
    }
    .menu .menu-list-topic-item>*:hover{
        background-color: #ffffff11;
    }
    .menu .menu-list-topic-item>*:not(.last-child)::before{
        content: '';
        position: absolute;
        bottom: -1px;
        height: 2px;
        background-color: #ffffff11;
        width: 24px;
        margin: 0 auto;
        border-radius: 20px;
    }
    .menu.close{
        transform:translateX(var(--headerMenuWidth));
    }
    .menu-item{
        padding: 10px 0 !important;
        padding: 0;
        height: 14px;
        font-size: 16px;
        letter-spacing: 1px;
        width: calc(100% - 10px);
        margin: 6px auto;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
    }
    .menu-item::after{
        content: '';
        position: absolute;
        top: -9px;
        height: 2px;
        background-color: #ffffff11;
        width: 80%;
        margin: 0 auto;
        border-radius: 20px;
    }
    /* footer */
    #footer{
        padding: 20px 0;
        background: var(--defaultBlack);
        color: var(--footerColor);
        width: 100%;
        margin-top: 180px;
    }
    #footer .container{
        justify-content: start;
        flex-direction: column;
        padding: 0;
    }
    #footer .footer-logo{
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        width: 90%;
        height: 80px;
        margin: 0 auto 10px auto;
    }
    #footer .footer-logo>img{
        max-width: 66%;
        max-height: 100%;        
    }
    #footer .footer-item{
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    #footer .footer-item > [class^="footer-item-"]{
        font-size: 10px;
        margin: 2px 0;
    }
    #footer .footer-item .footer-item-title{
        font-size: 12px;
        margin-top: 10px;
        font-weight: 600;
    }
    /* ------------------- */
    .topic-image{
        max-width: 100%;
    }
    /* ------------------- */
    .banner.b01{
        height: 300px;
    }
    .banner.b01 .topic{
        width: 88%;
    }
    .banner.b01 .topic .title, .banner.b01 .topic .desc, .banner.b01 .topic .sub-desc{
        width: 100%;
    }
    .banner.b01 .topic .title{
        font-size: 40px;
    }
    .banner.b01 .topic .desc{
        font-size: 28px;
    }
    .banner.b01 .topic .sub-desc{
        font-size: 16px;
    }
    /* ------------------- */
    .banner.b03 .card{
        width: 100%;
    }
    /* ------------------- */
    #eficazContra .topic .title{
        padding-bottom: 40px;
        font-size: 30px;
    }
    #eficazContra .topic .cards .card{
        width: 90px;
    }
    #eficazContra .topic .cards .card .desc{
        font-size: 14px;
    }
    /* ------------------- */
    #first-ever-registered_info .topic .cards .card{
        width: 86%;
        text-align: center;
    }
    #first-ever-registered_info .topic .cards .card .icon{
        width: 29%;
    }
    /* ------------------- */
    #saudeGlobal .topic{
        padding: 30px 0 50px 0;
    }
    #saudeGlobal .topic .img{
        display: none;
    }
    #saudeGlobal .topic .info{
        width: 100%;
    }
    #saudeGlobal .topic .info .title{
        font-size: 40px;
    }
    #saudeGlobal .topic .info .desc{
        font-size: 18px;
    }
    /* ------------------- */
    #tecnologia .topic .title{
        padding-bottom: 20px;
        margin-top: -20px;
    }
    #tecnologia .topic .cards{
        flex-direction: column;
    }
    #tecnologia .topic .cards .card{
        width: 100%;
        height: 160px;
    }
    #tecnologia .topic .cards .card .img{
        width: 100%;
        height: 140px;
    }
    #tecnologia .topic .cards .card .title{
        font-size: 18px;
        text-align: center;
        padding-bottom: 4px;
    }
    #tecnologia .topic .cards .card .desc{
        font-size: 15px;
        width: 90%;
        text-align: center;
    }
    /* ------------------- */
    #diferentesSetores .topic .title{
        margin-top: -20px;
        padding-bottom: 40px;
        text-align: center;
        font-size: 24px;
    }
    #diferentesSetores .topic .cards .card{
        width: 100%;
        height: 300px;
        flex-direction: column;
    }
    #diferentesSetores .topic .cards .card .img{
        width: 100%;
        height: 100px;
        aspect-ratio: none;
    }
    #diferentesSetores .topic .cards .card .desc{
        height: 200px;
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
    /* ------------------- */
    #comprarAgora .topic .title{
        width: 100%;
        display: flex;
        justify-content: center;
        color: var(--defaultBlack);
        padding-bottom: 40px;
        font-size: 20px;
        font-family: Raleway-Black;
        text-align: center;
        margin-top: -50px;
    }
    #comprarAgora .topic .btn{
        font-size: 18px;
        margin: 0 auto;
    }
    /* ------------------- */
    #ondePodeSerAplicado{
        background-color:var(--defaultWhite);
    }
    #ondePodeSerAplicado .topic .title{
        font-size: 24px;
        padding-bottom: 40px;
    }
    #ondePodeSerAplicado .topic .cards{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #ondePodeSerAplicado .topic .cards .card{
        width: 40%;
        margin: 0 6px;
        margin-bottom: 30px;
    }
    #ondePodeSerAplicado .topic .cards .card .img{
        width: 90%;
        margin-bottom: 10px;
    }
    #ondePodeSerAplicado .topic .cards .card .desc{
        font-size: 13px;
        width: 100%;
    }
    /* ------------------- */
    #aprovadoPeloMundo{
        background-color:var(--defaultWhite);
        margin-top: -70px;
    }
    #aprovadoPeloMundo .container{
        display:flex;
        flex-direction: column;
        margin-bottom: 40px;
        align-items: center;
    }
    #aprovadoPeloMundo .topic{
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-bottom: -40px;
    }
    #aprovadoPeloMundo .topic .title{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 24px;
    }
    #aprovadoPeloMundo .topic .cards{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #aprovadoPeloMundo .topic .cards img{
        width: 30%;
        height: 80px;
        object-fit: contain;
        margin: 10px 2px;
    }
    /* ------------------- */
    #tecnologia_insetosQueRepelimos .topic{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    #tecnologia_insetosQueRepelimos .topic .img{
        display: none;
    }
    #tecnologia_insetosQueRepelimos .topic .info{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    /* ------------------- */
    #tecnologia_info .topic .cards{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    #tecnologia_info .topic .cards .card{
        width: 100%;
    }
    #tecnologia_info .topic .cards .card .title{
        text-align: center;
    }
    #tecnologia_info .topic .cards .card .btn{
        margin-bottom: 20px;
    }
    /* ------------------- */
    #insetos-que-repelimos_insetos-que-repelimos{
        background: var(--defaultWhite);
    }
    #insetos-que-repelimos_insetos-que-repelimos .topic .title{
        font-size: 32px;
        text-align: center;
        margin-top: -40px;
    }
    #insetos-que-repelimos_insetos-que-repelimos .topic .desc{
        width: 100%;
        font-size: 18px;
    }
    /* ------------------- */
    #insetos-que-repelimos_info .topic .cards .card{
        width: 86%;
    }
    /* ------------------- */
    #doencas-transmitidas-por-insetos_doencas-transmitidas-por-insetos{
        background: var(--defaultWhite);
    }
    #doencas-transmitidas-por-insetos_doencas-transmitidas-por-insetos .topic .title{
        font-size: 32px;
        text-align: center;
        margin-top: -40px;
    }
    #doencas-transmitidas-por-insetos_doencas-transmitidas-por-insetos .topic .desc{
        width: 100%;
        font-size: 18px;
    }
    /* ------------------- */
    #doencas-transmitidas-por-insetos_info .topic .cards .card{
        width: 86%;
    }
    #doencas-transmitidas-por-insetos_info .topic .cards .card .title{
        font-size: 22px;
        text-align: center;
    }
    /* ------------------- */
    .product{
        display: flex;
        justify-content: center;
        height: auto;
        width: 100%;
        margin: auto;
        padding: 20px 0;
        color: var(--defaultBlack);

        flex-direction: column;
    }
    .product .product-image{
        width: 100%;
        display: flex;
        align-items: center;
        height: fit-content;
        padding: 0 0 20px 0;
    }
    .product .product-image img{
        max-width: 100%;
        height: auto;
    }
    .product .product-info{
        width: 100%;
    }
    .product .product-info .product-add .btn{
        margin: auto;
        width: 100%;
        display: flex;
        box-sizing: border-box;
        justify-content: center;
    }
    /* ------------------- */
    #carrinho{
        flex-direction: column;
    }
    .items{
        width: 100%;
        margin-bottom: 20px;
    }
    .items .item{
        flex-wrap: wrap;
    }
    .items .item .info{
        width: 100%;
        flex-wrap: wrap;
        justify-content: end;
    }
    .items .item .info .title{
        width: calc(100% - 100px);
        margin-right: 0px;
    }
    .items .item .info .title .text{
        height: fit-content;
    }
    .items .item .info .title .btns{
        margin-top: 6px;
        display: flex;
        justify-content: space-between;
    }
    .items .item .info .title .btns>*{
        margin-left: 0;
    }
    .items .item .info .product-quantity{
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        width: 100%;
    }
    .items .item .info .product-quantity .input{
        margin-right: 20px;
    }
    .items .item .price{
        margin-top: 10px;
        margin-left: 40px;
    }
    .resume{
        width: 100%;
        margin-bottom: 20px;
    }
}

.card, .card .title, .card .desc, 
.topic .topic-title, .topic .topic-sub-title, .topic .topic-desc {
    text-align:center;
}

.topic .topic-image {
    text-align:center;
    margin:auto;
}

.topic em {
    display:block;
    text-align:center;
}