/* global */
section h2{
    font-size: 3em;
}
/* header */
header{
    padding-bottom: 200px !important;
}
header h2{
    max-width: 700px;
}
header p{
    max-width: 700px !important;
    margin-bottom: 50px;
}
/* presencial */
.presencial{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.presencial-txt{
    max-width: 600px;
}
.presencial-txt p{
    margin-bottom: 30px;
}
.presencial img{
    max-width: 400px;
    border-radius: var(--radius);
    transform: rotate(-5deg);
    overflow: hidden;
}
/* alunos */
.alunos{
    text-align: center;
    padding: 200px 20px;
}
.alunos h2{
    margin-bottom: 50px;
    color: var(--orange);
}
.alunos-video-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.alunos-video-container video{
    height: 90vh;
    width: min-content;
    border-radius: var(--radius);
    transition: .2s;
}
.alunos-video-container video:hover{
    transform: scale(1.1);
}
/* local */
.local p{
    margin-bottom: 30px;
}
.local iframe{
    border-radius: var(--radius);
}
/* free */
.free{
    padding: 200px 20px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.free p{
    max-width: 500px;
    margin-bottom: 40px;
}
.free img{
    max-width: 300px;
    animation: rocket 10s infinite ease-in;
    filter: drop-shadow(2px 2px 0 black);
}
@keyframes rocket {
    0%{transform: scale(1); filter: drop-shadow(2px 2px 0 black);}
    25%{transform: scale(.9); filter: drop-shadow(2px 1px 0 black);}
    40%{transform: scale(1.1); filter: drop-shadow(2px 8px 0 black);}
    70%{transform: scale(.9); filter: drop-shadow(2px 1px 0 black);}
    80%{transform: scale(1.1); filter: drop-shadow(2px 8px 0 black);}
    100%{transform: scale(1); filter: drop-shadow(2px 2px 0 black);}
}
/* completos */
.completos{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.completos-txt{
    max-width: 800px;
}
.completos{
    text-align: center;
}
.completos-titulo{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.completos-titulo img{
    width: 50px;
    transform: rotate(220deg);
}
.completos-img h3{
    font-size: 1.5em;
    color: var(--red);
    font-weight: 400;
}
.completos img{
    max-width: 200px;
    margin: 5px;
    border-radius: var(--radius);
}
/* mobile */
@media screen and (max-width: 350px){
    .alunos-video-container video{
        width: 100%;
        height: auto;
    }
}