/* ===========================================================
   CONECTANDO NOTÍCIAS — Folha de estilo do protótipo
   Paleta oficial (Manual de Identidade Visual):
   Azul Naval Profundo .... #0A192F
   Azul Corporativo ....... #1A365D
   Ouro Premium ........... #D4AF37
   Ouro Brilhante ......... #F3E5AB
   Cinza Estúdio .......... #8A95A5
   =========================================================== */

:root {
  --azul-naval:   #0A192F;
  --azul-corp:    #1A365D;
  --ouro:         #D4AF37;
  --ouro-claro:   #F3E5AB;
  --cinza:        #8A95A5;
  --cinza-bg:     #f1f3f6;
  --cinza-linha:  #e2e6ec;
  --branco:       #ffffff;
  --texto:        #16202e;
  --texto-suave:  #5a6675;

  /* Cores por editoria (faixa de identificação tipo UOL/G1) */
  --c-politica:       #b5283b;
  --c-economia:       #1f8a52;
  --c-esporte:        #1565c0;
  --c-mundo:          #6a3aa3;
  --c-tecnologia:     #00838f;
  --c-entretenimento: #d8730c;

  --sombra-card: 0 1px 3px rgba(10, 25, 47, .08), 0 6px 18px rgba(10, 25, 47, .06);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Roboto", -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--texto);
  background: var(--cinza-bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

h1, h2, h3, h4, .marca, .editoria-tag, .menu a, .btn {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* ===================== BARRA UTILITÁRIA ===================== */
.utilbar {
  background: var(--azul-naval);
  color: #c5cedd;
  font-size: 12px;
  border-bottom: 1px solid rgba(212,175,55,.25);
}
.utilbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 34px;
}
.utilbar .data { letter-spacing: .04em; text-transform: capitalize; }
.utilbar nav { display: flex; gap: 18px; align-items: center; }
.utilbar nav a { transition: color .15s; }
.utilbar nav a:hover { color: var(--ouro); }
.utilbar .login {
  color: var(--azul-naval);
  background: var(--ouro);
  padding: 4px 12px; border-radius: 999px; font-weight: 600;
}
.utilbar .login:hover { background: var(--ouro-claro); color: var(--azul-naval); }

/* ===================== HEADER PRINCIPAL ===================== */
.topo {
  background: linear-gradient(180deg, #0d1f3a 0%, var(--azul-naval) 100%);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(10,25,47,.35);
}
.topo .container {
  display: flex; align-items: center; gap: 24px;
  height: 78px;
}
.marca { display: flex; align-items: center; gap: 12px; }
.marca img { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }

.busca {
  margin-left: auto; position: relative;
  display: flex; align-items: center;
}
.busca input {
  width: 230px; height: 38px; border: 1px solid rgba(212,175,55,.4);
  background: rgba(255,255,255,.06); color: #fff;
  border-radius: 999px; padding: 0 42px 0 16px; font-size: 14px;
  transition: width .25s, border-color .2s;
}
.busca input::placeholder { color: #9fb0c7; }
.busca input:focus { outline: none; width: 280px; border-color: var(--ouro); background: rgba(255,255,255,.1); }
.busca button {
  position: absolute; right: 6px; top: 5px;
  width: 28px; height: 28px; border: none; border-radius: 50%;
  background: var(--ouro); color: var(--azul-naval); cursor: pointer;
  font-size: 14px; display: grid; place-items: center;
}
.busca button:hover { background: var(--ouro-claro); }

.menu-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 26px; cursor: pointer;
}

/* ===================== MENU DE EDITORIAS ===================== */
.editorias {
  background: var(--azul-corp);
  border-top: 2px solid var(--ouro);
}
.editorias .container { display: flex; }
.menu { display: flex; flex-wrap: wrap; list-style: none; }
.menu a {
  display: block; padding: 13px 16px; color: #dde6f3;
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; position: relative; transition: color .15s;
}
.menu a:hover { color: var(--ouro); }
.menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--ouro); transform: scaleX(0); transition: transform .2s;
}
.menu a:hover::after { transform: scaleX(1); }
.menu .ativo { color: var(--ouro); }

/* ===================== FAIXA PLANTÃO / ÚLTIMAS ===================== */
.plantao {
  background: var(--branco); border-bottom: 1px solid var(--cinza-linha);
  overflow: hidden;
}
.plantao .container { display: flex; align-items: center; height: 44px; gap: 16px; }
.plantao .selo {
  background: var(--c-politica); color: #fff; font-weight: 800;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px; white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
}
.plantao .selo .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: pulse 1.2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }
.ticker { flex: 1; overflow: hidden; white-space: nowrap; }
.ticker ul {
  display: inline-flex; list-style: none; gap: 48px;
  animation: scroll 32s linear infinite;
}
.ticker:hover ul { animation-play-state: paused; }
.ticker li { font-size: 14px; color: var(--texto); white-space: nowrap; }
.ticker li::before { content: "•"; color: var(--ouro); margin-right: 12px; font-weight: bold; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ===================== LAYOUT PRINCIPAL ===================== */
.layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 28px;
  padding: 26px 0;
}

