@media (max-width: 769px) {
    section#corpo {
        display: flex;
        width: 600px;
        height: 550px;
        background-color: white;
        position: relative;
        margin: auto;
        border-radius: 20px;
        box-shadow: 0px 0px 10px rgb(211, 133, 133);
    }

    div#corpoTexto {
        object-fit: contain;
        padding: 25px 15px 10px 15px;
    }

    picture img {
        object-fit: cover;
        border-radius: 20px 0px 0px 20px;
        height: 100%;
    }
}

@media (max-width: 635px) {
    section#corpo {
        display: flex;
        width: 500px;
        height: 550px;
        background-color: white;
        position: relative;
        margin: auto;
        border-radius: 20px;
        box-shadow: 0px 0px 10px rgb(211, 133, 133);
    }

    div#corpoTexto {
        object-fit: contain;
        padding: 25px 15px 10px 10px;
    }
}

@media (max-width: 425px) {
    body {
        width: 100%;
        height: 100vh;
        background-color: hsl(30, 38%, 92%);
        display: grid;
        place-items: center;
        overflow: hidden;
    }

    section#corpo {
        display: flex;
        flex-direction: column;
        height: 605px;
        width: 350px;
        border-radius: 5px;
    }

    picture img {
        border-radius: 5px 5px 0px 0px;
        margin-top: -2px;
    }

    p {
        font-size: 12pt;
        margin-top: 0px;
    }

    div#corpoTexto h1 {
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 20pt;
        width: 280px;
    }

    div#precos {
        margin-top: 15x;
        margin-bottom: 20px;
    }

    div#precos h3 {
        margin-left: -170px;
        margin-bottom: 25px;
    }

    .attribution {
        margin-top: 8px;
    }
}