:root {
    --cor1: #36c688;
    --cor2: #ffc411;
    --dark1: #1a1b1f;
    font-size: 16px;
}

* {
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    background-color: #16171b;
}

.branco {
    color: #fff;
}

.cor2 {
    color: var(--cor2);
}

.cinza1 {
    color: rgb(0 0 0 / 82%);
}

.vermelho {
    color: #f3658f;
}

.destaque {
    color: var(--cor1);
    filter: brightness(1.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 4px 0px;
    color: #fff;
}

h1 {
    font-size: 2.67em;
    font-weight: 700;
    line-height: 1.37em;
}

h2 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.37em;
}

h5 {
    font-size: 1.15em;
    font-weight: 500;
    color: rgb(255 255 255 / 92%);
}

p {
    margin: 0;
    margin-bottom: 16px;
    /* font-size: 0.95em; */
    line-height: 1.75em;
    color: rgba(255, 255, 255, 0.82);
}

p b {
    color: #fff;
}

.pequeno {
    font-size: 0.8em;
}

.centro {
    text-align: center;
}

span.label {
    padding: 4px 12px;
    width: fit-content;
    color: #36c688;
    font-weight: 700;
    background: rgb(54 198 136 / 10%);
    border-radius: 50px;
    border: 1px solid #36c688;
    font-size: 0.95em;
}

.menu {
    width: 95%;
    max-width: 1260px;
    padding: 12px 0px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#menu-rodape {
    display: none;
}

#bg {
    background: linear-gradient(180deg, #0a100d, transparent);
}

.sessao {
    margin: 0 auto;
    width: 95%;
    max-width: 1260px;
    padding: 80px 0px;
}

.imagem {
    width: 90%;
    margin: auto;
    border-radius: 12px;
}

.botao {
    background: var(--cor1);
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
    transition: 0.5s;
    box-shadow: 0px 0px 15px 0px rgb(54 198 136 / 33%);

    & img {
        width: 24px;
    }

    &:hover {
        filter: brightness(1.15);
        box-shadow: 0px 0px 15px 0px rgb(54 198 136 / 67%);
    }

    &.cor2 {
        background: #e03602;
    }
}

.grid {
    display: grid;
    gap: 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-2-5 {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.centro-vertical {
    align-items: center;
}

.flex {
    display: flex;
}

.flex-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flex-centro {
    justify-content: center;
    align-items: center;
}

.margin-top-20 {
    margin-top: 20px;
}

.padding-top-0 {
    padding-top: 0px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-20 {
    padding: 32px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.header {
    padding-top: 70px;
    padding-bottom: 160px;
}

label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
    font-weight: 500;
}

label input {
    padding: 12px;
    border: 1px solid rgb(121 121 121 / 25%);
    outline: 0;
    border-radius: 6px;
}

#tabela-comparacao {
    margin: 0 auto;
    padding: 20px;
    background: #1a1b1f;
    border-radius: 20px;
    border: 2px solid rgb(54 198 136 / 67%);
    box-shadow: 0px 0px 250px 0px rgb(54 198 136 / 15%);
}

table {
    color: #fff;
}

tr {
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    justify-content: end;
}

thead tr {
    border-bottom: 1px solid rgb(255 255 255 / 33%);
}

th {
    text-align: left;
    font-size: 1.1em;
    padding: 20px;
}

td {
    font-size: 1.05em;
    font-weight: 500;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

tr td:nth-child(1),
tr th:nth-child(1) {
    text-align: right;
    align-items: right;
    justify-content: flex-end;
    border-right: 1px solid rgb(255 255 255 / 33%);
    max-width: 250px;
}

tr td:nth-child(2),
tr th:nth-child(2) {
    border-right: 1px solid rgb(255 255 255 / 33%);
    max-width: 300px;
    color: #f3658f;
}

tr td:nth-child(3),
tr th:nth-child(3) {
    color: var(--cor1);
    font-weight: 700;
    filter: brightness(1.1);
    max-width: 300px;
}

td img {
    width: 36px;
}

#grafico-container {
    height: 100%;
    border-bottom: 2px solid #333;
    display: flex;
    align-items: end;
    justify-content: space-evenly;
    justify-items: center;
    position: relative;
}

#legenda-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    justify-items: center;
    padding: 8px;
}

#grafico-container h2 {
    position: absolute;
    top: 12px;
}

.barra {
    width: 120px;
    height: 0px;
    border-radius: 100px 100px 0px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #a1a1a1;
    transition: 1.5s;
    flex-direction: column;
}

.barra img {
    width: 48px;
    filter: invert(1);
    margin-top: 12px;
    opacity: 0;
    transition: 3s 1s;
}

.barra div {
    display: grid;
    justify-items: center;
    color: #fff;
    opacity: 0;
    transition: 2s 1s;
}

#com-curso div {
    transform: translateY(-132px);
}

#sem-curso div {
    transform: translateY(-72px);
}

#grafico-container.ativo .barra div {
    opacity: 1;
}

.barra span {
    font-size: 0.9em;
    font-weight: 700;
}

#grafico-container.ativo .barra img {
    opacity: 1;
}

#grafico-container.ativo #sem-curso {
    height: 18%;
}

#grafico-container.ativo #com-curso {
    height: 68%;
    background: var(--cor1);
    filter: brightness(1.25);
    box-shadow: 0px 0px 20px 0px rgb(54 198 136 / 24%);
}

.card-conteudo {
    padding: 20px;
    background: #1a1b1f;
    border-radius: 20px;
    border: 2px solid rgb(54 198 136 / 67%);
    box-shadow: 0px 0px 20px 0px rgb(54 198 136 / 15%);
}

