header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
    background-color: #ffffff;

    transition: transform 0.3s ease;
}

/* estado escondido */
.header-hidden {
    transform: translateY(-100%);
}


body {
    font-family: 'opensans', sans-serif;
    padding-top: var(--header-height);
}

/* fonte */

.open-sans-regular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-condensed-regular {
    font-family: "Open Sans Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 75;
}

/* <nav> */

#nav-image {
    height: 46px;
}

#app-nav-component {
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-top: 2px solid #163B26;
    margin-bottom: 2px solid #163B26;
}

#nav-list {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1fr;
    justify-content: center;
}

@media (min-width:700px) {

    #menu,
    #menuopen {
        display: none;
    }
}

#menuopen,
#menuclose {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

@media (max-width:699px) {
    #nav-list {
        display: none;
    }

    #menu {
        background-color: #f8f9fa;

        position: fixed;
        top: 0;
        left: 0;

        width: min(75%, 320px);
        height: 100%;

        padding: 20px;

        display: flex;
        flex-direction: column;
        gap: 20px;

        transform: translateX(-100%);

        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;

        transition: transform 0.3s ease;
    }

    #app-nav-component {
        justify-content: space-between;
    }
}

#app-nav-component a {
    color: #000000;
    text-decoration: none;
    font-family: 'open-sans-condensed-regular', sans-serif;
    font-size: 22x;
    padding: 10px 25px;
    border-radius: 10px;
}

#app-nav-component a:hover {
    background-color: #e2e6ea;
    color: #000000;
    transition: background-color 0.3s, color 0.3s;
}

#app-nav-component a.active {
    color: #ffffff;
    background-color: #155421;
    font-weight: 600;
}

#app-nav-component a.active:hover {
    background-color: #19692c;
}

#menu-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

#menu-list a {
    display: block;
    padding: 12px 20px;

    font-family: 'open-sans-condensed-regular', sans-serif;
    font-size: 22px;

    color: #000;
    text-decoration: none;

    border-radius: 10px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

#menu-list a:hover {
    background-color: #e2e6ea;
}

#menu-list a.active {
    background-color: #155421;
    color: #fff;
    font-weight: 600;
}

#menu-list a.active:hover {
    background-color: #19692c;
}

#menu-list li:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

#menu-list a:hover {
    transform: translateX(4px);
}

#menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
    z-index: 900;
}

#menu.open {
    transform: translateX(0);
}

#menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Breadcrumbs */
#breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

#breadcrumb li::after {
    content: '/';
    margin-left: 8px;
    color: #aaa;
}

#breadcrumb li:last-child::after {
    content: '';
}

#breadcrumb a {
    text-decoration: none;
    color: #075123;
}

#breadcrumb li.active {
    color: #555;
    font-weight: 600;
}

/* 
This is the footer style that can be added to global.css

footer section {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    font-family: 'open-sans-condensed-regular', sans-serif;
    font-size: 16px;
    color: #6c757d;
    border-top: 2px solid #163B26;
}
 */

footer section {
    background-color: #2F2F2F;
    padding: 20px;
    border-top: 2px solid #163B26;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.page_rights {
    text-align: center;
    font-family: 'open-sans-condensed-regular', sans-serif;
    font-size: 16px;
    color: #6c757d;
}

#transburgLocationMap {
    max-height: 350px;
    width: 100%;
}

#footer_container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

#footer_razao_social {
    text-align: left;
    font-family: 'open-sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.footer_address {
    text-align: left;
    font-family: 'open-sans', sans-serif;
    font-size: 14px;
    color: #d3d3d3;
}

.footer_containers img {
    width: 30px;
    height: 30px;
}

.footer_containers a,
.footer_containers a p {
    text-decoration: none;
    color: white;
    font-family: 'open-sans', sans-serif;
}

.footer_containers a {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 0;
}

.footer_containers {
    display: flex;
    flex-direction: column;
    /* empilha os links */
    align-items: flex-start;
    /* alinha à esquerda */
}

#footer_stylizer {
    display: flex;
    gap: 50px;
    justify-content: center;
}

@media (max-width: 820px) {
    footer section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #footer_stylizer {
        flex-direction: column;
        gap: 20px;
    }
}