/* ============================
   RESET
================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f6f7f9;
    color: #222;
}

/* ============================
   CONTAINER PADRÃO
================================*/
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ============================
   HEADER / TOPBAR
   — Logo central
   — Botão hambúrguer à esquerda
   — Menus alinhados como GE
================================*/
.topbar {
    width: 100%;
    background: #7b008c;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    position: relative;
}

/* Botão do menu (esquerda) */
.menu-btn {
    font-size: 34px;
    cursor: pointer;
    color: #fff;
    padding: 5px 10px;
    flex: 1;
}

/* Logo centralizada */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-container img {
    height: 55px;
}

/* Menu desktop (direita) */
nav.menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav.menu a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
}

nav.menu a:hover {
    text-decoration: underline;
}

/* Esconder menu desktop no mobile */
@media (max-width: 750px) {
    nav.menu {
        display: none;
    }
}

/* ============================
   CONTEÚDO
================================*/
.content {
    background: #fff;
    margin-top: 25px;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Títulos */
h1, h2, h3 {
    margin-bottom: 15px;
}

/* Lista de notícias */
.news-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.news-item:last-child {
    border-bottom: none;
}

/* ============================
   FOOTER
================================*/
.footer {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    background: #e6e9ef;
    color: #444;
}

/* ============================
   MENU LATERAL (Mobile)
================================*/
#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 10000;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: 4px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 10001;
}

.side-menu a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #222;
    text-decoration: none;
}

.side-menu a:hover {
    color: #7b008c;
}

.side-menu .close-btn {
    font-size: 32px;
    display: block;
    text-align: right;
    margin-bottom: 20px;
    cursor: pointer;
}

/* ============================
   RESPONSIVIDADE EXTRA
================================*/
@media (max-width: 450px) {
    .logo-container img {
        height: 45px;
    }

    .menu-btn {
        font-size: 30px;
    }
}



