.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    color: var(--dark-blue);
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    height: 70px;
}

.header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header .container img{
    height: 30px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: bold;
}

.header-actions .standard-button {
    box-shadow: none;
    text-decoration: none;
    position: absolute;
    cursor: pointer;
    top: 0.5rem;
}

.btn.entrar{
    background-color: var(--white);
    font-weight: bold;
    font-size: 15px;
    color: var(--orange);
    right: 12rem;
    top: 1.5rem;
}

.header .standard-button{
    right: 2rem;
}

.standard-button:hover{
    background-color: #ca5100;
}

.btn.entrar:hover{
    color: #ca5100;
}