main {
    font-family: 'Inter', sans-serif;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1.25rem;
    margin-bottom: 2.2rem;
    background-color: #EAEAED;
}

.lado-esquerdo-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 4rem;
    width: 29rem;
    color: #1A1A23;
}

.lado-esquerdo-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A1A23;
    padding-bottom: 1rem;
}

.lado-esquerdo-hero h2 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.lado-direito-hero {
    height: 14rem;
    background-position: center center;
    background-size: cover;
    background-blend-mode: saturation;
}

.lista-de-postagem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 1.25rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    margin: 0rem 4rem 2rem;
}

.postagem {
    display: flex;
    background: #FAFAFC;
    box-shadow: 0rem 0rem 0.313rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    padding: 0.87rem 1rem;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.postagem:hover {
    border: -0.063rem solid #AAAAAF;
    filter: drop-shadow(0rem 0rem 0.15rem rgba(0, 0, 0, 0.6));
    border-radius: 0.25rem;
}

.postagem img {
    width: 12.5rem;
    height: 10rem;
    border-radius: 0.3rem;
}

.sobre-a-postagem {
    display: flex;
    flex-direction: column;
    margin-left: 1.5rem;
}

.sobre-a-postagem h5 {
    color: #1A1A23;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.81rem;
    margin-bottom: 0.5rem;
}

.sobre-a-postagem h6 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.18rem;
    margin-bottom: 0.5rem;
}

.sobre-a-postagem p {
    color: #AAAAAF;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.18;
}

.nav-paginas{
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.container-paginas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0.1rem solid #AAAAAF;
    border-radius: 0.2rem;
    font-size: 0.95rem;
    height: 2.5rem;
    margin: 0.7rem 0.8rem;
}

.anterior, .proximo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container-paginas img {
    width: auto;
    height: auto;
    padding-inline: 0.7rem;
}

.container-paginas p {
    padding: 0.75rem 0.8rem;
}

.pagina:hover, .proximo:hover {
    border: 0.1rem solid #1A1A23;
    margin-inline: -0.08rem;
    cursor: pointer;
}

.anterior p {
    color: #AAAAAF;
    padding-left: 0;
}

.proximo p {
    padding-right: 0;
}

@media (max-width: 1366px) {
    html {
        font-size: 94.86% !important;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 88.89% !important;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 71.11% !important;
    }
}

@media (max-width: 800px) {
    html {
        font-size: 55.56% !important;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .lado-esquerdo-hero {
        grid-row-start: 1;
        margin-left: 0;
        padding: 6rem 2rem;
        width: auto;
    }

    .lado-esquerdo-hero h1 {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .lado-esquerdo-hero h2 {
        font-size: clamp(1rem, 4.7vw, 2.2rem);
        line-height: 1.8rem;
    }

    .lista-de-postagem {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: 1.25rem;
        grid-row-gap: 2rem;
        margin: 0rem 2rem 10rem;
    }

    /* .postagem {
        
    } */

    .postagem img {
        width: 14.5rem;
        height: 13rem;
    }

    .sobre-a-postagem h5 {
        font-size: clamp(2.1rem, 4.2vw, 2.2rem);
        line-height: 1.9rem;
    }

    .sobre-a-postagem h6 {
        font-size: clamp(1.6rem, 3.2vw, 1.8rem);
        line-height: 1.6rem;
    }

    .sobre-a-postagem p {
        font-size: 1.5rem;
    }

    .container-paginas {
        font-size: 1.5rem;
        height: 3rem;
    }

}