.card-conteudo h4 {
    font-size: 1.15em;
}

.card-conteudo p {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 0.95em;
}

.conteudo-lista {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
}


.conteudo-lista img {
    width: 28px;
    margin-right: 8px;
}

#lista-conteudo {
    display: grid;
    gap: 4px;
}

#depoimentos-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* grid-auto-flow: row; */
    flex-direction: row;
    padding: 20px;
    gap: 40px;
    justify-content: center;
}

.depoimento {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px;
}

.depoimento i {
    padding: 12px;
    background: #1a1b1f;
    border-radius: 12px;
    border: 2px solid rgb(54 198 136 / 67%);
    box-shadow: 0px 0px 12px 0px rgb(54 198 136 / 10%);
    color: rgb(255 255 255 / 82%);
}

.depoimento h5 {
    margin-top: 12px;
    color: #fff;
    margin-bottom: 0px;
}

.depoimento span {
    color: #FFC107;
    font-size: 1.25em;
}

#curso {
    margin: 80px auto;
    width: 95%;
    max-width: 600px;
    padding: 80px 0px;
    background: #1a1b1f;
    border-radius: 20px;
    border: 2px solid rgb(54 198 136 / 67%);
    box-shadow: 0px 0px 250px 0px rgb(54 198 136 / 15%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#curso p {
    margin: 0px;
}

#preco {
    font-size: 5em;
    font-weight: 700;
    color: var(--cor2);
}

#preco small {
    font-size: 1.25rem;
}

#preco-parcelado {
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    margin-top: -20px;
    margin-bottom: 20px;
}


#faq-container {
    width: 100%;
}

.pergunta {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    border: 2px solid rgb(54 198 136 / 67%);
    box-shadow: 0px 0px 12px 0px rgb(54 198 136 / 10%);
    transition: 0.5s;
}

.pergunta.ativo {
    background: rgb(54 198 136 / 25%);
    border-radius: 6px 6px 0px 0px;
}

.pergunta img {
    width: 24px;
}

.resposta {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    border-radius: 0px 0px 6px 6px;
}

.resposta.ativo {
    display: flex;
    border: 2px solid rgb(54 198 136 / 67%);
    box-shadow: 0px 0px 12px 0px rgb(54 198 136 / 10%);
    border-top: 0px;
}

.resposta p {
    margin: 0px;
}

#rodape {
    padding: 20px;
    background: #000;
    border-top: 2px solid rgb(54 198 136 / 67%);
}

@media (max-width: 767px) {

    :root {
        font-size: 12px;
    }

    #menu-rodape {
        width: calc(100% - 16px);
        position: fixed;
        bottom: -2px;
        background: rgb(0 0 0 / 75%);
        backdrop-filter: blur(12px);
        padding: 8px;
        display: flex;
        place-content: center;
        border-top: 2px solid rgb(54 198 136 / 67%);
        flex-direction: row;
        align-items: center;
        gap: 12px;
        transition: 1s;
        opacity: 0;
        pointer-events: none;

        &.ativo {
            opacity: 1;
            pointer-events: all;
        }
    }

    #menu-rodape h4 {
        font-size: 3.25vw;
    }

    #logo {
        width: 125px;
    }

    .sessao {
        padding: 24px 0px;
    }

    .grid-2,
    .grid-3,
    .grid-2-5 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .botao-contato {
        padding: 12px 20px;
    }

    .flex-mobile-centro {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-centro {
        text-align: center;
    }

    #solucao {
        padding-top: 56px;
    }

    #rodape {
        margin-top: 0px;
    }

    .padding-20 {
        padding: 12px 32px;
    }

    h1 {
        font-size: 2.25em;
        text-align: center;
    }

    h2 {
        text-align: center;
    }

    td img {
        width: 25px;
    }

    #header h5 {
        font-size: 1.1em;
        text-align: center;
    }

    #header a {
        margin: 8px auto 0;
    }

    #grafico-container {
        min-height: 300px;
    }

    #com-curso div {
        transform: translateY(-115px);
    }

    #sem-curso div {
        transform: translateY(-56px);
    }

    #conteudo h2 {
        text-align: left;
    }

    .flex-vertical {
        gap: 8px;
    }

    tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: end;
    }

    tr td:nth-child(1),
    tr th:nth-child(1) {
        display: none;
    }

    th {
        text-align: left;
        font-size: 1.1em;
        padding: 8px;
    }

    td {
        font-size: 1em;
        padding: 8px;
        gap: 6px;
    }

    #header {
        padding-top: 20px;
    }

    #tabela-comparacao {
        margin: 0 auto;
        padding: 0px;
        width: 100%;
    }

    #depoimentos-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0px;
        width: 100%;
        box-sizing: border-box;
        justify-content: unset;
    }


    .depoimento {
        display: grid;
        gap: 4px;
        text-align: center;
        scroll-snap-align: start;
        flex: none;
        width: 90%;
        border-radius: 10px;
        box-sizing: border-box;
        align-content: flex-start;
        max-width: unset;
        padding-left: 5%;
    }

    #depoimentos-carousel>*:last-child {
        padding-right: 5%;
    }

    #curso {
        padding: 12px;
        width: calc(95% - 24px);
        margin: 20px auto;
    }

    #lista-conteudo {
        display: grid;
        gap: 0px;
    }

    #preco-parcelado {
        margin-bottom: 0px;
    }

}

@media (max-width: 357px) {

    :root {
        font-size: 11px;
    }

    #logo {
        width: 75px;
    }
}