body {
    font-family: Arial, sans-serif;
    background: #f1f1f1;
    margin: 0;
}

/* HEADER */
/* HEADER */
.header {
    background: #0b0b0b;
    border-bottom: 1px solid #ff0000;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CONTAINER */
.topo {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}

/* LOGO */
.logo img {
    height: 65px;
    transition: 0.3s;
}

/* EFEITO HOVER LOGO */
.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(255,0,0,0.6));
}

/* MENU */
.menu {
    display: flex;
    gap: 25px;
}

/* LINKS */
.menu a {
    position: relative;
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

/* HOVER */
.menu a:hover {
    color: #fff;
}

/* LINHA ANIMADA */
.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff0000;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* CARDS */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 10px; /* 🔥 AJUSTE GLOBAL */
}

.card:hover {
    transform: scale(1.02);
}

/* ========================= */
/* 🔥 AJUSTE DO ESPAÇAMENTO */
/* ========================= */

#destaque {
    margin-bottom: 10px;
}

#lista {
    margin-top: 0;
}

/* ========================= */
/* DESTAQUE */
/* ========================= */

.destaque-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top;
}

/* ESTILO GE */
.destaque-card-ge {
    border-radius: 12px;
    overflow: hidden;
}

.img-bg {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: white;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0)
    );
}

.overlay h2 {
    margin: 5px 0 0 0;
    font-size: 26px;
    font-weight: bold;
    color: #fff;

    -webkit-text-stroke: 0.2px rgba(0,0,0,0.7);

    text-shadow:
        1px 1px 3px rgba(0,0,0,0.8),
        0px 0px 4px rgba(0,0,0,0.6);
}

.overlay .credito {
    font-size: 12px;
    opacity: 0.8;
}

/* ========================= */
/* MINI */
/* ========================= */

.mini-card-ge {
    border-radius: 12px;
    overflow: hidden;
}

.img-bg-mini {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
}

/* ========================= */
/* LISTA */
/* ========================= */

.lista-card img {
    height: 100px;
    object-fit: cover;
}

/* ========================= */
/* SIDEBAR */
/* ========================= */

.sidebar {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.2s;
}

.sidebar-item:hover {
    color: #d50000;
    transform: translateX(3px);
}

/* ========================= */
/* TEXTO / META */
/* ========================= */

.meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.texto p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ========================= */
/* PÁGINA DA NOTÍCIA */
/* ========================= */

.noticia-container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.titulo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.subtitulo {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.noticia-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* ========================= */
/* LINKS */
/* ========================= */

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #d50000;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: #0d0d0d;
    color: #ccc;
    margin-top: 50px;
    border-top: 2px solid #d50000;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 10px;
}

.footer-logo {
    color: #ff0000;
    font-size: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #222;
    font-size: 13px;
    color: #777;
}



/* SOCIAL FOOTER */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* LINK */
.footer-social .social {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: #111;
    transition: 0.3s;
    font-size: 14px;
}

/* TEXTO */
.footer-social .social span {
    color: #ccc;
}

/* HOVER */
.footer-social .social:hover {
    transform: translateX(5px);
}

/* CORES POR REDE */
.footer-social .instagram:hover {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.footer-social .facebook:hover {
    background: #1877f2;
}

.footer-social .twitter:hover {
    background: #1da1f2;
}

.footer-social .social:hover span {
    color: white;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media (max-width: 768px) {
    .topo {
        flex-direction: column;
        gap: 10px;
    }

   .logo img {
        height: 50px;
    }

    .menu {
        gap: 15px;
    }

    .menu a {
        font-size: 13px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}