* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #202020;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* HEADER */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.logo span {
    font-weight: 400;
}

.navigation {
    display: flex;
    gap: 28px;
}

.navigation a {
    font-size: 14px;
    font-weight: 600;
}

.navigation a:hover {
    opacity: 0.6;
}


/* SEÇÕES */

.hero,
.latest-news {
    padding: 45px 0;
}

.section-title {
    margin-bottom: 25px;
}

.section-title h1,
.section-title h2 {
    font-size: 26px;
}


/* DESTAQUE */

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main-news {
    border-bottom: 1px solid #ddd;
}

.image-placeholder {
    height: 400px;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.news-content {
    padding: 20px 0;
}

.news-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 10px 0;
}

.news-content p {
    color: #666;
}

.category {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}


/* NOTÍCIAS LATERAIS */

.side-news {
    display: flex;
    flex-direction: column;
}

.news-card {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.news-card:first-child {
    padding-top: 0;
}

.news-card h3 {
    margin-top: 8px;
    font-size: 20px;
}


/* PUBLICIDADE */

.advertising {
    padding: 20px 0;
}

.banner {
    min-height: 120px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
}


/* GRID DE NOTÍCIAS */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-image {
    height: 200px;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-bottom: 15px;
}

.article-card h3 {
    font-size: 20px;
    margin: 8px 0;
}

.article-card p {
    color: #666;
}


/* FOOTER */

.footer {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    background: #fafafa;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer p {
    color: #666;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 800px) {

    .header-content {
        flex-direction: column;
        padding: 20px 0;
    }

    .navigation {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        height: 260px;
    }

    .news-content h2 {
        font-size: 25px;
    }

    .footer-content {
        flex-direction: column;
    }

}