/* global da captacao */
body {
    background-color: #051016;
}

italic {
    font-style: italic;
}

.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

/* popup */
.popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000000;
}

.popup:not(.show) {
    display: none;
}

.popup .inside {
    width: 640px;
}

/* video-container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* count */
section.count {
    background: rgb(34, 34, 42);
    background: linear-gradient(-128deg, rgba(34, 34, 42, 1) 0%, rgba(18, 18, 23, 1) 100%);
    border: 1px solid rgba(255, 255, 255, .3);
    border-width: 0 0 1px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

section.count .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

section.count .container p {
    font-size: 1.6em;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
}

section.count .number {
    display: flex;
    flex-direction: column;
    background-color: #0C0C0F;
    padding: 10px 0 8px 0;
    min-width: 70px;
    border-radius: 8px;
    align-items: center;
}

section.count .number label {
    font-size: 2.2em;
    line-height: 1em;
    font-weight: 600;
    background: rgb(204, 159, 0);
    background: linear-gradient(-137deg, rgba(204, 159, 0, 1) 0%, rgba(161, 116, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.count .number span {
    font-size: .8em;
    font-weight: 300;
    text-transform: uppercase;
    color: #667580;
}

/* header */
header {
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
}

header .container {
    display: flex;
    padding: 40px 0 80px 0;
    align-items: center;
}

header .container .form {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    background: rgb(34, 34, 42);
    background: linear-gradient(-180deg, rgba(34, 34, 42, 1) 0%, rgba(18, 18, 23, 1) 100%);
}

header .container .form .logo {
    width: 60%;
}

header .container .form h1 {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.3em;
    background: rgb(0, 117, 202);
    background: linear-gradient(90deg, #a37500 0%, #c49601 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .container .form h1 b {
    font-weight: 600;
    color: #fbfcfb;
}

header .container .form h2 {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.3em;
    background: rgb(0, 117, 202);
    background: linear-gradient(90deg, #a37500 0%, #c49601 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .container .form .text {
    font-size: 1em;
    font-weight: 300;
    color: #999a98;
}

header .container .form .text b {
    color: #fff;
}

header .container .form .text italic {
    color: #cecfce;
}

header .container .form form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

header .container .form form>div.iti {
    flex-grow: 1;
    max-width: 50%;
}

header .container .form form>div.iti input {
    width: 100%;
}

#telefone {
    padding-left: 50px;
}

header .container .form form input[type="text"],
header .container .form form input[type="email"] {
    border: 1px solid #ca9d00;
    padding: 10px 12px;
    border-radius: 5px;
    font-size: .9em;
    font-weight: 300;
    flex-grow: 1;
    box-sizing: border-box;
}

header .container .form form input[type="email"] {
    flex-basis: 100%;
}

header .container .form form input[type="submit"] {
    border: none;
    font-size: 1em;
    font-weight: 600;
    background: rgb(202, 157, 0);
    background: linear-gradient(-90deg, rgba(202, 157, 0, 1) 0%, rgba(162, 117, 0, 1) 43%);
    color: #fff;
    flex-grow: 1;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

header .container .form .small {
    font-size: .9em;
    font-weight: 300;
    font-style: italic;
    color: #666;
    flex-grow: 1;
    text-align: center;
}

header .container .form .small a {
    text-decoration: underline;
    color: #666;
}

header .container .form a.instagram {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    align-self: flex-start;
    padding: 12px 25px;
    border-radius: 6px;
    background: rgb(255, 214, 0);
    background: linear-gradient(77deg, rgba(255, 214, 0, 1) 0%, rgba(255, 122, 0, 1) 27%, rgba(255, 1, 105, 1) 73%, rgba(211, 0, 197, 1) 100%);
}


/* thanks */
header.thanks {
    position: relative;
    background-size: auto 120%;
    height: 100vh;
}


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

header.thanks .container .form {
    position: relative;
    z-index: 100;
}

header.thanks .container .form h2 {
    font-size: 2.6em;
    font-weight: 600;
    line-height: 1.3em;
    background: rgb(0, 117, 202);
    background: linear-gradient(90deg, #a37500 0%, #c49601 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header.thanks .container .form .text-2 {
    font-size: .9em;
    font-weight: 300;
    color: #999a98;
}

header.thanks .container .form .text-2 b {
    font-weight: 600;
    color: #f5f6f5;
}

header.thanks .container .form .assinatura {
    width: 25%;
}


/* jornada */
.jornada {
    padding: 0 0 60px 0;
    margin-top: -130px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgb(12, 12, 15);
    background: linear-gradient(0deg, rgba(12, 12, 15, 1) 0%, rgba(18, 18, 23, 1) 100%);
}

.jornada .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}







.jornada .container h2 {
    font-size: 1.6em;
    font-weight: 300;
    color: #BEBEBE;
    text-align: center;
    max-width: 50%;
}

.jornada .container h2 italic {
    color: #FCFCFC;
}

.jornada .container h2 b {
    color: #FCFCFC;
}

.jornada .container .itens {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 25px;
    margin-top: 20px;
}

.jornada .container .itens .item {
    flex-basis: 48%;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(34, 34, 42);
    background: linear-gradient(-128deg, rgba(34, 34, 42, 1) 0%, rgba(18, 18, 23, 1) 100%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jornada .container .itens .item img {
    width: 100%;
}

.jornada .container .itens .item p {
    font-size: 1.2em;
    font-weight: 600;
    color: #FCFCFC;
    padding: 20px 20px 0 20px;
}

.jornada .container .itens .item span {
    font-size: 1em;
    font-weight: 300;
    color: #BEBEBE;
    padding: 20px 20px 40px 20px;
}

.jornada .container .itens .item span b {
    font-weight: 600;
    color: #FCFCFC;
}

/* modulos */
.modulos {
    padding: 40px 0;
}

.modulos .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.modulos .container h2 {
    font-size: 1.6em;
    font-weight: 300;
    color: #BEBEBE;
    max-width: 50%;
    text-align: center;
}

.modulos .container h2 b {
    font-weight: 600;
    color: #FCFCFC;
}

.modulos .container h2 italic {
    color: #FCFCFC;
}

.modulos .container .items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.modulos .container .items .item {
    flex-basis: 31%;
    background: rgb(34, 34, 42);
    background: linear-gradient(-137deg, rgba(34, 34, 42, 1) 0%, rgba(18, 18, 23, 1) 100%);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

.modulos .container .items .item .item-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modulos .container .items .item .item-head p {
    font-size: 1em;
    font-weight: 300;
    color: #808080;
}

.modulos .container .items .item .item-head p b {
    font-weight: 600;
    text-transform: uppercase;
    color: #FCFCFC;
    display: block;
}

.modulos .container .items .item .item-head p img {
    width: 30px;
}

.modulos .container .items .item span {
    font-size: 1em;
    font-weight: 300;
    color: #BEBEBE;
    margin-top: 10px;
}

.modulos .container .items .item span b {
    font-weight: 600;
    color: #FCFCFC;
}

/* depoimentos-videos */
.depoimentos-videos {
    padding: 40px 0;
}

.depoimentos-videos .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.depoimentos-videos .container .depoimentos-videos-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimentos-videos .container .depoimentos-videos-head::before {
    position: absolute;
    content: "";
    background: rgb(204, 159, 1);
    background: linear-gradient(-127deg, rgba(204, 159, 1, 0) 0%, rgba(204, 159, 1, .3) 50%, rgba(204, 159, 1, 0) 100%);
    height: 1px;
    width: 300px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
}

.depoimentos-videos .container .depoimentos-videos-head::after {
    position: absolute;
    content: "";
    background: rgb(204, 159, 1);
    background: linear-gradient(-127deg, rgba(204, 159, 1, 0) 0%, rgba(204, 159, 1, .3) 50%, rgba(204, 159, 1, 0) 100%);
    height: 1px;
    width: 300px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.depoimentos-videos .container .depoimentos-videos-head p {
    font-size: 1.6em;
    font-weight: 300;
    color: #BEBEBE;
    line-height: 1.2em;
}

.depoimentos-videos .container .depoimentos-videos-head p.align-right {
    text-align: right;
}

.depoimentos-videos .container .depoimentos-videos-head p b {
    font-weight: 600;
    color: #FCFCFC;
}

.depoimentos-videos .container .depoimentos-videos-head span {
    font-size: 4.2em;
    font-weight: 800;
    background: rgb(204, 159, 0);
    background: linear-gradient(-127deg, rgba(204, 159, 0, 1) 0%, rgba(161, 116, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.depoimentos-videos .container .items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.depoimentos-videos .container .items .item {
    position: relative;
    flex-basis: 31%;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.depoimentos-videos .container .items .item:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, .08);
}

.depoimentos-videos .container .items .item .bg {
    width: 100%;
}

.depoimentos-videos .container .items .item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




/* depoimentos-texto */
.depoimentos-texto {
    padding: 260px 0 60px 0;
    margin-top: -210px;
    background-color: #F3F6FF;
    border-radius: 0 0 20px 20px;
}

.depoimentos-texto .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.depoimentos-texto .container h2 {
    font-size: 1.6em;
    font-weight: 300;
    color: #272727;
    max-width: 42%;
    text-align: center;
}

.depoimentos-texto .container h2 b {
    font-weight: 600;
}

.depoimentos-texto .container span {
    font-size: 1em;
    font-weight: 300;
    color: #515151;
    text-align: center;
    max-width: 40%;
}

.depoimentos-texto .container span b {
    font-weight: 600;
    color: #272727;
}

.depoimentos-texto .container .items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}

.depoimentos-texto .container .items .item {
    flex-basis: 48%;
}

.depoimentos-texto .container .items .item img {
    width: 100%;
    border-radius: 10px;
}

/* about */
.about {
    padding: 80px 0;
    background-image: url(../img/sobre.webp);
    background-size: auto 100%;
    background-position: 50%;
}

.about .container {
    display: flex;
}

.about .container .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    flex-basis: 50%;
}

.about .container .text h3 {
    font-size: 1em;
    font-weight: 300;
    background: rgb(204, 159, 0);
    background: linear-gradient(-92deg, rgba(204, 159, 0, 1) 0%, rgba(161, 116, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.about .container .text h2 {
    font-size: 1.6em;
    font-weight: 300;
    color: #BEBEBE;
    max-width: 70%;
}

.about .container .text h2 b {
    font-weight: 600;
    color: #FCFCFC;
}

.about .container .text span {
    font-size: 1em;
    font-weight: 300;
    color: #BEBEBE;
    margin-top: 20px;
}

.about .container .text span b {
    font-weight: 600;
    color: #FCFCFC;
}

.about .container .text span italic {
    color: #FCFCFC;
}


/* faq */
.faq {
    padding: 40px 20px 40px 20px;

}

.faq .container {
    background: rgb(34, 34, 42);
    background: linear-gradient(-134deg, rgba(34, 34, 42, 1) 0%, rgba(18, 18, 23, 1) 100%);
    border-radius: 10px;
    padding: 20px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.faq .container h2 {
    font-size: 1.6em;
    font-weight: 600;
    color: #FCFCFC;
}

.faq .container .perguntas {
    display: flex;
    flex-direction: column;

}

.faq .container .perguntas .pergunta {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq .container .perguntas .pergunta:not(:first-child) {
    border: 1px solid rgba(255, 255, 255, .15);
    border-width: 1px 0;
}

.faq .container .perguntas .pergunta p {
    font-size: 1em;
    font-weight: 600;
    color: #FCFCFC;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq .container .perguntas .pergunta p img {
    width: 20px;
    margin-left: auto;
}

.faq .container .perguntas .pergunta:not(.active) p img.open {
    display: none;
}

.faq .container .perguntas .pergunta.active p img.close {
    display: none;
}

.faq .container .perguntas .pergunta span {
    font-size: 1em;
    font-weight: 300;
    color: #DBDBDB;
}


.faq .container .perguntas .pergunta:not(.active) span {
    display: none;
}

a.button {
    background: rgb(204, 159, 0);
    background: linear-gradient(-109deg, rgba(204, 159, 0, 1) 0%, rgba(161, 116, 0, 1) 100%);
    font-size: 1em;
    font-weight: 600;
    border-radius: 7px;
    padding: 12px 30px;
    color: #fff;
}




/* footer */
footer {
    background-color: #000000;
    padding: 40px 0;
}

footer .container {
    display: flex;
    align-items: center;
}

footer .container img.logo {
    width: 120px;
    opacity: .8;
}

footer .container span {
    font-size: .8em;
    font-weight: 300;
    color: #ddd;
    justify-self: flex-end;
    flex-grow: 1;
    text-align: right;
}

@media (min-width: 767px) {

    .jornada,
    .faq {
        padding-top: 100px;
        padding-bottom: 60px;
    }


}

@media only screen and (max-width: 760px) {
    header {
        padding-top: 120px;
        background-size: 100% auto;
        background-position-x: 0px;
    }

    header .container {
        padding: 20px 20px 0 20px;
        box-sizing: border-box;
    }

    header .container .form {
        flex-basis: 100%;
        box-sizing: border-box !important;
    }

    header .container .form form {
        box-sizing: border-box;
    }

    header .container .form .logo {
        width: 55%;
    }

    header .container .form h1 {
        font-size: 1.2em;
    }

    header .container .form span {
        color: #fff !important;
    }

    header .container .form form input {
        flex-basis: 100%;
    }

    header .container .form form .iti {
        width: 100%;
        max-width: 100% !important;
    }

    header .container .form span.small {
        font-size: .8em;
        position: relative;
        z-index: 100;
        color: #666 !important;
    }

    .jornada {
        padding: 100px 20px 20px 20px;
    }

    .jornada .container {
        width: 100%;
    }

    .jornada .container .logo {
        width: 60%;
    }

    .jornada .container h2 {
        font-size: 1.3em;
        max-width: 100%;
    }

    .jornada .container .itens .item {
        flex-basis: 100%;
    }


    .jornada .container .itens .item p {
        padding: 0 20px;
    }

    .jornada .container .itens .item span {
        padding: 0 20px 20px 20px;
    }

    .modulos {
        padding: 20px;
    }

    .modulos .container h2 {
        max-width: 85%;
        font-size: 1.3em;
    }

    .modulos .container .items .item {
        flex-basis: 100%;
        padding: 20px;
    }

    .depoimentos-videos {
        padding: 20px;
    }

    .depoimentos-videos .container .depoimentos-videos-head {
        flex-direction: column;
        gap: 0;
    }

    .depoimentos-videos .container .depoimentos-videos-head p {
        font-size: 1.3em;
        text-align: center !important;
    }

    .depoimentos-videos .container .depoimentos-videos-head span {
        margin: -20px 0;
    }

    .depoimentos-videos .container .depoimentos-videos-head::before,
    .depoimentos-videos .container .depoimentos-videos-head::after {
        display: none;
    }

    .depoimentos-videos .container .items {
        gap: 20px;
    }

    .depoimentos-videos .container .items .item {
        flex-basis: 100%;
    }



    .depoimentos-texto {
        padding: 360px 20px 20px 20px;
        margin-top: -320px;
    }

    .depoimentos-texto .container h2 {
        font-size: 1.3em;
        max-width: 100%;
    }

    .depoimentos-texto .container span {
        max-width: 100%;
    }

    .depoimentos-texto .container .items {
        gap: 20px;
    }

    .depoimentos-texto .container .items .item {
        flex-basis: 100%;
    }

    .about {
        padding: 20px 20px 0 20px;
        background-size: 250%;
        background-repeat: no-repeat;
        background-position: top right;
        background-position-x: -420px;
    }

    .about .container {
        flex-direction: column;
        margin-top: 300px;
    }

    .about .container .text h2 {
        font-size: 1.3em;
        line-height: 1.2em;
    }


    footer {
        padding: 40px 0 20px 0;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        box-sizing: border-box;
        padding: 20px;
    }

    footer .container span {
        text-align: left;
    }

}