h1 {
    margin-bottom: 10px;
}

.container {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.lista-eventos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

}

.item-eventos {
    display: flex;
    flex-direction: row;
    border: 1px solid #dedede;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 20px;
    gap: 20px;
    width: 49%;
}

.container-foto {
    display: flex;
}

.container-foto img {
    width: 100px;
    height: 100px;
    flex-direction: column;
    align-self: center;
    padding-left: 10px;
}

.item-eventos .titulo {
    display: flex;
    flex-direction: column;
}

.lista-eventos .item-eventos .titulo p {
    line-height: 1.5;
    margin: 0 0;
}

.item-eventos .titulo span {
    font-style: normal;
}

.titulo a {
    color: #009468;
    font-weight: bold;
}

.coluna {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

input[type=text] {
    height: 30px;
    padding: 4px;
    border: 1px solid #dedede;
    width: 200px;
}

input[type=text], input[type=datetime-local], input[type=email], input[type=date], input[list], select {
    height: 40px;
    border: 1px solid #dedede;
    padding: 10px;
    border-radius: 5px;
}

textarea {
    resize: none;
    border-radius: 5px;
    border: 1px solid #dedede;
    padding: 10px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #009468;
    outline: none;
}

label {
    margin-bottom: 4px;
}

.captcha {
    padding-top: 10px;
    padding-bottom: 15px;
    width: 50%
}

@media (max-width: 764px) {
    .captcha {
        width: 100%;
    }

    .item-eventos {
        width: 100%;
        flex-wrap: wrap;
    }
}