@media (max-width: 769px){

    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0 16px;
        margin-top: 0;
        border-radius: 0;
        background: #111;
        border: none;
    }

    .logoEscritorio{
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .logo{
        height: 38px;
    }

    .logo-texto h2{
        font-size: 18px;
        font-weight: 600;
    }

    .logo-texto p{
        font-size: 8px;
        letter-spacing: 2px;
    }

    .linha{
        width: 150px;
        margin: 4px 0;
    }

    .menu-mobile{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        background: transparent;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        flex-shrink: 0;
    }
    .menu{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #111;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all .35s ease;
    }

    .menu.ativo{
        max-height: 300px;
        opacity: 1;
        padding: 25px 0;
    }

    .conteudo{
        max-width: 100%;
        padding: 40px 20px;
        text-align: left;
    }

    .principal h1{
        font-size: 34px;
        line-height: 1.2;
    }

    .principal p{
        max-width: 100%;
        margin: 25px auto;
        font-size: 19px;
        line-height: 1.6;
    }

    .botao{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 35px auto 0;
        padding: 20px 20px;
        font-size: 16px;
    }

    .botao img{
        width: 28px;
    }

    .beneficios{
        display: flex;
        flex-direction: column;
        gap: 55px;
        margin-top: 45px;

    }

    .item{
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        text-align: left;
    }

    .item img{
        width: 55px;
    }

    .item span{
        font-size: 16px;
        line-height: 1.5;
    }

}