/* RESET PADRÃO */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background: #000; 
    font-family: 'Roboto', sans-serif; 
}

/* FUNDO DO SITE - IMAGEM DO ANÃO */
.site-wrapper { 
    background: #000 url('../imgs/bg_topo.png') no-repeat top center; 
    background-attachment: scroll; 
    background-size: 1920px auto; 
    padding-top: 560px;
    padding-bottom: 50px;
    min-height: 100vh;
}

/* LARGURA E SOMBRA */
.main-container { 
    width: 1200px;
    margin: -180px auto 0 auto;
    position: relative; 
    box-shadow: 0 0 50px rgba(0,0,0,1); 
    border-radius: 8px;
    overflow: hidden;
}

/* MENU SUPERIOR */
.nav-black { 
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    height: 38px; 
    border-bottom: 2px solid #f1c40f; 
}

.menu { 
    display: flex; 
    list-style: none; 
    justify-content: center; 
    height: 100%; 
    align-items: center; 
}

.menu a { 
    color: #fff; 
    text-decoration: none; 
    padding: 0 15px; 
    font-size: 11px; 
    font-weight: 900; 
    text-transform: uppercase; 
}

.menu a:hover, .menu a.destaque { 
    color: #f1c40f; 
}

/* CORPO BRANCO */
.white-body { 
    background: #fff; 
    display: flex; 
    padding: 20px; 
    gap: 20px; 
}

.col-side { 
    width: 280px;
    flex-shrink: 0; 
}

.col-main { 
    flex: 1; 
    min-width: 0; 
}

/* TÍTULOS */
.border-title { 
    font-size: 11px; 
    color: #0b3e6f; 
    border-bottom: 2px solid #0b3e6f; 
    padding-bottom: 5px; 
    margin-bottom: 12px; 
    font-weight: 900; 
    text-transform: uppercase;
}

/* LOGIN */
.login-container { 
    background: #f4f4f4; 
    padding: 10px; 
    border-radius: 4px; 
    border: 1px solid #ddd; 
}

.input-field { 
    background: #fff; 
    border: 1px solid #ccc; 
    display: flex; 
    align-items: center; 
    padding: 3px 6px; 
    margin-bottom: 5px; 
    border-radius: 3px; 
}

.input-field i { 
    color: #888; 
    font-size: 11px; 
    margin-right: 6px; 
}

.input-field input { 
    border: none; 
    outline: none; 
    font-size: 11px; 
    width: 100%; 
    height: 20px; 
}

.pass-field { 
    position: relative; 
    padding-right: 55px; 
}

.pass-field button { 
    position: absolute; 
    right: 1px; 
    top: 1px; 
    bottom: 1px; 
    width: 50px; 
    background: #333; 
    color: #fff; 
    border: none; 
    font-size: 10px; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 2px; 
}

.login-footer { 
    text-align: center; 
    margin-top: 8px; 
}

.login-footer a { 
    display: block; 
    font-size: 10px; 
    color: #444; 
    text-decoration: none; 
    margin-bottom: 4px; 
}

.reg-btn { 
    background: #dcdcdc; 
    padding: 5px; 
    border-radius: 4px; 
    border: 1px solid #bbb; 
    color: #222 !important; 
    display: block; 
    text-decoration: none; 
    font-size: 10px; 
    font-weight: bold; 
}

/* BOTÕES METALIZADOS */
.btn-metal {
    display: block; 
    width: 100%; 
    background: linear-gradient(to bottom, #4a4a4a 0%, #222 100%);
    color: #fff; 
    text-align: center; 
    text-decoration: none; 
    font-size: 10px; 
    padding: 6px 0; 
    margin-bottom: 4px; 
    font-weight: 700; 
    text-transform: uppercase; 
    border-radius: 3px; 
    border: 1px solid #000;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-metal:hover { 
    background: linear-gradient(to bottom, #555, #333); 
    color: #f1c40f; 
}

/* CONTEÚDO CENTRAL */
.banner-home img { 
    width: 100%; 
    max-width: 820px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.section-header { 
    display: flex; 
    justify-content: space-between; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 8px; 
    margin-bottom: 15px; 
    align-items: center; 
}

.section-header h2 { 
    font-size: 18px; 
    color: #333; 
    font-weight: 700; 
    text-transform: uppercase;
}

.ver-mais { 
    font-size: 11px; 
    color: #0b3e6f; 
    text-decoration: none; 
    font-weight: bold; 
}

/* NOTÍCIAS */
.news-post { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 25px; 
    padding-bottom: 15px; 
    border-bottom: 1px solid #f2f2f2; 
}

.news-img { 
    width: 90px; 
    height: 90px; 
    border: 1px solid #ddd; 
    padding: 3px; 
    background: #fff; 
    flex-shrink: 0; 
    border-radius: 4px; 
}

.news-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 2px; 
}

.news-txt h3 { 
    font-size: 15px; 
    color: #0b3e6f; 
    margin-bottom: 6px; 
}

.news-txt p { 
    font-size: 12px; 
    color: #555; 
    line-height: 1.5; 
}

.news-meta { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 10px; 
    font-size: 11px; 
    color: #999; 
}

.ler-mais { 
    color: #0b3e6f; 
    font-weight: bold; 
    text-decoration: none; 
}

/* SERVER STATUS */
.status-wrap { 
    background: #f4f4f4; 
    padding: 10px; 
    border-radius: 4px; 
    border: 1px solid #ddd; 
}

.st-item { 
    display: flex; 
    justify-content: space-between; 
    background: #fff; 
    padding: 5px 10px; 
    margin-bottom: 3px; 
    font-size: 11px; 
    font-weight: bold; 
    border: 1px solid #eee; 
}

.on { color: #27ae60; }

/* GALERIA CORRIGIDA */
.gal-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 5px; 
    margin-bottom: 10px; 
}

.gi { 
    width: 100%;
    aspect-ratio: 1/1; 
    background: #eee; 
    border: 1px solid #ddd; 
    border-radius: 3px; 
    overflow: hidden;
    cursor: pointer;
}

.gi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-full { 
    width: 100%; 
    border-radius: 4px; 
    border: 1px solid #ddd; 
}

.site-footer { 
    padding: 20px; 
    text-align: center; 
    font-size: 11px; 
    color: #777; 
    background: #fff; 
    border-top: 1px solid #eee; 
}