.body{
  display: flex;
  align-items: center;
  margin: 2px;
}

.header {
  position: relative;
  height: 60px;
  border-bottom: 1px solid #ddd;
  font-family: Arial, Helvetica, sans-serif;
}

/* ESQUERDA */
.header-left {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a73e8;  
  cursor: pointer;
}

/* CENTRO (o mais importante) */
.header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  gap: 10px;
}

.globo {
  font-weight: bold;
  color: #1a73e8;
}

.divider {
  color:#1a73e8;
}

.logo100 {
  height: 50px;
}

/* DIREITA */
.header-right {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
  color: #555;
}

.subnav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 40px;
  border-bottom: 1px solid #eee;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.subnav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* CORES */
.g1 { color: #c4170c; }
.oglobo { color: #1a73e8; }
.valor { color: #0b8043; }
.ge { color: #2e7d32; }
.cartola { color: #ff9800; }
.globoplay { color: #e91e63; }
.gshow { color: #ff9800; }
.receitas { color: #ff7043; }
.quem { color: #8e24aa; }
.jogos { color: #c4170c; }

.banner{
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 20px 0;
}

.banner img{
   width: 100%;
    max-width: 1200px;
    height: auto;
  }

.noticias-g1 {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* COLUNAS */
.coluna {
    padding: 0 20px;
}

.coluna-1 {
    flex: 2;
}

.coluna-2,
.coluna-3 {
    flex: 1;
}

/* LINHAS SEPARADORAS */
.coluna-2,
.coluna-3 {
    border-left: 1px solid #e5e5e5;
}

/* TÍTULO PRINCIPAL */
.titulo-principal {
    color: #c4170c;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* GRID DE CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}

.titulo-vermelho {
    color: #c4170c;
    font-size: 14px;
    font-weight: bold;
}

.linha-fina {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
}

/* NOTÍCIAS DAS COLUNAS 2 E 3 */
.noticia-media {
    margin-bottom: 25px;
}

.noticia-media img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}

.noticia-media h2 {
    font-size: 15px;
    margin-bottom: 6px;
}

.noticia-media p {
    font-size: 13px;
    color: #555;
}

/* CORES */
.verde {
    color: #06aa48;
}

.laranja {
    color: #ff7a00;
}