@media (max-width:1500px){
    body{
        padding: 0 40px;
    }
}

@media (max-width:768px){
    .info{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info .descricao{
        width: 60%;
        text-align: center;
    }
}

@media (max-width:415px){
    .info .logo{
        max-width: 300px;
    }

    .info .descricao{
        width: 100%;
    }

    .menu-lateral{
        position: static;
        min-height: auto;
        width: 100%;
        margin-top: 50px;
    }

    .menu-lateral ul{
        flex-direction: row;
    }

    .content{
        min-height: 70vh;
        gap: 50px;
    }

    body{
        padding: 40px;
    }
}