/*Medias Queries*/

@media screen and (min-width: 700px) {
    footer {
        grid-template-rows: 150px 1fr;
    }

    #rodape {
        grid-template-columns: 0.6fr;
    }
}

@media screen and (min-width: 1024px) {

    main #intro div {
        grid-template-columns: minmax(200px, 900px);
    }

    main #intro div p {
        justify-self: center;
        font-size: 1.2em;
    }

    main #dados-relevantes {
        display: grid;
        grid-template-columns: repeat(2, 0.25fr);
        grid-template-rows: minmax(200px, 1fr);
        justify-content: space-evenly;
        align-items: center;
    }

    #dados-relevantes #titulo-maior {
        font-size: 6em;
    }

    #dados-relevantes h2 {
        font-size: 6em;
        text-align: left;
    }

    .texto-com-imagem {
        row-gap: 100px;
    }

    .texto-com-imagem section {
        display: grid;
        grid-template-columns: repeat(2, 0.4fr);
        grid-template-rows: 1fr;
        justify-content: space-evenly;
        align-content: center;
    }

    .texto-com-imagem section article {
        align-content: center;
        row-gap: 20px;
        text-align: left;
    }

    .texto-com-imagem section article p {
        font-size: 1.1em;
    }

    .texto-com-imagem section article h2 {
        font-size: 3em;
        text-align: left;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    footer {
        grid-template-rows: 200px 1fr;
    }

    footer #bg-footer {
        background: url(../images/bg-footer-top-desktop.svg) bottom right no-repeat;
        background-size: contain;
    }

    #rodape {
        background: var(--cor4);
        display: grid;
        grid-template-columns: 0.4fr 0.3fr;
        grid-template-rows: repeat(2, (minmax(200px, 1fr)));
        justify-content: space-evenly;
        font-size: 1em;
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 1800px) {

    footer {
        grid-template-rows: 300px 1fr;
    }
    footer #bg-footer {
        background: url(../images/bg-footer-top-desktop.svg) bottom right no-repeat;
        background-size: contain;
    }
}