@media only screen and (max-width: 767px){
    body {
        overflow-x: hidden;
    }
    header {
        flex-direction: column;
        justify-content: space-evenly;
        & .logo{
            margin-top: 20px;
            margin-bottom: 10px;
            max-width: 98%;
        }
        & .navegacao{
            width: 100%;
            max-width: 600px;
            & a{
                font-weight: 400;
            }
        }
    }
    .caixa-central{
        display: flex;
        justify-content: center;
        width: 100dvw;
        & img.frase-efeito{
            max-width: 95%;
        }
    }
    section{
        & .secao-campeoes{
            & h1{
                margin: 50px 0px;
                font-size: 3em;
                & span{
                    display: none;
                }
            }
            & .aba-campeoes{
                display: flex;
                flex-direction: column;
                & .content-campeao{
                    width: 90vw;
                    display: flex;
                    flex-direction: column;
                    min-height: 600px;
                    & article{
                        padding: 5px;
                        align-items: center;
                        text-align: center;
                            & h4{
                                font-size: 3em;
                            }
                            & h5{
                                font-size: 2em;
                            }
                            & p{
                                font-size: 20px;
                                width: 100%;
                            }
                        & img{
                            max-width: none;
                        }
                }
                }
            }
        }
    }
    .comece-hoje{
        padding: 15px;
        & .secao-iframe{
            display: flex;
            flex-direction: column;
            width: 100dvw;
            & article{
                min-width: 300px;
                margin-bottom: 20px;
            }
            & iframe{
                width: 100%;
                align-self: center;
            }
        }
    }
    footer{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        & div{
            margin: 35px 0;
            & img{
                margin: 10px;
            }
            & p{
                max-width: 360px;
            }
        }
        & .creditos {
            & .insta-credito{
                display: none;
            }
            & h6{
            font-size: 24px;
            padding: 5px;
            }
        }
        & .redes-sociais{
            margin-bottom: 10px;
        }
    }
}