/* Layout Principal */
body {
    background: #010e17 url(../_img/background/background.jpg) top center no-repeat;
        background-blend-mode: luminosity;
    font-size: 11px;
    background-position-y: -230px;
    background-position-x: center;
    color: #ffffff;
    font-family: Verdana;
    /* text-shadow: 1px 1px #000; */
    padding: 0px;
    margin: 0px;
    background-attachment: fixed;
}

.no-scroll {
    overflow: hidden;
}

/* Hover simplificado - sem transform para evitar "danÃƒÂ§a" */
.sidebar-module.hover {
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.menu-links a.hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 8px;
    transition: all 0.3s ease;
}

.page-wrapper {
    width: 100%;
    max-width: 1112px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.online-status {
}

/* Header */
.site-header {
    width: 100%;
}

.logo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 1;
}

.header-logo {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 184px;
    width: auto;
}

.navigation-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.top-navigation {
    background-image: url('../_img/menu/menu_top1.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-left,
.nav-right {
    display: flex;
    max-width: 33%;
}

.nav-item {
    display: block;
}

.nav-item img {
    transition: opacity 0.3s ease;
    filter: sepia(1);
    width: 140px;
}

.nav {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    align-items: center;
    border-radius: 11px;
    border: 2px solid #000000;
    flex-direction: row;
    background: linear-gradient(180deg, #1a1d20de 0%, /* topo acinzentado */ #13100fe0 40%, /* meio mais escuro */ #000000de 100% /* base preta */);
    padding: 9px 0px;
}


.nav-right {
}

.nav-left {
}

.fadehover {
    position: relative;
    display: inline-block;
}

.fadehover .b {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fadehover:hover .b {
    opacity: 1;
}

.fadehover:hover .a {
    opacity: 0;
}

.online-status {
    text-align: center;
    color: white;
    text-shadow: 1px 1px #2d2d2d;
    text-transform: uppercase;
}

.status-online a,
.status-offline a {
    color: #FFF;
}

/* Info Bar */
.info-bar {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    margin-bottom: 10px;
    padding: 10px;
}

.info-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.InfoBarBigLogo {
    width: auto;
    height: 15px;
    margin-right: 10px;
}

/* Main Container */
.main-container {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0px;
    flex: 1;
    margin-bottom: 20px;
}

/* Content Area */
.content-area {
    /* background: url('../_img/content/content.jpg') repeat-y; */
    background: #161616;
    /* background-color: rgba(0, 0, 0, 0.8); */
    border: none;
    padding: 0px;
    min-height: 400px;
}

/* Footer */
.site-footer {
    /* background: url('../_img/content/content_bot.png') no-repeat; */
    height: 50px;
    margin-top: auto;
}

.footer-content {
    text-align: center;
    padding: 15px;
    color: #888;
}