
.blogCabecalho{
    background-color: var(--vermelho);
    color: white;
    padding: 2rem;
    text-align: center;
}

.blogCorpo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    padding: 2rem 7rem;
}
.blogCorpo{
    font-size: 1.2rem;
}

.blogBanner{
    margin-top: 1rem;
    object-fit: cover;
}

.blogRegistros{
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2rem 3rem 2rem;

}

.blogRegistro{
    width: 21rem; 
    height: 21rem;
    object-fit: cover;
    border: solid 1px;
    border-radius: 0.4rem;
    border-color: var(--vermelho);
    transition: 150ms ease-in-out;
    padding-bottom: -1rem;
}
.blogRegistro:hover{
    width: 22rem; 
    cursor: pointer;
}

.eventos-controls{
    top: 80%;
}






.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 60%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: var(--vermelho);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}



.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


@media (width <=1150px) {
    .blogCorpo p{
        font-size: 1.5rem;
    }
    
   div.blogCorpo{
    flex-direction: column;
   } 
   div.imagem{
    align-items: center;
   }
   img.blogBanner{
    margin-top: 0;
   }
   .blogRegistro{
    width: 13rem;
    height: 13rem;
   }
}

@media (width <=760px) {
    div.blogCorpo{
        flex-direction: column;
        padding: 3rem;
       } 

    div.blogRegistros{
        flex-direction: column;
    }
    .blogRegistro{
        width: 100%;
        height: 13rem;
       }
}


@media (width <=375px) {
    div.blogCorpo{
        flex-direction: column;
        padding: 1.5rem;
       } 
    img.blogBanner{
        width: 12rem;
        height: 12rem;
    }
}