

/* **************************************box que guarda o conteúdo de fotos (Pinterest)*/


.container_postagens {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80vw;
    background-color: var(--cor_branca);
    margin: 0 auto;
    min-height:50vh;
}

.gallery {
    columns: 4 20vw;
    column-gap: 0.3vw;
    margin: 0.3vw;
}

.gallery-item img {
    width: 100%;
    height: auto;
    margin-bottom: 0.3vw;
    display: block;
    position: relative;
    break-inside: avoid;
}


.box_imagem {
    margin-bottom: 0;
    position: relative;
    margin: 0;
}





#foto_marcada a {
    color: var(--cor_principal);
    background-color: var(--cor_principal_transparencia);
}

.linha_seletor_headerprincipal a:hover {
    color: var(--cor_principal);
    background-color: var(--cor_principal_transparencia);
}


.linha_seletor a:hover {
    color: var(--cor_principal);
    background-color: var(--cor_principal_transparencia);
}

/* ****************************Responsividade************************ */
    @media only screen and (max-width: 1024px) {

        .gallery {
            columns: 3 20vw;
            column-gap: 0.3vw;
            margin: 0.3vw;
        }

        .container_postagens {
            width: 90vw;
        }
    }

    @media only screen and (max-width: 768px) {

        .gallery {
            columns: 3 20vw;
            column-gap: 0.3vw;
            margin: 0.3vw;
        }

        .container_postagens {
            width: 90vw;
        }
    }

    @media only screen and (max-width: 480px) {

        .gallery {
            columns: 2 20vw;
            column-gap: 0.3vw;
            margin: 0.3vw;
        }

        .container_postagens {
            width: 90vw;
        }
    }