/* ----- Cabeçalho de seção ----- */
.sec-titulo {
  display: flex; align-items: center; gap: 12px;
  margin: 6px 0 16px;
}
.sec-titulo h2 {
  font-size: 20px; text-transform: uppercase; letter-spacing: .03em;
  color: var(--azul-naval); position: relative; padding-left: 12px;
}
.sec-titulo h2::before {
  content: ""; position: absolute; left: 0; top: 2px; bottom: 2px;
  width: 4px; background: var(--ouro); border-radius: 2px;
}
.sec-titulo .linha { flex: 1; height: 1px; background: var(--cinza-linha); }
.sec-titulo a.ver-mais {
  font-size: 12px; font-weight: 700; color: var(--azul-corp);
  text-transform: uppercase; letter-spacing: .03em;
}
.sec-titulo a.ver-mais:hover { color: var(--ouro); }

/* ----- Tag de editoria ----- */
.editoria-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: #fff;
  padding: 3px 8px; border-radius: 3px; margin-bottom: 8px;
}
.t-politica{background:var(--c-politica)} .t-economia{background:var(--c-economia)}
.t-esporte{background:var(--c-esporte)} .t-mundo{background:var(--c-mundo)}
.t-tecnologia{background:var(--c-tecnologia)} .t-entretenimento{background:var(--c-entretenimento)}

/* ===================== DESTAQUE (HERO) ===================== */
.hero {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px;
  margin-bottom: 30px;
}
.hero-principal {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: var(--sombra-card); background: var(--azul-naval); min-height: 420px;
}
.hero-principal img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-principal .grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,25,47,0) 35%, rgba(10,25,47,.92) 100%);
}
.hero-principal .conteudo {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; color: #fff;
}
.hero-principal h1 {
  font-size: 30px; line-height: 1.15; margin: 8px 0 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-principal p { color: #d7dfeb; font-size: 15px; max-width: 90%; }
.hero-principal:hover h1 { color: var(--ouro-claro); }

.hero-secundarias { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.card-foto {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: var(--sombra-card); background: var(--azul-corp); min-height: 200px;
}
.card-foto img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.card-foto .grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,25,47,0) 40%, rgba(10,25,47,.9) 100%);
}
.card-foto .conteudo { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff; }
.card-foto h3 { font-size: 17px; line-height: 1.2; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.card-foto:hover h3 { color: var(--ouro-claro); }

/* ===================== GRADE DE NOTÍCIAS ===================== */
.bloco-secao { margin-bottom: 34px; }
.grade {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: var(--branco); border-radius: 10px; overflow: hidden;
  box-shadow: var(--sombra-card); display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(10,25,47,.14); }
.card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--azul-corp); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .thumb img { transform: scale(1.05); }
.card .corpo { padding: 14px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 16px; line-height: 1.25; color: var(--texto); margin-bottom: 8px; }
.card:hover h3 { color: var(--azul-corp); }
.card p { font-size: 13px; color: var(--texto-suave); margin-bottom: 12px; }
.card .meta {
  margin-top: auto; font-size: 12px; color: var(--cinza);
  display: flex; align-items: center; gap: 8px;
}
.card .meta .ponto { width: 3px; height: 3px; border-radius: 50%; background: var(--cinza); }

