body {
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    background-color: white;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #0067b2;
    letter-spacing: -1px;
}

.search {
    font-size: 14px;
    color: #666;
}

.menu-colorido {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.menu a {
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    margin: 0 10px;
    font-size: 16px;
    transition: 0.3s;
}


.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 20px;
}

.card-grande {
    grid-column: span 2; 
}

.card-grande img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.categoria-g1 {
    color: #c4170c;
    font-weight: bold;
    font-size: 13px;
    margin-top: 10px;
    text-transform: uppercase;
}


.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}


.link-noticias { color: #004a80; }
.link-esportes { color: #06aa48; }
.link-g1 { color: #c4170c; }
.link-globoplay { color: #fb0334; }


.menu a:hover {
    opacity: 0.7;
}

.logo {
    color: #444444;
    font-weight: 900;
}


.banner-urgente-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 20px 0;
    border-radius: 4px;
    overflow: hidden;
}


.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(196, 23, 12, 0.5);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


.banner-overlay strong {
    background-color: white;
    color: #c4170c;
    padding: 4px 10px;
    margin-right: 12px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 16px;
    vertical-align: middle;
}

.main-content {
    display: flex;
    gap: 30px;
}

.noticia-principal {
    flex: 1.8;
}

.noticia-principal img {
    width: 100%;
    border-radius: 4px;
}

.noticia-principal h1 {
    font-size: 32px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
}

.noticia-principal p {
    font-size: 16px;
    color: #666;
}

.coluna-lateral {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mini-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mini-card h3 {
    font-size: 18px;
    color: #06aa48;
    margin: 0 0 8px 0;
}

.mini-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #333;
}

footer {
    margin-top: 50px;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #777;
}