/*header{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    vertical-align: middle;
    width: 100vw;
    height: 20vh;
}
*/
.logo {
    display: flex;
    width: 100%;
    height: 90%;
    background-image: url("../imgs/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; /* left top */
}
.customHeader h1 {
    font-weight: 700;
    text-align: center; /* Alinha o texto ao centro */
    letter-spacing: 0.4rem; /* Espaçamento entre letras */
    -webkit-text-stroke-width: 2px; /* Largura da borda */
    -webkit-text-stroke-color: #222831; /* Cor da borda */
}


main{
    box-sizing: border-box;
    margin-top: 10px;
    height: 80vh;
    overflow-y: scroll;
}

/* MAIN CONTAINER */
.main-container{
    display: flex; /* Usa Flexbox para layout */
    flex-direction: column; /* Alinha os itens na vertical */
    width: 100%;
    height: 95%;
    align-items: center; /* Centraliza os itens horizontalmente */
    justify-content: flex-start; /* posiciona os itens verticalmente */
    padding-top: 20px;
}

/* Estiliza a caixa de resultados da pesquisa */
.formats {
    display: flex;
    flex-direction: column; /* Alinha os itens na vertical */
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
    width: 100%; /* Largura máxima da caixa de resultados */
    margin: 10px; /* Espaçamento acima da caixa de resultados */
    padding: 10px; /* Espaçamento interno */
    text-align: center;
}
.formats h2{
    font-size: 1.5rem; /* Tamanho da fonte */
    margin: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F00;
}
.formats div {
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: space-around;
    margin: 20px auto;
    padding: 5px;
    border: none;
    text-align: center;
    flex: 1; /* Faz com que cada div ocupe o mesmo espaço */
    width: 80%;
}
.formats .btn {
    display: none;
    background-color: #333255; /* Cor para o botão selecionado */
    color: white;
}
.formats .btn, .formato-option select {
    width: 100%;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.25rem; /* Tamanho da fonte */
    padding: 5px;
}
.formato-option select {
    font-size: 1rem; /* Tamanho da fonte */
}
.formats .btn:hover, .formato-option select:hover {
    background-color: #fddebb;
}
.formats hr{
    border: 1px solid darkred;
    width: 90%;
}

/* Estiliza o botão de START */
.form-formatos .submit{
    height: 100%;
    justify-content: center;
    display: none;
}
.form-formatos .submit button {
    width: 50%;
    padding: 10px; /* Espaçamento interno */
    border: none;
    border-radius: 15px; /* Borda arredondada */
    background-color: #30475E; /* Cor de fundo do botão */
    color: #F5F7F8; /* Cor do texto do botão */
    font-size: 1rem; /* Tamanho da fonte */
    cursor: pointer; /* Muda o cursor para indicar que é clicável */
    align-items: center;
}
/* Adiciona efeito hover ao botão de pesquisa */
.form-formatos .submit button:hover {
    background-color: darkred; /* Muda a cor de fundo ao passar o mouse */
}