@media (max-width: 1000px) {
    main {
        margin-right: 8%;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .conteudo-esquerda {
        height: 63vh;
        margin: 5%;
        margin-bottom: 2%;
        display: flex;
        flex-direction: column;
    }

    .texto {
        font-size: 25px;
        width: 100%;
    }
    
    .descriptografar {
        background-color: #ffffff;
    }

    .conteudo-direita {
        width: calc(100% - 10%);
        height: calc(37vh - 12%);
        margin: 0 5%;
        padding: 2% 1.5%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        border-radius: 25px;
        box-shadow: 0 12px 10px -4px #0000003a;
        overflow-y: auto;
        word-wrap: break-word;
    }

    .texto_criptografado {
        display: none;
        width: 100%;
        font-size: 20px;
        color: #000000;
        margin-bottom: 7%;
    }

    .conteudo-direita-itens {
        margin-top: 0;
    }

    .conteudo-direita img {
        display: none;
    }

    .conteudo-direita-mensagem {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 90%;
        text-align: center;
        cursor: default;
        margin-top: 25%
    }
}

@media (max-width: 450px) {
    .texto {
        font-size: 25px;
    }

    .conteudo-esquerda-botoes {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .conteudo-esquerda-botoes-lingua {
        margin: 0 5px;
        margin-bottom: 10px;
    }

    .conteudo-direita {
        margin: 0 5%;
        padding: 5% 5%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 8px 8px -4px #0000003a;
        overflow-y: auto;
        word-wrap: break-word;
        margin-bottom: 3.5%;
    }

    .texto_criptografado {
        display: none;
        width: 100%;
        font-size: 20px;
        color: #000000;
        margin-bottom: 7%;
    }


    .conteudo-direita img {
        display: none;
    }

    .conteudo-direita-mensagem {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 90%;
        text-align: center;
        cursor: default;
        margin-top: 0;
    }
}