main {
    background: linear-gradient(to bottom, var(--main-brand), var(--aux-brand)); 
    display: flex;
    flex-direction: column;
}

.cursos-banner,
.pesquisa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pesquisa-container {
    text-align: center;
    gap: 1.5em;
    margin-top: 2em;
}

.pesquisa {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    color: var(--highlight);
    border: 1px solid var(--aux-brand);
    padding: 15px;
    border-radius: 50px;
    background: var(--glass-gradient);
}

.pesquisa input {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 1em;
    color: var(--highlight);
}

.pesquisa input:focus {
    outline: none;
    border-color: var(--highlight);
    background-color: transparent;
}

.pesquisa input::placeholder {
    color: var(--highlight);
}

.filtros {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5em;
}

.filtros>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.filtros>div h3 {
    align-self: center;
    color: var(--highlight);
    margin-bottom: 0.25em;
    font-size: 1em;
    font-weight: normal;
}

.filtros select {
    border: 1px solid var(--aux-brand);
    color: var(--highlight);
    padding: 0.5em;
    border-radius: 50px;
    background: var(--glass-gradient);
}

.filtros select:focus {
    outline: none;
    border-color: var(--highlight);
}

.filtros select option {
    background-color: var(--aux-brand);
    color: var(--main-text);
}

.cursos-banner~section {
    margin: 2em;
}

.card-container {
    justify-content: center !important;
}