/* Variante horizontal (lista) */
.lista-h { display: flex; flex-direction: column; gap: 2px; }
.item-h {
  display: grid; grid-template-columns: 130px 1fr; gap: 14px;
  background: var(--branco); padding: 12px; border-radius: 8px;
  transition: background .15s;
}
.item-h:hover { background: #fafbfd; }
.item-h .thumb { aspect-ratio: 16/11; border-radius: 6px; overflow: hidden; background: var(--azul-corp); }
.item-h .thumb img { width:100%; height:100%; object-fit: cover; }
.item-h h3 { font-size: 15px; line-height: 1.25; }
.item-h:hover h3 { color: var(--azul-corp); }
.item-h .meta { font-size: 11px; color: var(--cinza); margin-top: 6px; }

/* ===================== SIDEBAR ===================== */
.sidebar { display: flex; flex-direction: column; gap: 26px; }
.widget {
  background: var(--branco); border-radius: 10px; box-shadow: var(--sombra-card);
  overflow: hidden;
}
.widget > h3 {
  font-size: 14px; text-transform: uppercase; letter-spacing: .05em;
  background: var(--azul-naval); color: #fff; padding: 13px 16px;
  display: flex; align-items: center; gap: 9px;
}
.widget > h3 .barra { width: 4px; height: 16px; background: var(--ouro); border-radius: 2px; }

.mais-lidas { list-style: none; }
.mais-lidas li {
  display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center;
  padding: 13px 16px; border-bottom: 1px solid var(--cinza-linha);
}
.mais-lidas li:last-child { border-bottom: none; }
.mais-lidas .num {
  font-family: "Montserrat"; font-weight: 800; font-size: 24px;
  color: var(--ouro); text-align: center; line-height: 1;
}
.mais-lidas a { font-size: 14px; line-height: 1.3; }
.mais-lidas li:hover a { color: var(--azul-corp); }

/* Anúncio / placeholder */
.anuncio {
  background: repeating-linear-gradient(45deg, #e8ebf0, #e8ebf0 12px, #eef1f5 12px, #eef1f5 24px);
  border: 1px dashed var(--cinza); border-radius: 10px;
  display: grid; place-items: center; color: var(--cinza);
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  min-height: 250px; text-align: center;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--azul-corp), var(--azul-naval));
  border-radius: 10px; padding: 22px; color: #fff; box-shadow: var(--sombra-card);
}
.newsletter h3 { font-size: 17px; margin-bottom: 6px; }
.newsletter h3 span { color: var(--ouro); }
.newsletter p { font-size: 13px; color: #c9d4e3; margin-bottom: 14px; }
.newsletter form { display: flex; flex-direction: column; gap: 9px; }
.newsletter input {
  height: 40px; border-radius: 6px; border: 1px solid rgba(212,175,55,.35);
  background: rgba(255,255,255,.08); color: #fff; padding: 0 14px; font-size: 14px;
}
.newsletter input::placeholder { color: #9fb0c7; }
.newsletter input:focus { outline: none; border-color: var(--ouro); }

.btn {
  border: none; cursor: pointer; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em;
  border-radius: 6px; padding: 11px 18px; transition: background .15s, transform .1s;
}
.btn-ouro { background: var(--ouro); color: var(--azul-naval); }
.btn-ouro:hover { background: var(--ouro-claro); }
.btn:active { transform: translateY(1px); }

/* ===================== TIRA HORIZONTAL DE EDITORIA ===================== */
.faixa-dupla { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ===================== RODAPÉ ===================== */
.rodape {
  background: var(--azul-naval); color: #aeb9c9; margin-top: 30px;
  border-top: 3px solid var(--ouro);
}
.rodape .topo-rodape {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px;
  padding: 40px 0 30px;
}
.rodape .sobre img { height: 58px; margin-bottom: 14px; }
.rodape .sobre p { font-size: 13px; max-width: 280px; }
.rodape .redes { display: flex; gap: 10px; margin-top: 16px; }
.rodape .redes a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #cdd6e4; transition: background .15s, color .15s;
  font-weight: 700; font-size: 14px; font-family: Montserrat;
}
.rodape .redes a:hover { background: var(--ouro); color: var(--azul-naval); }
.rodape h4 {
  color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(212,175,55,.25);
}
.rodape ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.rodape ul a { font-size: 13px; transition: color .15s; }
.rodape ul a:hover { color: var(--ouro); }
.rodape .copy {
  border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0;
  font-size: 12px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.rodape .copy .marca-mini { color: var(--ouro); font-weight: 700; }

/* ===================== PÁGINA DE ARTIGO ===================== */
.artigo-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 26px 0; }
.artigo { background: var(--branco); border-radius: 10px; box-shadow: var(--sombra-card); overflow: hidden; }
.artigo .capa { aspect-ratio: 16/8; background: var(--azul-corp); }
.artigo .capa img { width:100%; height:100%; object-fit: cover; }
.artigo .texto { padding: 30px 42px 44px; }
.breadcrumb { font-size: 12px; color: var(--cinza); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--azul-corp); }
.artigo h1 {
  font-size: 34px; line-height: 1.18; color: var(--azul-naval); margin: 6px 0 14px;
}
.artigo .linha-fina { font-size: 18px; color: var(--texto-suave); margin-bottom: 22px; font-weight: 400; }
.artigo .assinatura {
  display: flex; align-items: center; gap: 12px; padding: 16px 0;
  border-top: 1px solid var(--cinza-linha); border-bottom: 1px solid var(--cinza-linha);
  margin-bottom: 26px; font-size: 13px; color: var(--texto-suave);
}
.artigo .assinatura .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ouro), var(--azul-corp)); color:#fff;
  display: grid; place-items: center; font-weight: 800; font-family: Montserrat;
}
.artigo .assinatura strong { color: var(--texto); }
.artigo .compartilhar { margin-left: auto; display: flex; gap: 8px; }
.artigo .compartilhar a {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cinza-bg); color: var(--azul-corp); font-size: 12px; font-weight: 700;
  font-family: Montserrat;
}
.artigo .compartilhar a:hover { background: var(--ouro); color: var(--azul-naval); }
.artigo .texto p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; color: #243142; }
.artigo .texto h2 { font-size: 22px; color: var(--azul-naval); margin: 14px 0 12px; }
.artigo .texto blockquote {
  border-left: 4px solid var(--ouro); padding: 6px 0 6px 20px; margin: 24px 0;
  font-size: 20px; font-style: italic; color: var(--azul-corp);
}
.artigo figure { margin: 24px 0; }
.artigo figure img { border-radius: 8px; }
.artigo figcaption { font-size: 12px; color: var(--cinza); margin-top: 6px; }

