:root {
    --roxo: #60408B;
    --verde: #618B25;
    --claro: #FCF0CC;
    --extra: #FC5130;
    --darkgray: darkgray;
}
header {
    background: var(--roxo);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.infos {
    width: 45%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.infos img {
    width: 40%;
}
.infos p {
    width: 88%;
    font-family: 'Assistant', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--claro);
}
.infos p span {
    color: var(--verde);
    font-weight: bolder;
}
.infos a, .investimento a {
    text-decoration: none;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    background: var(--extra);
    color: var(--claro);
    width: 50%;
    padding: 1rem;
    cursor: pointer;
}
.foto {
    width: 45%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foto img{
    width: 70%;
}
.paraquem {
    background: var(--claro);
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.paraquem-container {
    width: 30%;
    padding: 2rem 2rem 0rem 2rem;
    border: 0.2rem solid var(--verde);
}
.paraquem-container h2 {
    margin-bottom: 2rem;
    font-family: 'Open Sans', sans-serif;
    padding: 0.5rem;
    color: #618B25;
}
.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    column-gap: 1rem;
}
.checkbox span {
    color: var(--extra);
    font-weight: bold;
}
.aulas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--extra);
    text-align: center;
    padding: 2rem 0 2rem 0;
}
.aulas h2 {
    padding-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--claro);
}
.aulas-container {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.aulas-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: var(--roxo);
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}
.aulas-card-txt {
    text-align: left;
    color: var(--claro);
    font-family: 'Assistant', sans-serif;
}
.aulas-card-txt h3 {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.5rem; 
}
.qtd-aulas {
    margin-top: 0.4rem;
    color: var(--darkgray);
    font-size: 0.8rem;
}
.prof {
    background: var(--claro);
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prof-txt {
    width: 40%;
    padding: 2rem;
    font-family: 'Assistant', sans-serif;
    font-size: 1.2rem;
}
.prof-txt h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--roxo);
    margin-bottom: 1rem;
}
.prof-txt h2 span {
    font-weight: bold;
}
.investimento {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: var(--roxo);
}
.investimento h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
    margin: 2rem 0;
    color: var(--verde);
}
.valores {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--darkgray);
    font-family: 'Assistant', sans-serif;
    font-size: 1.5rem;
}
.prazo {
    border: 0.15rem solid var(--verde);
    text-align: center;
    padding: 1rem;
    font-family: 'Assistant', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.prazo h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 1rem;
}
.preco {
    color: var(--verde);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
}
.preco span { 
    font-size: 1.2rem;
}
.txt-obs, .txt-obs2 {
    margin: 0.2rem 0 2rem 0;
    font-size: 0.6rem;
}
.txt-obs2 {
    margin-bottom: 4.5rem;
}
.total-prazo {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--verde);
}
.total-prazo span {
    font-size: 0.8rem;
}
.aulas-container-conteudo {
    display: none;
}
.aulas-container-conteudo.on {
    height: 93vh;
    width: 100vw;
    position: absolute;
    top: 170vh;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.conteudo {
    background: var(--claro);
    width: 40vw;
    text-align: right;
    border-radius: 0.5rem;
    padding-bottom: 2rem;
}
.conteudo img {
    cursor: pointer;
    padding: 0.5rem;
}
.conteudo-txt {
    width: 90%;
    text-align: left;
    padding-left: 1rem;
    font-family: 'Assistant', sans-serif;
}
.conteudo-txt h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: bolder;
    text-transform: uppercase;
    color: var(--roxo);
    margin-bottom: 0.5rem;
}
.conteudo-txt p {
    color: var(--roxo);
    font-weight: bold;
    margin-top: 0.5rem;
}
.conteudo-txt li {
    margin-top: 0.5rem;
}
.conteudo-txt li span {
    color: var(--roxo);
    font-weight: bold;
}
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Assistant', sans-serif;
    background: var(--claro);
    text-align: center;
}
footer h2 {
    font-size: 2rem;
    font-weight: bolder;
    font-family: 'Open Sans', sans-serif;
    margin-top: 1rem;
    color: var(--roxo);
}

@media screen and (max-width: 1024px){
    header {
        height: 50vh;
    }
    .infos, .foto {
        height: 70%;
    }
    .infos a {
        width: 70%;
    }
    .aulas-container-conteudo.on {
        height: 47vh;
        top: 120vh;
    }
}
@media screen and (max-width: 912px){
    .paraquem {
        height: 50vh;
    }
    .paraquem-container {
        width: 60%;
    }
    .prof {
        height: 30vh;
    }
    .investimento {
        height: 60vh;
    }
    .aulas-container-conteudo.on {
        height: 50vh;
        top: 100vh;
    }
}
@media screen and (max-width: 768px){
    .infos p, .infos a {
        font-size: 1rem;
    }
    .foto img {
        width: 80%;
    }
    .aulas-container {
        width: 80%;
    }
    .paraquem {
        height: 50vh;
    }
    .investimento {
        height: 60vh;
    }
    .aulas-container-conteudo.on {
        height: 60vh;
    }
}
@media screen and (max-width: 540px){
    header{
        flex-direction: column;
        height: 70vh;
    }
    .infos, .foto {
        align-items: center;
        height: 50%;
        width: 70%;
    }
    .infos p, .infos a {
        text-align: center;
        font-size: 0.8rem;
    }
    .infos a {
        padding: 0.5rem;
    }
    .foto {
        height: auto;
    }
    .paraquem-container {
        width: 70%;
    }
    .aulas-container {
        grid-template-columns: 1fr 1fr;
    }
    .prof-txt {
        width: 80%;
    }
    .investimento {
        height: 100vh;
    }
    .investimento h2 {
        font-size: 1.5rem;
        margin: 0;
    }
    .investimento a{
        width: 80%;
    }
    .valores {
        flex-direction: column;
        gap: 0rem;
    }
    .valores p {
        margin-bottom: 1rem;
    }
    .conteudo {
        width: 60%;
    }
    .aulas-container-conteudo.on {
        top: 130vh;
    }
}
@media screen and (max-width: 393px) {
    .paraquem {
        height: 70vh;
    }
    .aulas-container {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 375px) {
    .paraquem {
        height: 70vh;
    }
    .aulas-container-conteudo.on {
        height: 100vh;
    }
    .prof {
        height: 40vh;
    }
    .investimento {
        height: 110vh;
    }
}
@media screen and (max-width: 280px) {
    .paraquem {
        height: 80vh;
    }
    .prof {
        height: 50vh;
    }
    .investimento {
        height: 110vh;
    }
}