
/* Layout */
body {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: 'slnt' 0;
    --bs-navbar-toggler-border-color-background: #ecf5ff;
    background-image: url("/assets/img/background.webp"); /* fallback */
    background-image: url("/assets/img/background.webp"), linear-gradient(#fafbff, #ecf5ff); /* W3C */
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-attachment: fixed;
    background-size: contain;
    position: relative;
    overflow: hidden;
}
.content {
    margin: 0;
    height: 100dvh;
    width: 100dvw;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    grid-template-columns: auto  minmax(0, 1fr);
    color: var(--azul-escuro) !important;
}
topwarn {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 3;
}
header {
    background-color: var(--azul-escuro);
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
}
nav {
    background-color: var(--azul-escuro);
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
}
aside {
    z-index: 5;
    height: auto;
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
}
main {
    height: auto;
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 2;
    grid-column-end: 3;
}
footer {
    background-color: var(--footer-bg);
    z-index: 1;
    color: #ffffff;
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 3;
}
hr {
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: var(--azul);
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}


/* scroll bar */
*::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
*::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #00000000;
}
*::-webkit-scrollbar-track:hover {
    background-color: #00000000;
}
*::-webkit-scrollbar-track:active {
    background-color: #00000000;
}
*::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #272727;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: #444444;
}
*::-webkit-scrollbar-thumb:active {
    background-color: #333333;
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--bs-emphasis-color) #00000000;
}