* {
    font-family: Work Sans, sans-serif;
}
body {
    background-color: #06151a;
}
body {
    margin: 0;
}
header {
    background-color: #06151a;
    padding: 32px;
    display: flex;
    justify-content: center;
}
.container {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
}
.eventos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.banner {
    background: linear-gradient(180deg, #17e4b9, #091d24);
    display: flex;
    justify-content: center;
}
.banner img {
    max-width: 90%;
}
.form-evento {
    background-color: #212121;
    padding: 32px 28px;
    border-radius: 16px;
    width: 384px;
    max-width: 90%;
    margin: 64px auto;
}
.campos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.acoes {
    margin-top: 32px;
    text-align: center;
}
.titulo-form {
    font-weight: 400;
    font-size: 20px;
    line-height: 125%;
    color: #fff;
}
.campo-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: none;
    padding: 0;
    margin: 0;
}
.label {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
}
.campo-entrada-form {
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid #4a4949;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
    padding: 8px 16px;
}
.campo-entrada-form[type="date"],
.campo-entrada-form::placeholder {
    color: #4a4949;
}
.lista-suspensa-form {
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid #4a4949;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #4a4949;
    padding: 8px 16px;
    text-transform: capitalize;
}
.lista-suspensa-form:placeholder {
    color: #4a4949;
}
.botao {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #212121;
    background-color: #17d9b1;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
}
.botao:hover {
    opacity: 0.8;
    cursor: pointer;
}
.titulo-tema {
    color: #fff;
    font-family: Orbitron, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 10%;
    text-transform: uppercase;
}
.card-evento {
    color: #fff;
    background-color: #212121;
    display: flex;
    flex-direction: column;
    width: 282px;
}
.card-evento p,
.card-evento h4 {
    margin: 0;
}
.card-evento .corpo {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}
.card-evento .tag {
    background-color: #494949;
    border-radius: 4px;
    padding: 8px;
    font-family: Orbitron, sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 120%;
    letter-spacing: 10%;
    text-transform: uppercase;
}
.card-evento .data {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
}
.card-evento .titulo {
    font-family: Orbitron, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 125%;
}
