header {
    position: relative;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 16vh;
    background-color: #f88d2f;
    padding: 0 1rem;
    position: fixed;
    transition: .5s;
    z-index: 50;
    padding: 0px 8vw;
}

.espaco_logo img {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Menu móvel */
.menu {
    display: flex;
    align-items: center;
    height: 100%;
    width: 80vw;
    justify-content: flex-end;
    white-space: nowrap
}

.menu ul {
    display: flex;
    list-style: none;
    min-width: 80%;
    gap: 2%;
}

.menu ul li{
    justify-content: center;
    display: flex;
}

.menu ul li a {
    text-decoration: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #ffffff;
    
    
}

.redes-sociais{
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding-bottom: 10px;
}

.redes-sociais i{
    color: #ffffff;
    scale: 1.1;
}

#segundaVia{
    all: unset;
    background-color: #355583;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: .8rem;
}


@media (max-width: 800px) {
    .hamburger {
        display: flex; /* Exibe o botão no mobile */
    }

    .hamburger.open{
        transform: translateX(86%);
    }


    header {
        width: 85%;
    }

    .espaco_logo img {
        width: 100%;
    }

    nav.menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: #f88d2f;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 5;
    }


    nav.menu.active {
        transform: translateY(0);
    }

    nav.menu ul {
        flex-direction: column;
        gap: 20px;
        width: auto;
    }

    .redes-sociais{
        padding-top: 30px;
    }

}

@media (max-width: 1100px) {
    
    .espaco_logo {
        width: 40%;
    }

    nav.menu ul li a{
        font-size: .9rem;
    }

    .menu2{
        margin-left: 20px;
    }
}

