@media (max-width: 600px) {

    #bg-video{
        display: none;
    }

    body {
        background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 100%);
    }

    #cabecalho {
        padding: 20px;
    }

    #cabecalho #img-logo {
        width: 60px;
    }

    #cabecalho #menu li a  {
        font-size: 18px;
    }

    #img-titulo, #img-personagens  {
        width: 70%;
    }

    #container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: auto;
        gap: 15px;
    }

    #container section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #sinopse {
        font-size: 14px;
    }

    #container #btn-trailer {
        font-size: 14px;
        width: 160px;
        height: 30px;
    }
}

@media (min-width: 600px) and (max-width: 1199px) {
    
    #bg-video{
        display: none;
    }

    body {
        background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 100%);
    }

    #cabecalho {
        padding: 40px;
    }

    #cabecalho #img-logo {
        width: 70px;
    }

    #cabecalho #menu li a  {
        font-size: 20px;
    }

    #img-titulo, #img-personagens  {
        width: 80%;
    }

    #container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: auto;
        gap: 30px;
    }

    #container section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #sinopse {
        font-size: 16px;
    }

    #container #btn-trailer {
        font-size: 16px;
        width: 180px;
        height: 40px;
    }
}