#performance,
#depoimentos,
#cursos,
#projetos,
#sobre {
    padding: 40px 0;
}

header {
    overflow: hidden;
    background-color: var(--roxo);
    color: #fff;
}

header .is-invalid {
    color: red;
}

header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header h1 {
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width:768px) {
    header h1 {
        font-size: 1.6rem;
    }
}

header .textos {
    padding: 40px;
}

header form {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
}

header form button {
    width: 100%;
    border: none;
    background-color: #25d366;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 10px 20px;
    color: #ffff;
}

/* SOBRE */
#sobre p {
    text-align: justify;
}

#sobre .fotos img {
    width: 45%;
    display: inline-block;
}

@media (max-width: 768px) {
    #sobre h2 {
        margin-top: 20px;
    }
}

/* PROJETOS */
#projetos {
    background-color: #f7f7f7;
}

#projetos img,
#projetos .videos video {
    width: 45%;
    max-height: 300px;
}

@media (max-width: 768px) {

    #projetos .videos video {
        width: 100%;

    }

}

/* FORMAÇÃO */
#formacao {
    background-color: var(--roxo);
    overflow: hidden;
    color: #fff;
}

#formacao p {
    text-align: justify;
}

#formacao h2 {
    color: #fff;
}

#formacao .textos {
    padding: 40px;
}

/* CURSOS */
#cursos {
    background-color: #f7f7f7;
}

#cursos .area-aulas {
    display: flex;
    justify-content: center;
    align-items: center;
}

#cursos .area-aulas .card-aulas {
    position: relative;
    width: 30%;
    margin: 5px;
    overflow: hidden;
}

#cursos .area-aulas .card-aulas img {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 992px) {
    #cursos .area-aulas {
        flex-wrap: wrap;
    }

    #cursos .area-aulas .card-aulas {
        width: 45%;
    }
}

@media (max-width: 768px) {
    #cursos .area-aulas .card-aulas {
        width: 100%;
    }

    #cursos .area-aulas .card-aulas img {
        height: 350px;
    }
}

#cursos .area-aulas .card-aulas .content {
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: top;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    background-color: #190543;
    padding: 20px;
    text-align: center;
    color: #fff;
    transition: all .4s;
}

#cursos .area-aulas .card-aulas .content p {
    opacity: 0;
}

#cursos .area-aulas .card-aulas .content h3 {
    font-size: 1rem;
    margin-top: 20px;
}

#cursos .area-aulas .card-aulas .content .cta {
    transition: all .3s;
    opacity: 0;
}

#cursos .area-aulas .card-aulas:hover>.content {
    border-radius: 0;
    top: 0;
}

#cursos .area-aulas .card-aulas:hover>.content p {
    opacity: 1;
}

#cursos .area-aulas .card-aulas:hover>.content .cta {
    opacity: 1;
}

#cursos .area-aulas .card-aulas .content .cta a {
    background-color: #25d366;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    transition: all .3s;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
}

#cursos .area-aulas .card-aulas .content .cta a:hover {
    color: #fff;
}

/* CHAMADA */
#chamada {
    padding: 100px 0;
    background-color: var(--roxo);
    color: #fff;
    text-align: center;
}

#chamada h2 {
    color: #fff;
}

/* CHAMADA2 */
#chamada2 {
    padding: 100px 0;
    text-align: center;
}

.cover {
    object-fit: cover;
}

/* DEPOIMENTOS */
#depoimentos{
    background-color: var(--roxo);
}
#depoimentos h2{
    color: #fff;
    margin-bottom: 20px;
}
#depoimentos p {
    text-align: justify;
}

#depoimentos img {
    width: 100%;
}

#performance img{
    width: 45%;
    display: inline-block;
    margin-bottom: 10px;
}