@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#topBar {
    font-family: "Roboto", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 55;
    background-color: hsl(var(--foreground));
    color: #fff;
    transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
    border-bottom: 1px color-mix(in oklab, var(--color-white) 10%, transparent) solid;
}

body.scrolled-topbar #topBar {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
}

.topBarContent {
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    height: 40px;
    padding-left: 32px;
    padding-right: 32px;
    max-width: 80rem;
    margin: auto;
}

.topBarItens {
    display: flex; 
    align-items: center; 
    gap: 24px;
    min-width: 0px;
}

.topBarItensAction {
    display: flex; 
    align-items: center; 
    gap: 12px;
}

.topBarLink {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 500;
    transition: all .2s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.topBarLink:hover {
    color: #ffffff;
}

.topBarIcon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #A7F3D0;
    font-size: 14px;
    flex-shrink: 0;
}

.topBarAction {
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 600;
    transition: all .2s ease;
    text-decoration: none;
}

.topBarAction ion-icon {
    font-size: 15px;
}

.topBarAction:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

.topBarIntranet {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.topBarIntranet:hover {
    background: #10B981;
    color: #ffffff;
}

/* NAV */
#siteHeader {
    position: fixed;
    top: 40px;
    left: 0px;
    right: 0px;
    z-index: 50;
}

#siteHeader {
    transition: top .28s ease, background-color .28s ease, box-shadow .28s ease;
}

#siteHeader.header-scrolled {
    top: 0 !important;
}

#siteHeader.header-scrolled #navBox {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

#siteHeader.header-scrolled .navItem {
    color: #334155;
}

#siteHeader.header-scrolled .nav-text, #siteHeader.header-scrolled .nav-subtext {
    color: #334155;
}

#siteHeader.header-scrolled .navItem:hover {
    color: #047857;
    background: #ecfdf5;
}

#siteHeader.header-scrolled .nav-brand-title {
    color: #0f172a;
}

#siteHeader.header-scrolled .nav-brand-sub {
    color: #64748b;
}

#siteHeader.header-scrolled .nav-action-secondary {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #334155;
}

#siteHeader.header-scrolled #btnMobileMenu {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #0f172a;
}


/* Monitores ultrawide ou 2K - xl + */
/* @media (min-width: 1920px) {
    .hero-title {
        font-size: 72px;
    }
} */

.mapa-container {
    position: relative;
}

.mapa-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* Notebook - lg*/
@media (max-width: 1366px) {
    .textContent h1, .textContent p, .textContent .heroButtons, .textContent .badgeText {
        margin-left: 49px;
    }

    .heroArrow {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }

    .navContent {
        height: 64px;
    }

    .textContent {
        padding-top: 46px;
    }

    .heroText {
        font-size: 34px;
    }

    .heroSubText {
        
    }
}


@media (max-width: 800px) {
    .textContent {
        width: 90%;;
    }

}
