.destaque{
    background-image: url("../imagens/capas_internas/evento.jpg");
    background-position: center;
    background-size: cover;
}
.conteudo{
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}
div.evento{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
    gap: 1em;
}
.evento_texto{
    display: flex;
    flex-direction: column;
    max-width: 580px;
    gap: 2em;
    font-size: 1.8rem;
    line-height: 2.5rem;
}
.imagem_destaque img{
    max-height: 400px;
}
@media screen and (max-width: 1200px){
    div.evento{
        display: flex;
        flex-direction: column;
        gap: 2em;
        align-items: flex-start;
    }
}
@media screen and (max-width: 800px){
    .imagem_destaque img{
        width: 400px;
    }
}
@media screen and (max-width: 450px){
    .imagem_destaque img{
        width: 360px;
    }
}
@media screen and (max-width: 385px){
    .imagem_destaque img{
        width: 300px;
    }
}