* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

body {
    margin: 0;
    background-color: #0b0b0f;
    font-family: "Prompt", Arial, Helvetica, sans-serif
}
img{
  max-width: 100%;
  height: auto;
}
body.close {
    overflow: hidden
}

a {
    text-decoration: none
}

.container {
    width: 100%;
    max-width: 1094px;
    margin: 0 auto;
    box-sizing: border-box
}

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

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

.popup .inside {
    width: 640px
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

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

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 77px;
    height: 78px;
    background: url(../img/icon-play.svg) no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2
}

section.count {
    background: #22222a;
    background: linear-gradient(-128deg, #22222a 0%, #121217 100%);
    border: 1px solid rgb(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: #cc9f00;
    background: linear-gradient(-137deg, #cc9f00 0%, #a17400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

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

@media only screen and (max-width:760px) {
    section.count .container {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }
    section.count .container p {
        margin: 0;
        text-align: center
    }
}

.header {
    min-height: 600px;
    padding: 40px 0;
    background-image: url(../img/BG1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top
}

.header .container {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px
}

.header .container .tip {
    font-size: 1.2em;
    font-weight: 600;
    color: #FCFCFC;
    background: linear-gradient(#121017, #121017) padding-box, linear-gradient(-90deg, #cc9f00 0%, #a17400 100%) border-box;
    border: 1px solid #fff0;
    border-radius: 50px;
    padding: 3px 20px
}

.header .container .tip b {
    font-weight: 600;
    color: #A17400
}

.header .container h1 {
    font-family: "Prompt", Arial, Helvetica, sans-serif;
    font-size: 1.8em;
    font-weight: 300;
    color: #BEBEBE;
    text-align: center;
    max-width: 85%;
    line-height: 1.2em
}

.header .container h1 b {
    color: #FCFCFC
}

.header .container h2 {
    font-size: 2.6em;
    font-weight: 600;
    color: #FCFCFC;
    text-align: center;
    line-height: 1.2em;
    text-transform: uppercase
}

.header .container h1 italic {
    font-weight: 300;
    color: #FCFCFC
}

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

.header .container form .iti {
    flex-basis: 49%
}

.header .container form input[name='nome'] {
    flex-grow: 1
}

.header .container form input[name='email'],
.header .container form input[type='submit'] {
    flex-basis: 100%
}

.header .container form input[name='nome'],
.header .container form input[name='email'],
.header .container form input[name='telefone'] {
    box-sizing: border-box;
    border: 1px solid rgb(255 255 255 / .27);
    border: 1px solid #626362;
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 1em;
    font-weight: 300;
    color: #636363;
    background-color: #fff0
}

.header .container form input[name='telefone'] {
    width: 100%;
    padding-left: 45px
}

.header .container form input[type='submit'] {
    font-size: 1em;
    font-weight: 600;
    background: #cc9f00;
    background: linear-gradient(-99deg, #cc9f00 0%, #a17400 100%);
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer
}

.header .container span.small {
    font-size: .75;
    font-weight: 300;
    color: #636363
}

.header .container span.small a {
    text-decoration: underline;
    font-style: italic;
    color: #636363
}

@media only screen and (max-width:760px) {
    .header {
        padding: 20px
    }
    .header .container .tip {
        text-align: center;
        font-size: 1em;
        max-width: 80%
    }
    .header .container h1 {
        font-size: 1.3em;
        max-width: 100%
    }
    .header .container h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .header .container form input,
    .header .container form .iti {
        flex-basis: 100%
    }
}

.brindes {
    padding: 40px 0
}

.brindes .container {
    background: #22222a;
    background: linear-gradient(180deg, #22222a 0%, #121217 100%);
    padding: 20px 35px 50px 35px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-sizing: border-box
}

.brindes .container .flex {
    display: flex;
    gap: 30px
}

.brindes .container .flex .box-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-basis: 50%;
    gap: 20px
}

.brindes .container .tip {
    margin-top: -44px;
    margin-bottom: 20px
}

.brindes .container h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    font-weight: 300;
    color: #BEBEBE;
    text-align: center;
    max-width: 60%
}

.brindes .container h3 b {
    font-weight: 600;
    color: #FCFCFC
}

.brindes .container h3 italic {
    font-weight: 300;
    color: #FCFCFC
}

.brindes .container .flex .box-text h3 {
    max-width: 100%;
    text-align: left
}

.brindes .container>span {
    font-size: 1em;
    font-weight: 300;
    color: #FCFCFC;
    max-width: 40%;
    text-align: center
}

.brindes .container>span b {
    text-transform: uppercase;
    font-weight: 600
}

.brindes .container .flex .box-text>span {
    font-size: 1em;
    font-weight: 300;
    color: #FCFCFC;
    max-width: 100%;
    text-align: left
}

.brindes .container .flex .box-text>span.text {
    color: #BEBEBE
}

.brindes .container .images {
    display: flex;
    gap: 20px;
    margin: 30px 0
}

.brindes .container .images .img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    max-width: 340px
}

.brindes .container .flex .images {
    flex-basis: 50%;
    padding: 0 20px;
    box-sizing: border-box
}

.brindes .container .flex .images .img {
    max-width: none
}

.brindes .container .images .img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    display: block
}

.brindes .container .images .img tip {
    position: absolute;
    right: 0;
    top: 0;
    font-size: .7em;
    font-weight: 300;
    display: flex;
    background-color: #795B00;
    padding: 5px;
    border-radius: 5px;
    gap: 5px;
    color: #fff;
    align-items: center
}

.brindes .container .images .img tip img {
    width: 16px
}

.brindes .container .images .img label {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 1em;
    font-weight: 300;
    color: #FCFCFC
}

.brindes .container .images .img label b {
    font-weight: 600;
    text-transform: uppercase
}

.brindes .container .text {
    font-size: 1em;
    font-weight: 300;
    color: #BEBEBE;
    max-width: 60%;
    text-align: center
}

.brindes .container .text b {
    color: #FCFCFC
}

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

@media only screen and (max-width:760px) {
    .brindes {
        padding: 10px
    }
    .brindes .container {
        padding: 10px
    }
    .brindes .container .flex {
        flex-direction: column;
        gap: 0
    }
    .brindes .container .tip {
        margin-top: -33px
    }
    .brindes .container h3 {
        max-width: 100%;
        font-size: 1.3em
    }
    .brindes .container>span {
        max-width: 100%
    }
    .brindes .container .flex {
        gap: 0
    }
    .brindes .container .flex .box-text {
        gap: 30px !important;
        padding: 0 10px
    }
    .brindes .container .flex .box-text h3 {
        text-align: center !important
    }
    .brindes .container .flex .box-text span {
        text-align: center !important;
        font-size: 1em !important
    }
    .brindes .container .flex .box-text a {
        margin: 0 auto
    }
    .brindes .container .images {
        flex-direction: column;
        padding: 10px !important;
        margin: 15px auto 0 auto
    }
    .brindes .container .images .img {
        max-width: 100%
    }
    .brindes .container .images .img label {
        bottom: 15px;
        left: 25px
    }
    .brindes .container .text {
        max-width: 100%;
        /*margin-top: -20px*/
    }
}

.support {
    padding: 40px 0 0 0;
    position: relative;
    z-index: 100
}

.support .container {
    position: relative;
    /*top: 117px;*/
    display: flex;
    align-items: center;
    padding: 50px 100px;
    background-image: url(../img/wpp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    border-radius: 10px
}

.support .container .content {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.support .container .content p {
    font-size: 1.6em;
    font-weight: 300;
    color: #FCFCFC
}

.support .container .content p b {
    display: flex;
    text-transform: uppercase;
    font-weight: 600
}

.support .container .content a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    background: #00bb6c;
    background: linear-gradient(-96deg, #00bb6c 0%, #006d3f 100%);
    color: #fff;
    padding: 15px;
    justify-content: center;
    border-radius: 8px
}

@media only screen and (max-width:760px) {
    .support {
        padding: 20px
    }
    .support .container {
        padding: 30px 20px 90px 20px;
        background-image: url(../img/wpp-mob.webp);
        background-size: auto 110%;
        overflow: hidden
    }
    .support .container::before {
        position: absolute;
        content: "";
        background-color: rgb(0 0 0 / .4);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }
    .support .container * {
        position: relative
    }
    .support .container .content {
        align-items: flex-start
    }
    .support .container .content p {
        font-size: 1em
    }
    .support .container .content a {
        font-size: 1em;
        padding: 12px
    }
}

@media(min-width:767px) {
    .support {
        padding: 0
    }
}

.jornada {
    min-height: 600px;
    padding: 75px 0 60px 0;
    border-top: 1px solid rgb(255 255 255 / .1);
    background: #0c0c0f;
    background: linear-gradient(0deg, #0c0c0f 0%, #121217 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: #22222a;
    background: linear-gradient(-128deg, #22222a 0%, #121217 100%);
    display: flex;
    flex-direction: column;
    gap: 20px
}

.jornada .container .itens .item img {
    width: 100%;
    height: 155px;
    object-fit: cover
}

.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
}

@media only screen and (max-width:760px) {
    .jornada {
        margin-top: -140px;
        padding: 200px 20px 20px 20px
    }
    .jornada .container {
        width: 100%
    }
    .jornada .container .logo {
        width: 60%
    }
    .jornada .container h2 {
        font-size: 1.3em;
        max-width: 100%;
        margin-top:20px;
    }
    .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: 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: #22222a;
    background: linear-gradient(-137deg, #22222a 0%, #121217 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: gray
}

.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
}

@media only screen and (max-width:760px) {
    .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: 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: #cc9f01;
    background: linear-gradient(-127deg, #fff0 0%, rgb(204 159 1 / .3) 50%, #fff0 100%);
    height: 1px;
    width: 300px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%)
}

.depoimentos-videos .container .depoimentos-videos-head::after {
    position: absolute;
    content: "";
    background: #cc9f01;
    background: linear-gradient(-127deg, #fff0 0%, rgb(204 159 1 / .3) 50%, #fff0 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: #cc9f00;
    background: linear-gradient(-127deg, #cc9f00 0%, #a17400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.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 rgb(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-videos .container a {
    font-size: 1em;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 6px;
    background: #cc9f00;
    background: linear-gradient(-106deg, #cc9f00 0%, #a17400 50%);
    color: #fff;
    margin-top: 20px
}

@media only screen and (max-width:760px) {
    .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%
    }
}

.garantia {
    padding: 60px 0 0 0
}

.garantia .container {
    max-width: 640px;
    background: #f3f6ff;
    background: linear-gradient(180deg, #f3f6ff 0%, #d9deef 100%);
    border-radius: 20px;
    padding: 0 60px 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 100
}

.garantia .container img {
    width: 100px;
    margin-top: -50px
}

.garantia .container h2 {
    font-size: 1.6em;
    font-weight: 300;
    color: #515151;
    text-align: center
}

.garantia .container h2 b {
    font-weight: 600;
    color: #272727
}

.garantia .container span {
    font-size: 1em;
    font-weight: 300;
    color: #515151;
    text-align: center
}

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

@media only screen and (max-width:760px) {
    .garantia {
        padding: 100px 20px 20px 20px
    }
    .garantia .container {
        padding: 20px
    }
    .garantia .container h2 {
        font-size: 1.3em
    }
}

.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
}

.depoimentos-texto .container a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    background: #cc9f00;
    background: linear-gradient(-112deg, #cc9f00 0%, #a17400 100%);
    color: #fff;
    padding: 15px;
    justify-content: center;
    border-radius: 8px;
    margin-top: 20px
}

@media only screen and (max-width:760px) {
    .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: 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: #cc9f00;
    background: linear-gradient(-92deg, #cc9f00 0%, #a17400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    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
}

@media only screen and (max-width:760px) {
    .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
    }
}

.cta {
    padding: 40px 0
}

.cta .container {
    display: flex;
    gap: 20px
}

.cta .container .content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: url(../img/cta.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 30px;
    border-radius: 8px;
    align-items: flex-start;
    flex-grow: 1
}

.cta .container .content * {
    position: relative
}

.cta .container .content::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .3)
}

.cta .container .content img {
    width: 60%
}

.cta .container .content span {
    font-size: 1em;
    font-weight: 300;
    color: #FCFCFC;
    max-width: 60%
}

.cta .container .content span b {
    font-weight: 600
}

.cta .container .content a {
    font-size: 1em;
    font-weight: 600;
    background: #cc9f00;
    background: linear-gradient(-106deg, #cc9f00 0%, #a17400 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px
}

.cta .container .count {
    margin-left: auto;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 10px;
    gap: 5px;
    background: #22222a;
    background: linear-gradient(-128deg, #22222a 0%, #121217 100%);
    border: 1px solid rgb(255 255 255 / .3);
    max-width: 35%;
    box-sizing: border-box
}

.cta .container .count p {
    font-size: 1.6em;
    font-weight: 300;
    color: #BEBEBE;
    width: 100%;
    margin-bottom: -30px
}

.cta .container .count p b {
    font-weight: 600;
    color: #FCFCFC
}

.cta .container .count p italic {
    color: #FCFCFC
}

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

.cta .container .count .number label {
    font-size: 2.2em;
    line-height: 1em;
    font-weight: 600;
    background: #cc9f00;
    background: linear-gradient(-137deg, #cc9f00 0%, #a17400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

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

@media only screen and (max-width:760px) {
    .cta {
        padding: 20px
    }
    .cta .container {
        flex-direction: column
    }
    .cta .container .content {
        background-position: center top;
        background-position-x: -300px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        padding-top: 150px;
        padding-bottom: 60px;
        background-position-y: -27px
    }
    .cta .container .content span {
        max-width: 100%;
        font-size: 1em
    }
    .cta .container .content a {
        padding: 20px
    }
    .cta .container .count {
        flex-wrap: wrap;
        padding: 0 0 20px 0;
        justify-content: center;
        margin-top: 15px;
        max-width: 100%
    }
    .cta .container .count p {
        margin: 20px;
        text-align: center
    }
    .cta .container .count>span {
        width: 90%;
        margin: 0 auto 5px auto;
        text-align: center
    }
}

.faq {
    padding: 40px 0
}

.faq .container {
    background: #22222a;
    background: linear-gradient(-134deg, #22222a 0%, #121217 100%);
    padding: 40px;
    border-radius: 10px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.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 rgb(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
}

@media only screen and (max-width:760px) {
    .faq {
        padding: 20px 20px 0 20px
    }
    .faq .container {
        padding: 20px 20px 40px 20px
    }
}

footer {
    background-color: #000;
    padding: 40px 0;
    margin-top: 60px
}

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 only screen and (max-width:760px) {
    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
    }
}