@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}
: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;
    color: black !important;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnOscar button:hover{
    background-color: black;
    color: white;
}
.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_paqueta.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}
.leftContentTop{
    width: 65%;
    margin-top: 68px;
}
.logo img{
    width: 330px;
    height: 200px;
    object-fit: contain;
}
.textTop{
    margin-top: 20px;
    width: 290px;
    color: white;
    font-size: 24px;
}
.btnSubscribe{
    margin-top: 22px;
}
.btnSubscribe a{
    text-decoration: none;
}
.btnSubscribe button{
    width: 190px;
    height: 30px;
    background-color: var(--darkpink);
    color: white;
    font-size: 20px;
    font-weight: 600;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}
.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;
}
.titleWork{
    margin-top: 32px;
    font-size: 28px;
    font-weight: 600;
}
.rowWork{
    margin-top: 58px;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}
.colWork{
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.lineRight{
    display: block;
    position: absolute;
    top: 32px;
    right: 0px;
    width: 60px;
    border-top: 2px dotted var(--borda);
}
.lineLeft{
    display: block;
    position: absolute;
    top: 32px;
    left: 0px;
    width: 60px;
    border-top: 2px dotted var(--borda);
}
.imgColWork{
    width: 58px;
    height: 58px;
    border-radius: 20px;
    border: 2px dotted var(--borda);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgColWork img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.titleColWork{
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.textColWork{
    text-align: center;
    color: var(--gray);
    margin-top: 26px;
    font-size: 13px;
    font-weight: 500;
    width: 200px;
}

.titleTeam{
    font-size: 28px;
    font-weight: 600;
}
.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;
}

.indicators{
    margin-top: 12px;
    width: 80%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/index/fundo_indicadores.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.indicator{
    width: 170px;
    height: 170px;
    border-radius: 100%;
    background-color: rgb(64, 64, 64);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    margin-right: 12px;
}
.innerIndicator{
    width: 85%;
    height: 85%;
    border: 1px solid white;
    border-radius: 100%;
    color: white;
    font-size: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.innerIndicator span, .innerIndicator strong{
    display: block;
}
.innerIndicator span{
    font-size: 16px;
}
.marginBot{
    margin-bottom: 86px;
}

.bgHaus{
    background-image: url("../img/index/bg_haus.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.rowInfo{
    height: 780px;
    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;
    width: 55%;
}
.titleRightInfo{
    font-size: 26px;
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
}
.rowContentInfo{
    margin-top: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.colInfo{
    display: flex;
    width: 330px;
}
.rowContentInfo .colInfo:last-child{
    margin-left: auto;
}
.imgRightInfo{
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    background-color: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgRightInfo img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.infoRightInfo{
    margin-left: 18px;
}
.titleInfoRightInfo{
    color: white;
    font-size: 18px;
    font-weight: 600;
}
.textRightInfo{
    margin-top: 8px;
    color: white;
}
.btnWhite{
    margin-top: 58px;
    margin-left: 38px;
}
.btnWhite button{
    background-color: white;
    color: var(--darkpink);
}

.titleSection{
    padding-top: 48px;
    font-size: 28px;
    font-weight: 600;
}
.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;
}
.btnMoreQuestions{
    margin-top: 20px;
    margin-bottom: 448px;
}
.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: 80%;
    height: 900px;
    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: 68px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.containerWorkMobile{
    position: relative;
    width: 70%;
    height: 520px;
    overflow: hidden;
}
.colWorkMobile{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s;
}

.rowInfoMobile{
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
}
.titleInfoMobile{
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-top: 68px;
}
.contentInfoMobile{
    margin-top: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
}
.contentInfoMobile .leftArrow img, .contentInfoMobile .rightArrow img{
    filter: brightness(0%) invert(100%);
}
.containerInfoMobile{
    position: relative;
    width: 60%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.colInfoMobile{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: 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: 0px;
        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/mobile/banner.png");
        background-position: top;
        height: 1240px;
    }
    .leftContentTop{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logo img{
        width: 680px;
        height: 480px;
    }
    .textTop{
        width: 660px;
        font-size: 58px;
        text-align: center;
    }
    .btnSubscribe{
        margin-top: 88px;
    }
    .btnSubscribe button{
        width: 360px;
        height: 52px;
        font-size: 38px;
    }
    .contentWork{
        display: none;
    }
    .contentWorkMobile{
        display: flex;
    }
    .titleWork{
        margin-top: 58px;
        font-size: 46px;
    }
    .imgColWork{
        width: 120px;
        height: 120px;
        border: 4px dotted var(--borda);
        border-radius: 40px;
    }
    .imgColWork img{
        width: 52px;
        height: 52px;
    }
    .titleColWork{
        font-size: 34px;
    }
    .textColWork{
        font-size: 28px;
        width: 85%;
    }

    .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;
    }

    .indicators{
        width: 100%;
        height: 300px;
    }
    .indicator{
        width: 210px;
        height: 210px;
    }
    .innerIndicator{
        font-size: 40px;
    }
    .innerIndicator span{
        font-size: 20px;
    }

    .rowInfo{
        display: none;
    }
    .rowInfoMobile{
        display: flex;
    }
    .imgRightInfo{
        min-width: 110px;
        min-height: 110px;
        max-width: 110px;
        max-height: 110px;
    }
    .imgRightInfo img{
        width: 46px;
        height: 46px;
    }
    .titleInfoRightInfo{
        margin-top: 62px;
        font-size: 34px;
    }
    .textRightInfo{
        width: 80%;
        font-size: 28px;
        text-align: center;
        margin-top: 24px;
    }
    .btnWhite{
        margin-top: 12px;
        margin-bottom: 78px;
        margin-left: 0px;
    }

    .titleSection{
        font-size: 42px;
    }
    .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: 560px;
    }
    .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;
    }
}