@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}
@font-face {
    font-family: "FinalSix";
    src: url("../fonts/FinalSix_Black.otf");
}
:root{
    --pink: rgb(247, 85, 93);
    --darkpink: rgb(255, 68, 91);
    --borda: rgba(30, 31, 36, 0.2);
    --gray: rgb(122, 122, 122);
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0px;
    width: 100%;
    background-color: rgb(248, 249, 252);
    font-family: "Montserrat", sans-serif;
}
body::-webkit-scrollbar{
    width: 8px;
}
body::-webkit-scrollbar-track{
    background-color: transparent;
}
body::-webkit-scrollbar-thumb{
    background-color: var(--pink);
}
.navbar{
    min-width: 100%;
    height: 90px;
    background-color: white;
    box-shadow: 0px 2px 20px 8px rgb(240, 240, 240);
    overflow: hidden;
    transition: all 0.4s;
}
.contentNav{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.linksH{
    display: flex;
    align-items: center;
}
.link{
    margin-right: 28px;
    position: relative;
}
.link a{
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.link::before{
    content: '';
    position: absolute;
    top: 24px;
    right: 0px;
    width: 0%;
    height: 2px;
    border-radius: 12px;
    background-color: var(--pink);
    transition: width 0.3s;
}
.link:hover::before{
    width: 100%;
    left: 0px;
}
.selected a{
    color: var(--pink);
}
.selected::before{
    width: 100%;
}
.btnLogin{
    margin-left: 36px;
}
.btnLogin a{
    text-decoration: none;
    color: white;
}
.btnLogin button{
    height: 40px;
    background-color: var(--pink);
    padding: 0px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnLogin button:hover{
    filter: brightness(120%);
}
.btnLogin img{
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 8px;
}
.btnOscar{
    margin-left: 12px;
}
.btnOscar a{
    text-decoration: none;
    color: black !important;
}
.btnOscar button{
    height: 40px;
    background-color: transparent;
    padding: 0px 16px 0px 16px;
    font-size: 18px;
    border: 1px solid black;
    color: black !important;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnOscar button:hover{
    background-color: black;
    color: white !important;
}
.btnMobile{
    margin-left: 86px;
    font-size: 64px;
    display: none;
}
.btnMobile span{
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    width: 64px;
    height: 10px;
    background-color: var(--pink);
    border-radius: 16px;
}
.menuNav{
    width: 100%;
    height: 430px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.secao{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(248, 249, 252);
}
.topSection{
    width: 100%;
    height: 680px;
    background-image: url("../img/index/banner.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}
.leftContentTop{
    margin-top: 68px;
}
.logo img{
    width: 330px;
    height: 200px;
    object-fit: contain;
}
.textTop{
    margin-top: 20px;
    width: 380px;
    color: white;
    font-size: 24px;
}
.btnSubscribe{
    margin-top: 22px;
}
.btnSubscribe a{
    text-decoration: none;
}
.btnSubscribe button{
    width: 360px;
    height: 38px;
    background-color: var(--darkpink);
    color: white;
    font-size: 20px;
    font-weight: 600;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}
.rightContentTop img{
    width: 620px;
    object-fit: contain;
}
.contentWork{
    width: 70%;
    border: 1px solid var(--pink);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    margin-top: -178px;
    margin-bottom: 48px;
    padding-bottom: 38px;
    z-index: 10;
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
}
.titleWork{
    margin-top: 102px;
    font-size: 38px;
    font-weight: 600;
    color: #e63f59;
}
.rowWork{
    width: 95%;
    margin-top: 58px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.colWork{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 62px;
    width: 80%;
}
.lineRight{
    display: block;
    position: absolute;
    top: calc(50% + 44px);
    height: 76px;
    width: 1px;
    left: 39px;
    border-right: 2px dotted var(--borda);
}
.lineLeft{
    display: block;
    position: absolute;
    bottom: calc(50% + 41px);
    height: 34px;
    width: 1px;
    left: 39px;
    border-right: 2px dotted var(--borda);
}
.imgColWork{
    min-width: 78px;
    min-height: 78px;
    border-radius: 20px;
    border: 2px dotted var(--borda);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgColWork img{
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.textsColWork{
    margin-left: 20px;
}
.titleColWork{
    font-size: 18px;
    font-weight: 600;
}
.textColWork{
    color: var(--gray);
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
}
.listWork{
    padding-left: 20px;
    margin-top: 8px;
    color: var(--gray);
    font-size: 15px;
}
.titleEvolution{
    margin-top: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #e63f59;
}
.workBig .lineLeft{
    height: 118px;
}
.workBig .lineRight{
    height: 146px;
}

.titleTeam{
    font-size: 28px;
    font-weight: 600;
    color: #f43c5b;
}
.containerTeam{
    width: 60%;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leftArrow img, .rightArrow img{
    width: 64px;
    height: 64px;
    object-fit: contain;
    cursor: pointer;
}
.leftArrow{
    margin-right: 38px;
}
.rightArrow{
    margin-left: 38px;
}
.contentTeam{
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow-x: hidden;
    overflow-y: hidden;
}
.colTeam{
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s;
}
.imgColTeam img{
    width: 240px;
    height: 300px;
    object-fit: cover;
    background-color: white;
    box-shadow: 4px 4px 12px 2px rgb(201, 201, 201);
    border-radius: 16px;
}
.loginTeam{
    margin-top: 28px;
    font-size: 16px;
    font-weight: 600;
}
.descTeam{
    margin-top: 20px;
    text-align: center;
    color: rgb(104, 105, 105);
}

.titlePage{
    position: relative;
    width: 100%;
    height: 210px;
    background: url("../img/title.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 20;
}
.titlePage::after{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.containerIndicators{
    width: 70%;
    height: 560px;
    background-color: #a42d43;
    border-top-left-radius: 78px;
    border-bottom-right-radius: 78px;
    display: flex;
    align-items: center;
}
.contentIndicators{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.indicator{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 22px;
    margin-right: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.iconIndicator{
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iconIndicator img{
    width: 50%;
    height: 50%;
    object-fit: contain;
}
.titleIndicator{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #f3d370;
    width: 180px;
}
.textIndicator{
    margin-top: 10px;
    width: 220px;
    color: white;
    text-align: center;
}
.imgIndicators{
    margin-bottom: 22px;
    margin-left: -62px;
}
.imgIndicators img{
    position: relative;
    right: -68px;
}
.marginBot{
    margin-bottom: 86px;
}
.sectionItems{
    height: 780px;
    z-index: 20;
}

.contentMoney{
    width: 70%;
    margin-top: 98px;
    margin-bottom: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.textMoney{
    margin-top: 48px;
    text-align: center;
    width: 480px;
}
.rowMoney{
    width: 90%;
    margin-top: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgMoney img{
    width: 318px;
    height: 318px;
    object-fit: contain;
}
.itemsMoney{
    margin-left: 58px;
}
.itemMoney{
    display: flex;
    align-items: center;
}
.numberItemMoney{
    font-size: 78px;
    color: #fa6663;
    font-weight: 600;
    width: 60px;
}
.textsItemMoney{
    margin-left: 20px;
}
.titleItemMoney{
    color: #494949;
    font-size: 18px;
    font-weight: 600;
}
.textItemMoney{
    color: #494949;
    margin-top: 4px;
}

.bgOrange{
    background-image: url("../img/bg_create.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.contentCreate{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 28px;
    margin-top: 68px;
}
.titleCreate{
    font-size: 72px;
    font-weight: 600;
    color: white;
    font-family: "FinalSix";
}
.textCreate{
    margin-top: 4px;
    color: white;
}
.leftCreate{
    width: 680px;
}
.itemsCreate{
    margin-top: 48px;
}
.itemCreate{
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
}
.plusItemCreate{
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
    color: #f8e4a5;
}
.textsItemCreate{
    margin-left: 18px;
    margin-top: 10px;
}
.titleItemCreate{
    color: #f8e4a5;
    font-weight: 600;
    font-size: 16px;
}
.textItemCreate{
    margin-top: 4px;
    font-size: 14px;
    color: white;
}
.rightCreate{
    margin-left: 28px;
    height: 100%;
}
.rightCreate img{
    width: 380px;
    height: 680px;
    object-fit: contain;
    position: relative;
    top: -118px;
}
.marginBottom{
    margin-bottom: 108px;
}

.contentBrands{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 128px;
}
.contentBrands:last-child{
    margin-bottom: 148px;
}
.rowBrands{
    margin-top: 68px;
    display: flex;
    justify-content: center;
}
.colBrand{
    width: 280px;
    margin-left: 52px;
    margin-right: 52px;
    text-align: center;
}
.imgBrand img{
    width: 280px;
    height: 128px;
    object-fit: contain;
}
.textBrand{
    margin-top: 28px;
}

.smallBrand{
    width: 140px;
    margin-left: 16px;
    margin-right: 16px;
}
.smallBrand .imgBrand img{
    width: 140px;
    height: 90px;
}

.bgHaus{
    background-image: url("../img/index/bg_haus.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 98px;
}
.rowInfo{
    height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leftInfo{
    margin-right: 20px;
}
.leftInfo img{
    width: 450px;
    height: 830px;
    object-fit: contain;
}
.rightInfo{
    margin-left: 20px;
}
.titleRightInfo{
    font-size: 26px;
    color: white;
    font-weight: 600;
}
.textRightInfo{
    margin-top: 12px;
    color: white;
    width: 490px;
}
.contentInfo{
    margin-top: 20px;
    width: 450px;
    padding: 30px;
    border: 2px solid #f3d370;
    border-radius: 16px;
}
.titleContentInfo{
    font-size: 20px;
    font-weight: 600;
    color: white;
}
.textContentInfo{
    margin-top: 12px;
    color: white;
}
.itemsInfo{
    padding: 0px;
    padding-left: 20px;
    color: white;
}


.titleSection{
    padding-top: 48px;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 28px;
}
.bgNote{
    background-image: url("../img/bg_note.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 1060px;
    box-sizing: border-box;
    padding-top: 98px;
}
.bgNote .titleSection{
    color: white;
}
.textSection{
    color: white;
    width: 480px;
    text-align: center;
    margin-top: 20px;
}
.contentNote{
    position: absolute;
    bottom: 0px;
    left: 0%;
    z-index: 20;
}
.imgNote{
    pointer-events: none;
}
.contentVideos{
    position: absolute;
    top: 14px;
    left: 407px;
    border-top-left-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: -1;
}
.video{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.imgPlay{
    position: absolute;
    z-index: 10;
}
.imgPlay img{
    width: 150px;
    height: 150px;
    filter: invert(100%);
    object-fit: contain;
}
.video video{
    width: 416px;
    height: 540px;
    object-fit: cover;
}
.star{
    position: absolute;
}
.star img{
    width: 82px;
    height: 82px;
    object-fit: contain;
}
.star1{
    top: 120px;
    left: 20%;
}
.star2{
    left: 75%;
    top: 210px;
}
.contentCellphone{
    display: none;
}


.contentQuestions{
    margin-top: 20px;
    width: 70%;
}
.contentQuestion{
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
    border: 1px solid var(--pink);
    border-radius: 8px;
    max-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s;
}
.question{
    width: 95%;
    min-height: 68px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.textQuestion{
    font-weight: 600;
}
.arrowQuestion{
    margin-left: auto;
}
.arrowQuestion img{
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: all 0.4s;
}
.collapsed{
    max-height: 2000px;
}
.collapsed .arrowQuestion img{
    transform: rotate(180deg);
}
.answer{
    width: 95%;
    color: var(--gray);
    margin-bottom: 18px;
}
.answer pre{
    font-family: "Montserrat";
    width: 100%;
    text-wrap: wrap;
}
.btnMoreQuestions{
    margin-top: 20px;
    margin-bottom: 148px;
}
.btnMoreQuestions button{
    background-color: transparent;
    border: 1px solid var(--pink);
    border-radius: 20px;
    color: var(--pink);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 16px 8px 16px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnMoreQuestions button:hover{
    background-color: var(--pink);
    color: white;
}

.bgGray{
    height: 340px;
    background-image: url("../img/index/bg_cinza.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contentContact{
    width: 70%;
    height: 240px;
    position: absolute;
    background-image: url("../img/index/forms.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    top: -210px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form{
    width: 90%;
}
.titleForm{
    font-size: 24px;
    font-weight: 600;
    color: white;
}
.rowInputForm{
    margin-top: 8px;
    width: 65%;
    display: flex;
    align-items: center;
}
.innerRowInputForm{
    width: 100%;
    display: flex;
}
.inputForm{
    width: 100%;
}
.rowInputForm .inputForm:first-child{
    margin-right: 12px;
}
.rowInputForm .inputForm:last-child{
    margin-left: 12px;
}
.inputForm input{
    width: 100%;
    height: 30px;
    border: 0px;
    border-radius: 5px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}
.inputForm input:focus{
    outline: none;
}
.textAreaForm{
    margin-top: 8px;
    width: 65%;
}
.textAreaForm textarea{
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: 0px;
    resize: none;
    padding: 12px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
.textAreaForm textarea:focus{
    outline: none;
}
.btnSend{
    text-align: right;
    width: 65%;
    margin-top: 12px;
}
.btnSend button{
    width: 64px;
    height: 28px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnSend button:hover{
    background-color: white;
    color: black;
}
.contentStart{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}
.titleStart{
    font-size: 28px;
    font-weight: 600;
    color: white;
}
.textStart{
    margin-top: 16px;
    color: white;
    width: 40%;
    text-align: center;
}
.btnStart{
    margin-top: 20px;
}
.btnStart button{
    width: 140px;
    height: 38px;
    background-color: transparent;
    border: 1px solid var(--darkpink);
    border-radius: 5px;
    color: var(--darkpink);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
}
.btnStart button:hover{
    background-color: var(--darkpink);
    color: black;
}

.contentWorkMobile{
    margin-top: -98px;
    margin-bottom: 64px;
    width: 90%;
    height: 1480px;
    border: 2px solid var(--pink);
    border-radius: 48px;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
}
.rowWorkMobile{
    margin-top: 108px;
    width: 90%;
    height: 1120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.containerWorkMobile{
    position: relative;
    width: 70%;
    height: 1220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.colWorkMobile{
    width: 100%;
    min-height: 780px;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.rowFooter{
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    justify-content: center;
    width: 90%;
}
.colFooter{
    margin-left: auto;
    margin-right: auto;
}
.logoFooter img{
    width: 126px;
    height: 64px;
    object-fit: contain;
}
.textAboutFooter{
    margin-top: 28px;
    width: 260px;
    color: var(--gray);
    font-size: 16px;
}
.rowLinks{
    display: flex;
    justify-content: center;
}
.colLinks{
    margin-left: 28px;
    margin-right: 28px;
    width: 176px;
}
.titleLink{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    position: relative;
}
.titleLink::after{
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: '';
    width: 32px;
    height: 3px;
    background-color: var(--pink);
}
.linkFooter{
    margin-top: 18px;
    margin-bottom: 24px;
}
.linkFooter a{
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s;
}
.linkFooter a:hover{
    margin-left: 12px;
    color: var(--pink);
}
.rowContact{
    margin-top: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.iconContact img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.textContact{
    margin-left: 12px;
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}
.iconLink{
    margin-right: 22px;
}
.iconLink img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0%) invert(49%) sepia(0%) saturate(2%) hue-rotate(25deg) brightness(97%) contrast(93%);
    transition: all 0.4s;
}
.iconLink:hover img{
    filter: none;
}
.copyright{
    width: 90%;
    color: var(--gray);
    font-size: 16px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    padding-top: 26px;
    padding-bottom: 26px;
    font-weight: 500;
}
.copyright a{
    color: var(--pink);
    text-decoration: none;
}


@media screen and (max-width: 980px){
    .navbar{
        height: 140px;
    }
    .contentNav{
        height: 140px;
        justify-content: center;
    }
    .nav{
        display: none;
    }
    .linksH{
        margin-left: 0px;
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
    }
    .link{
        margin-right: 38px;
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .link a{
        font-size: 32px;
    }
    .link::before{
        top: 36px;
    }
    .btnLogin{
        margin-right: 86px;
        margin-left: auto;
    }
    .btnLogin button{
        height: 48px;
        font-size: 26px;
    }
    .btnLogin img{
        width: 24px;
        height: 24px;
        margin-right: 14px;
    }
    .btnMobile{
        display: block;
    }
    .btnOscar{
        margin-right: 86px;
    }
    .btnOscar button{
        height: 48px;
        font-size: 26px;
        border: 2px solid black;
    }

    .topSection{
        background-image: url("../img/index/banner.png");
        background-position: top;
        height: 2040px;
        flex-direction: column;
    }
    .leftContentTop{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .logo img{
        width: 680px;
        height: 480px;
    }
    .textTop{
        width: 760px;
        font-size: 58px;
        text-align: center;
        margin-bottom: 32px;
    }
    .btnSubscribe{
        margin-top: 88px;
        position: absolute;
        bottom: -820px;
    }
    .btnSubscribe button{
        width: 660px;
        height: 72px;
        font-size: 38px;
    }
    .rightContentTop{
        width: 100%;
        margin-top: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        mask-image: linear-gradient(to top, transparent 0%, black 60%, black 100%);
    }
    .rightContentTop img{
        width: 760px;
    }
    .contentWork{
        display: none;
    }
    .contentWorkMobile{
        margin-top: 98px;
        display: flex;
    }
    .titleWork{
        margin-top: 58px;
        font-size: 56px;
    }
    .imgColWork{
        width: 180px;
        height: 180px;
        border: 7px dotted var(--borda);
        border-radius: 40px;
    }
    .imgColWork img{
        width: 78px;
        height: 78px;
    }
    .titleColWork{
        margin-top: 36px;
        font-size: 42px;
        text-align: center;
    }
    .textColWork{
        margin-top: 28px;
        font-size: 38px;
        width: 85%;
        text-align: center;
    }
    .contentWorkMobile .leftArrow img, .contentWorkMobile .rightArrow img{
        width: 60px;
        height: 60px;
    }
    .listWork{
        font-size: 38px;
    }
    .listWork li{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .titleEvolution{
        font-size: 42px;
        text-align: center;
    }

    .titleTeam{
        font-size: 46px;
    }
    .containerTeam{
        width: 80%;
        margin-top: 68px;
    }
    .leftArrow img, .rightArrow img{
        width: 100px;
        height: 100px;
    }
    .contentTeam{
        min-height: 720px;
    }
    .imgColTeam img{
        width: 300px;
        height: 375px;
    }
    .loginTeam{
        font-size: 30px;
    }
    .descTeam{
        font-size: 24px;
    }

    .sectionItems{
        height: 1020px;
    }
    .containerIndicators{
        width: 85%;
        min-height: 2180px;
    }
    .contentIndicators{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .indicator{
        margin: 0px;
        margin-bottom: 28px;
        margin-top: 28px;
    }
    .iconIndicator{
        width: 110px;
        height: 110px;
    }
    .titleIndicator{
        width: 560px;
        font-size: 44px;
        margin-top: 16px;
    }
    .textIndicator{
        width: 680px;
        font-size: 32px;
    }
    .imgIndicators{
        display: none;
    }

    .contentMoney{
        width: 85%;
    }
    .textMoney{
        font-size: 30px;
        width: 780px;
    }
    .rowMoney{
        flex-direction: column-reverse;
    }
    .imgMoney img{
        width: 560px;
        height: 560px;
    }
    .itemsMoney{
        margin: 0px;
        margin-bottom: 68px;
    }
    .numberItemMoney{
        min-width: 98px;
        font-size: 128px;
    }
    .titleItemMoney{
        font-size: 32px;
    }
    .textItemMoney{
        font-size: 28px;
    }

    .leftCreate{
        width: 85%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .titleCreate{
        font-size: 102px;
    }
    .textCreate{
        font-size: 28px;
        text-align: center;
    }
    .itemsCreate{
        margin-top: 78px;
    }
    .plusItemCreate{
        font-size: 60px;
    }
    .titleItemCreate{
        font-size: 32px;
    }
    .textItemCreate{
        font-size: 28px;
    }
    .rightCreate{
        display: none;
    }
    .bgOrange .btnSubscribe{
        position: static;
    }

    .rowBrands{
        width: 85%;
        flex-wrap: wrap;
    }
    .colBrand{
        margin-top: 42px;
        margin-bottom: 42px;
        width: 420px;
    }
    .imgBrand img{
        width: 420px;
        height: 192px;
    }
    .textBrand{
        font-size: 28px;
    }
    .smallBrand{
        width: 210px;
    }
    .smallBrand .imgBrand img{
        width: 210px;
        height: 135px;
    }

    .bgHaus{
        padding-top: 148px;
    }
    .rowInfo{
        flex-direction: column-reverse;
        height: auto;
    }
    .leftInfo{
        margin: 0px;
    }
    .rightInfo{
        margin: 0px;
        margin-bottom: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .titleRightInfo{
        font-size: 44px;
        width: 70%;
        text-align: center;
    }
    .textRightInfo{
        margin-top: 32px;
        font-size: 30px;
        text-align: center;
    }
    .contentInfo{
        width: 560px;
        border-width: 4px;
        border-radius: 28px;
        margin-top: 68px;
    }
    .titleContentInfo{
        font-size: 32px;
        text-align: center;
    }
    .textContentInfo{
        margin-top: 28px;
        font-size: 26px;
        text-align: center;
    }
    .itemsInfo{
        font-size: 26px;
        text-align: center;
    }
    .itemsInfo li{
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .bgNote{
        background-image: url("../img/index/mobile/cellphone.png");
        height: 1780px;
        padding-top: 28px;
        background-size: cover;
    }
    .titleSection{
        font-size: 42px;
    }
    .textSection{
        font-size: 28px;
    }
    .textPhone{
        display: none;
    }
    .contentNote{
        display: none;
    }
    .contentCellphone{
        margin-top: 58px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
    }
    .topCellphone{
        position: absolute;
        top: 75px;
        left: -132px;
        z-index: 20;
    }
    .topCellphone img{
        width: 298px;
        object-fit: contain;
    }
    .bottomCellphone{
        position: absolute;
        top: 1224px;
        left: -110px;
        z-index: 20;
    }
    .bottomCellphone img{
        width: 260px;
    }
    .contentVideos{
        flex-direction: column;
        left: -264px;
        top: 76px;
        border-radius: 58px;
    }
    .video video{
        width: 556px;
        height: 586px;
    }
    .star{
        z-index: 30;
    }
    .star img{
        width: 120px;
        height: 120px;
    }
    .star1{
        top: 410px;
        left: 15%;
    }
    .star2{
        top: 780px;
        left: 75%;
    }


    .contentQuestions{
        width: 90%;
        margin-top: 48px;
    }
    .contentQuestion{
        margin-top: 24px;
        margin-bottom: 24px;
        border: 2px solid var(--pink);
        max-height: 124px;
    }
    .question{
        min-height: 124px;
    }
    .textQuestion{
        font-size: 28px;
    }
    .arrowQuestion img{
        width: 48px;
        height: 48px;
    }
    .collapsed{
        max-height: 3000px;
    }
    .answer{
        font-size: 26px;
        margin-top: 20px;
    }
    .btnMoreQuestions{
        margin-bottom: 160px;
    }
    .btnMoreQuestions button{
        font-size: 30px;
        padding: 12px 20px 12px 20px;
        border-radius: 38px;
    }

    .bgGray{
        height: 560px;
    }
    .contentContact{
        width: 90%;
        height: 540px;
        top: -420px;
        background-image: url("../img/index/mobile/forms.png");
    }
    .form{
        width: 90%;
    }
    .titleForm{
        font-size: 42px;
    }
    .rowInputForm{
        width: 100%;
        flex-wrap: wrap;
        margin-top: 26px;
    }
    .inputForm{
        max-width: 49%;
        box-sizing: border-box;
    }
    .rowInputForm .inputForm:first-child{
        margin-right: 12px;
        margin-left: 0px;
    }
    .rowInputForm .inputForm:last-child{
        max-width: 100%;
        margin: 0px;
        margin-top: 26px;
    }
    .inputForm input{
        height: 52px;
        font-size: 28px;
    }
    .textAreaForm{
        width: 100%;
        margin-top: 26px;
    }
    .textAreaForm textarea{
        height: 140px;
        font-size: 28px;
    }
    .btnSend{
        width: 100%;
        text-align: center;
        margin-top: 28px;
    }
    .btnSend button{
        width: 130px;
        height: 40px;
        background-color: var(--pink);
        color: white;
        font-size: 26px;
    }
    .btnSend button:hover{
        background-color: var(--pink);
        color: white;
    }

    .titleStart{
        font-size: 50px;
    }
    .textStart{
        width: 80%;
        font-size: 28px;
    }
    .btnStart{
        margin-top: 38px;
    }
    .btnStart button{
        width: 240px;
        height: 58px;
        font-size: 24px;
        border-radius: 8px;
    }

    .rowFooter{
        flex-direction: column;
    }
    .colFooter{
        margin-bottom: 54px;
        margin: 0px;
        margin-left: 20px;
    }
    .logoFooter img{
        width: 160px;
        height: 86px;
    }
    .textAboutFooter{
        font-size: 26px;
        width: 760px;
    }
    .rowLinks{
        margin-top: 28px;
    }
    .colLinks{
        margin: 0px;
        margin-top: 38px;
        width: 280px;
    }
    .titleLink{
        margin-top: 32px;
        font-size: 28px;
    }
    .titleLink::after{
        width: 48px;
    }
    .linkFooter{
        font-size: 26px;
    }
    .rowContact{
        margin-top: 38px;
    }
    .iconContact img{
        width: 40px;
        height: 40px;
    }
    .textContact{
        font-size: 26px;
    }
    .iconLink img{
        width: 32px;
        height: 32px;
    }
    .copyright{
        font-size: 24px;
    }

    .titlePage{
        font-size: 46px;
    }
}