* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #EBEBEB !important;
}

header {
    width: 100%;
    height: 100px;
    background-color: #000000 !important;
    display: flex;
    flex-direction: row;
}

.header-content-left {
    width: 50%;
    height: inherit;
    background-color: #42A7FD;
    border-top: 1px solid #042433;
    border-left: 1px solid #042433;
    border-bottom: 1px solid #042433;
}

.header-content-right {
    width: 50%;
    height: inherit;
    background-color: white;
    border-top: 1px solid #042433;
    border-left: 1px solid #042433;
    border-bottom: 1px solid #042433;
    border-right: 1px solid #042433;
}

.logo-header {
    display: flex;
    align-items: center;
    width: 100px;
    height: 100px;
}

.logo-header img{
    width: 50%;
    height: 50%;
}

.buttons-navigation {
    display: none;
    height: 100px;
    list-style-type: none;
    display: none;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.nav-item button {
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid #042433;
    color: #42A7FD;
    margin: 5px;
    width: 150px;
}

.nav-item button:hover,
#active {
    background-color: #42A7FD;
    color: #ffffff;
}


/* MENU HAMBURGUER: */

.menu-hamburguer {
    height: 100px;
    display: none;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    color: #42A7FD;
    font-size: 40px;
    cursor: pointer;
}

.menu-hamburguer-options {
    width: 100%;
    display: none;
}

.menu-hamburguer-options {
    position: relative;
    z-index: 1000;
}

.menu-hamburguer-options li {
    list-style-type: none;
}

.menu-hamburguer-option {
    width: 100%;
    background-color: #60b0f6;
    color: white;
    text-align: center;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: bold;
    border-bottom: 1px solid #042433;
    border-left: 1px solid #042433;
    border-right: 1px solid #042433;
}

.menu-hamburguer-option:hover {
    background-color: #2e7dc2;
}

/* Estilos para telas pequenas */
@media (max-width: 575.98px) {

    .header-content-left {
        padding-left: 20px;
    }

    .header-content-right {
        padding-right: 20px;
    }

    .menu-hamburguer {
        display: flex;
    }

}

/* Estilos para telas médias */
@media (min-width: 576px) and (max-width: 767.98px) {

   .header-content-left {
        padding-left: 50px;
    }

    .header-content-right {
        padding-right: 50px;
    }

    .menu-hamburguer {
        display: flex;
    }

}

/* Estilos para telas grandes */
@media (min-width: 768px) and (max-width: 991.98px) {

    .header-content-left {
        padding-left: 100px;
    }

    .header-content-right {
        padding-right: 100px;
    }

    .menu-hamburguer {
        display: flex;
    }

}

/* Estilos para telas extra grandes */
@media (min-width: 992px) and (max-width: 1199.98px) {
   
    .header-content-left {
        padding-left: 100px;
    }

    .header-content-right {
        padding-right: 100px;
    }

    .menu-hamburguer {
        display: flex;
    }

}

/* Estilos para telas ultra grandes */
@media (min-width: 1200px) {
   
    .header-content-left {
        padding-left: 100px;
    }

    .header-content-right {
        padding-right: 100px;
    }

    .buttons-navigation {
        display: flex;
    }

}