/* #region navbar */
.navbar {
    /* background-color: orange !important; */
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    width: 40%;

    z-index: 99999 !important;
    position: absolute;
    left: 50%;
    top: 3rem;
    transform: translate(-50%, -50%);

    animation: fadein 2s;
}

.navbar::after {
    position: absolute;
    content: '';
    border-bottom: 1px solid #A7ACA9;
    width: 100%;
    transform: translateX(-50%);
    bottom: -25px;
    left: 50%;
}

.navbar .esquerda {
    /* background-color: purple; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navbar .esquerda .logo {
    width: 10rem;
    height: auto;
}

.navbar .direita {
    /* background-color: purple; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    /* white-space: nowrap; */
    color: var(--branco);
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25rem;
    text-align: center;
}

/* #endregion */

/* #region media_queries */
/* hi-res ++ */
@media (max-width:1920px) {
    .navbar {
        /* background-color: orange; */
        width: 65%;
    }

    .navbar .direita {
        font-size: 0.9rem;
    }
}

/* hi-res laptops and desktops */
@media (max-width:1281px) {
    .navbar {
        /* background-color: purple; */
        width: 90%;
    }

    .navbar .esquerda .logo {
        width: 7rem;
        height: auto;
    }

    .navbar .direita {
        font-size: 0.8rem;
        line-height: 1.25rem;
    }
}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {
    .navbar .direita a {
        /* background-color: orange; */
        display: none;
    }

    .navbar .direita .site-botao-pequeno {
        /* background-color: orange !important; */
        font-size: 0.75rem;
        font-weight: 500;
        min-width: fit-content !important;
        padding-left: 1rem;
        padding-right: 1rem;
        border-radius: 0.75rem;
    }
}

/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
@media (max-width:600px) {}

/* smartphones, Android phones, landscape iPhone */
@media (max-width:480px) {}

/* #endregion */

/* #region media_queries_height */
@media (max-height:801px) {
    .navbar {
        /* background-color: purple; */
        top: 2.25rem;
    }
}

/* #endregion */