/* Cabeçalho da página*/
header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 1vh;
    padding-bottom: 1vh;
    width: 100%;
    background-color: #D3EDF3;
    z-index: 1000; /* barra de navegação fica sobre os outros conteúdos */
    transition: background-color 0.5s ease;
}

/* Corpo da página*/
body {
    margin: 0;
    background-color: #D3EDF3 ;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px 0 20px;
}

/* Barra de pesquisa*/
.search-container {
    position: relative;
    width: 30vh;
}

.search-bar-icon {
    height: 3vh;
    width: 3vh;
}

.input-container {
    display: flex;
    align-items: center;
    border: 2.5px solid #000000;
    border-radius: 5px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.62);
}

.input-container input {
    background-color: transparent;
    border: none;
    outline: none;
}

/*Opções da barra superior de navegação*/
.nav-options {
    list-style: none;  
    padding: 0;        
    margin: 0;         
    display: flex;     
    justify-content: center; 
    gap: 20px;         
}

.nav-options a {
    text-decoration: none; 
    color: black;
    
    font-family: 'Roboto', sans-serif;
    font-size: 20px; 
    padding: 10px; 
}

.nav-options2 {
    list-style: none;  
    padding: 0;        
    margin: 0 auto;         
    display: flex;     
    justify-content: center; 
    gap: 20px;         
}

.nav-options2 a {
    text-decoration: none; 
    color: black;
    
    font-family: 'Roboto', sans-serif;
    font-size: 20px; 
    padding: 10px; 
}

/*botão de login*/
#login-button {
    background-color: #033652;
    width: 25vh;
    height: 0.5vh;
    border-radius: 5px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 15px;
}

@media (max-width: 590px) {
    .nav-bar {
        flex-direction: column;
    }

    .search-container, .nav-options {
        margin-bottom: 20px;
    }
}