/* Reordena o conteúdo da home: clima + agenda da Copa logo abaixo do Plantão
   (afeta apenas o <main>; header e rodapé usam .container fora dele) */
main.container { display: flex; flex-direction: column; }
main .clima { order: -2; }
main .copa  { order: -1; }
main .layout { order: 0; }

/* ===================== CONECTA TV (widget) ===================== */
.tv-card { display: block; }
.tv-thumb {
  position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--azul-corp);
}
.tv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tv-aovivo {
  position: absolute; left: 10px; top: 10px;
  background: var(--c-politica); color: #fff;
  font-family: Montserrat; font-weight: 800; font-size: 11px;
  letter-spacing: .04em; padding: 4px 9px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
}
.tv-titulo {
  display: block; padding: 13px 16px 16px;
  font-family: Montserrat; font-weight: 600; font-size: 14.5px; line-height: 1.3;
  color: var(--texto); transition: color .15s;
}
.tv-card:hover .tv-titulo { color: var(--azul-corp); }

/* ===================== BARRA DE CLIMA ===================== */
.clima {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--texto); padding: 14px 4px 18px;
  border-top: 1px solid var(--cinza-linha);
}
.clima .seta { color: var(--cinza); cursor: pointer; }
.clima .icone-clima { color: #e8a33d; font-size: 18px; }
.clima strong { color: var(--azul-naval); }
.clima a { color: var(--azul-corp); font-weight: 600; }
.clima a:hover { color: var(--ouro); }

/* ===================== AGENDA COPA DO MUNDO ===================== */
/* Oculta temporariamente a agenda da Copa (será alimentada por webscraper depois).
   Para reativar, basta remover este "display: none". */
.copa { display: none; }

.copa { margin: 6px 0 10px; }
.copa-head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.copa-head h2 {
  font-size: 22px; color: var(--azul-naval); letter-spacing: -.01em;
}
.copa-head h2 i { color: var(--c-economia); margin-right: 8px; }
.copa-fonte {
  font-family: "Roboto", sans-serif; font-size: 12px; font-weight: 500;
  color: var(--cinza); letter-spacing: 0; margin-left: 4px;
}
.flag.flag-vazia { background: var(--cinza-linha); }
.btn-outline {
  border: 1.5px solid var(--azul-corp); color: var(--azul-corp);
  font-family: Montserrat; font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 6px; transition: all .15s; white-space: nowrap;
}
.btn-outline:hover { background: var(--azul-corp); color: #fff; }
.vai-brasil {
  margin-left: auto; background: var(--c-economia); color: #fff;
  font-family: Montserrat; font-weight: 700; font-size: 13px;
  padding: 9px 18px; border-radius: 6px; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; box-shadow: 0 2px 8px rgba(31,138,82,.3);
}
.vai-brasil:hover { background: #176b40; }

.copa-jogos {
  display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 14px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.copa-jogos::-webkit-scrollbar { height: 8px; }
.copa-jogos::-webkit-scrollbar-thumb { background: var(--cinza); border-radius: 4px; }
.copa-jogos::-webkit-scrollbar-track { background: var(--cinza-linha); border-radius: 4px; }

.jogo {
  flex: 0 0 220px; scroll-snap-align: start;
  background: var(--branco); border: 1px solid var(--cinza-linha);
  border-radius: 10px; padding: 14px; box-shadow: var(--sombra-card);
  display: flex; flex-direction: column; gap: 10px;
}
.jogo.brasil {
  border: 2px solid var(--c-economia); background: #fbfff4;
  box-shadow: 0 4px 14px rgba(31,138,82,.18);
}
.jogo-top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--texto-suave); font-weight: 600;
}
.jogo-top .seta-jogo { color: var(--c-economia); }
.status {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 8px; border-radius: 4px;
}
.status.enc { background: var(--cinza-linha); color: var(--texto-suave); }
.status.pre { background: var(--ouro); color: var(--azul-naval); }
.status.aovivo { background: var(--c-politica); color: #fff; }

.time { display: flex; align-items: center; gap: 9px; font-size: 15px; }
.time .flag {
  width: 26px; height: 19px; object-fit: cover; border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(10,25,47,.12); flex: 0 0 auto;
}
.time .nome { font-weight: 500; color: var(--texto); }
.time .placar { margin-left: auto; font-family: Montserrat; font-weight: 800; font-size: 18px; color: var(--azul-naval); }
.jogo-rod {
  font-size: 11px; color: var(--cinza); border-top: 1px solid var(--cinza-linha);
  padding-top: 9px; margin-top: 2px;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .layout, .artigo-wrap { grid-template-columns: 1fr; }
  .grade { grid-template-columns: repeat(2, 1fr); }
  .faixa-dupla { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-secundarias { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .rodape .topo-rodape { grid-template-columns: 1fr 1fr; }
  .artigo .texto { padding: 24px 22px 32px; }
}
@media (max-width: 760px) {
  .copa-head h2 { font-size: 19px; width: 100%; }
  .vai-brasil { margin-left: 0; }
}
@media (max-width: 640px) {
  .busca { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .topo .container { height: 64px; gap: 12px; }
  .marca img { height: 44px; }
  .editorias { display: none; }
  .editorias.aberto { display: block; }
  .menu { flex-direction: column; width: 100%; }
  .menu a { border-bottom: 1px solid rgba(255,255,255,.08); padding: 15px 16px; }
  .menu a::after { display: none; }
  .grade, .hero-secundarias { grid-template-columns: 1fr; }
  .utilbar nav a:not(.login) { display: none; }
  .utilbar .container { height: 38px; }
  .hero-principal { min-height: 320px; }
  .hero-principal h1 { font-size: 22px; }
  .hero-principal p { display: none; }
  .artigo h1 { font-size: 24px; }
  .artigo .linha-fina { font-size: 16px; }
  .artigo .texto { padding: 22px 18px 30px; }
  .artigo .texto p { font-size: 16px; }
  .artigo .assinatura { flex-wrap: wrap; }
  .artigo .compartilhar { margin-left: 0; width: 100%; }
  .rodape .topo-rodape { grid-template-columns: 1fr; gap: 26px; }
  .copy { flex-direction: column; gap: 8px; }
  .item-h { grid-template-columns: 108px 1fr; }
  .jogo { flex-basis: 200px; }
  .layout { padding: 18px 0; gap: 22px; }
}

/* Usabilidade de toque: alvos confortáveis, inputs sem zoom no iOS */
@media (hover: none) and (pointer: coarse) {
  .menu a, .rodape ul a { padding-top: 13px; padding-bottom: 13px; }
  input, .btn { font-size: 16px; }
}
