/* ===================================================
   ESPORTE NA REDE MT — PORTAL DE NOTÍCIAS
   style.css — Folha de estilos principal
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Merriweather:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --orange:    #ff6900;
  --orange-dk: #e05800;
  --green:     #089A0D;
  --green-dk:  #067009;
  --navy:      #00204F;
  --navy-lt:   #0a2f6b;
  --white:     #ffffff;
  --off-white: #f5f5f3;
  --gray-100:  #f0f0ee;
  --gray-200:  #e2e2e0;
  --gray-400:  #a0a09e;
  --gray-600:  #6b6b68;
  --gray-800:  #2a2a28;
  --black:     #111110;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-serif:'Merriweather', serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);

  --max-w: 1280px;
  --col-gap: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--off-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section-spacing { padding: 48px 0; }
.section-spacing-sm { padding: 32px 0; }

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--orange  { background: var(--orange); color: var(--white); }
.badge--green   { background: var(--green); color: var(--white); }
.badge--navy    { background: var(--navy); color: var(--white); }
.badge--live    { background: #e53e3e; color: var(--white); animation: pulse 1.5s infinite; }
.badge--ended   { background: var(--gray-400); color: var(--white); }
.badge--next    { background: var(--green); color: var(--white); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.section-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content:'';
  display: block;
  width: 5px;
  height: 28px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title--green::before { background: var(--green); }
.section-title--navy::before  { background: var(--navy); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-200);
}
.ver-mais {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color .2s;
}
.ver-mais:hover { color: var(--orange-dk); }
.ver-mais--green { color: var(--green); }
.ver-mais--green:hover { color: var(--green-dk); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar__date { opacity: .8; }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.topbar__social a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: color .2s;
}
.topbar__social a:hover { color: var(--orange); }
.topbar__links {
  display: flex;
  gap: 14px;
}
.topbar__links a {
  color: rgba(255,255,255,.85);
  transition: color .2s;
  font-size: 11.5px;
}
.topbar__links a:hover { color: var(--orange); }
.topbar__links a.highlight {
  color: var(--orange);
  border: 1px solid rgba(255,105,0,.5);
  padding: 2px 8px;
  border-radius: 3px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.header__logo { flex-shrink: 0; }
.logo__mark {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--orange);
}
.logo__mark span.logo-green { color: var(--green); }
.logo__mark span.logo-navy  { color: var(--navy); }
.logo__slogan {
  font-size: 10.5px;
  color: var(--gray-600);
  letter-spacing: .03em;
  margin-top: 2px;
}
.header__banner {
  flex: 1;
  max-width: 520px;
  height: 60px;
  background: var(--gray-100);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 12px;
  letter-spacing: .04em;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.btn-search {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  transition: all .2s;
}
.btn-search:hover { border-color: var(--orange); color: var(--orange); }
.btn-subscribe {
  background: var(--orange);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-subscribe:hover { background: var(--orange-dk); }

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--navy);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}
.nav__menu {
  display: flex;
  height: 100%;
}
.nav__item {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--white); border-bottom-color: var(--orange); }
.nav__link--active { color: var(--white); border-bottom-color: var(--orange); }
.nav__link--sports {
  color: var(--orange);
  background: rgba(255,105,0,.08);
}
.nav__link--sports:hover { background: rgba(255,105,0,.15); border-bottom-color: var(--orange); }
.nav__link--sports.nav__link--active { background: rgba(255,105,0,.15); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile-menu {
  display: none;
  background: var(--navy-lt);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav__mobile-menu.open { display: block; }
.nav__mobile-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  border-left: 3px solid transparent;
  transition: all .2s;
}
.nav__mobile-menu a:hover { color: var(--white); border-left-color: var(--orange); background: rgba(255,255,255,.04); }
.nav__mobile-menu a.sports { color: var(--orange); }

/* ===== BREAKING NEWS ===== */
.breaking-news {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.breaking-news__inner {
  display: flex;
  align-items: center;
  height: 40px;
}
.breaking-news__label {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.breaking-news__label::after {
  content: '▶';
  margin-left: 8px;
  font-size: 9px;
}
.breaking-news__ticker {
  overflow: hidden;
  flex: 1;
  padding: 0 20px;
}
.breaking-news__track {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.breaking-news__track:hover { animation-play-state: paused; }
.breaking-news__item {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  padding-right: 48px;
  white-space: nowrap;
}
.breaking-news__item::after {
  content: '•';
  margin-left: 24px;
  color: var(--orange);
  font-size: 18px;
}
.breaking-news__item:last-child::after { display: none; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO SECTION ===== */
.hero { background: var(--white); padding: 32px 0; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  gap: var(--col-gap);
}
.hero__main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hero__main-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 50%, var(--orange) 100%);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero__main-img-placeholder::before {
  content: '⚽';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-60%);
  font-size: 120px;
  opacity: .15;
}
.hero__main-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 60%, transparent 100%);
  color: var(--white);
}
.hero__main-cat { margin-bottom: 10px; }
.hero__main-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.hero__main-sub {
  font-size: 14px;
  opacity: .85;
  line-height: 1.5;
  margin-bottom: 14px;
}
.hero__main-meta {
  font-size: 12px;
  opacity: .7;
  display: flex;
  gap: 14px;
}

/* Secondary hero cards */
.hero__secondary { display: flex; flex-direction: column; gap: var(--col-gap); }
.hero__card {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow .2s, transform .2s;
}
.hero__card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.hero__card-img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.hero__card-img-placeholder {
  width: 130px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.hero__card-body { padding: 12px 14px 12px 0; display: flex; flex-direction: column; gap: 6px; }
.hero__card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  color: var(--navy);
  transition: color .2s;
}
.hero__card:hover .hero__card-title { color: var(--orange); }
.hero__card-meta { font-size: 11.5px; color: var(--gray-400); }

/* ===== SCORES SECTION ===== */
.scores-section {
  background: var(--navy);
  padding: 36px 0;
}
.scores-section .section-title { color: var(--white); }
.scores-section .section-title::before { background: var(--orange); }
.scores-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.score-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: background .2s, transform .2s;
}
.score-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.score-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}
.score-card--live::before { background: #e53e3e; }
.score-card--next::before { background: var(--green); }
.score-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.score-card__comp {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.score-card__time {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.score-card__match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.score-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.score-card__crest {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.score-card__team-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}
.score-card__score {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 38px;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.score-card__score-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.score-card__vs {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  color: rgba(255,255,255,.3);
}
.score-card__sep {
  font-size: 22px;
  color: rgba(255,255,255,.5);
  font-weight: 900;
  font-family: var(--font-head);
}
.score-card__footer {
  text-align: center;
}
.btn-details {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(255,105,0,.5);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  transition: all .2s;
}
.btn-details:hover { background: var(--orange); color: var(--white); }

/* ===== STANDINGS TABLE ===== */
.standings { background: rgba(255,255,255,.05); border-radius: var(--radius-lg); padding: 24px; margin-top: 32px; }
.standings__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.standings__title::before { content: '🏆'; font-size: 16px; }
.standings table {
  width: 100%;
  border-collapse: collapse;
}
.standings thead th {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 6px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.standings thead th:first-child { text-align: left; }
.standings tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.standings tbody tr:hover { background: rgba(255,255,255,.05); }
.standings tbody tr:last-child { border-bottom: none; }
.standings tbody td {
  padding: 10px 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  text-align: center;
}
.standings tbody td:first-child { text-align: left; }
.standings__pos {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,.4);
  width: 24px;
  display: inline-block;
}
.standings__club {
  display: flex;
  align-items: center;
  gap: 10px;
}
.standings__crest {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.standings__pts {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
}
.standings__sg-pos { color: var(--green); font-weight: 700; }
.standings__sg-neg { color: #e53e3e; font-weight: 700; }

/* ===== NEWS CARDS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--col-gap);
}
.news-grid--3 { grid-template-columns: repeat(3, 1fr); }
.news-grid--sports {
  grid-template-columns: repeat(2, 1fr) 1fr 1fr;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-card__img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.news-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  color: var(--navy);
  transition: color .2s;
}
.news-card:hover .news-card__title { color: var(--orange); }
.news-card__summary { font-size: 13px; color: var(--gray-600); line-height: 1.5; flex: 1; }
.news-card__meta { font-size: 11.5px; color: var(--gray-400); display: flex; gap: 10px; margin-top: 4px; }

/* Featured sports card (larger) */
.news-card--feature {
  grid-column: span 2;
}
.news-card--feature .news-card__img-placeholder,
.news-card--feature .news-card__img { height: 260px; }
.news-card--feature .news-card__title { font-size: 22px; }

/* ===== SPORTS SECTION ===== */
.sports-section { background: var(--white); padding: 48px 0; }
.sports-section .section-title::before { background: var(--orange); }

/* ===== GENERAL CATEGORY SECTIONS ===== */
.category-section { background: var(--off-white); padding: 40px 0; }
.category-section:nth-child(even) { background: var(--white); }

/* ===== SOCIAL FOLLOW ===== */
.social-follow {
  background: var(--navy);
  padding: 48px 0;
}
.social-follow__title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.social-follow__sub {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 36px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.social-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.social-card--instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card--youtube   { background: #ff0000; }
.social-card--whatsapp  { background: #25d366; }
.social-card--facebook  { background: #1877f2; }
.social-card__icon { font-size: 42px; margin-bottom: 12px; }
.social-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.social-card__desc { font-size: 13px; opacity: .85; line-height: 1.4; }
.social-card__cta {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 18px;
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s;
}
.social-card:hover .social-card__cta { background: rgba(255,255,255,.3); }

/* ===== NEWSLETTER / WHATSAPP CTA ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--green) 0%, #0cbf13 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '📱';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 140px;
  opacity: .1;
}
.newsletter__inner {
  max-width: 640px;
}
.newsletter__tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.newsletter__title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.newsletter__sub {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
  color: var(--gray-800);
}
.newsletter__input::placeholder { color: var(--gray-400); }
.newsletter__btn {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter__btn:hover { background: var(--navy-lt); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand .logo__mark { font-size: 26px; margin-bottom: 12px; }
.footer__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .2s;
}
.footer__social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer__col-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ===== SEARCH BAR OVERLAY ===== */
.search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,32,79,.95);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-overlay__inner { width: 100%; max-width: 700px; padding: 0 20px; }
.search-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.search-overlay__close:hover { opacity: 1; }
.search-overlay__label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.search-overlay__form {
  display: flex;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.search-overlay__form:focus-within { border-color: var(--orange); }
.search-overlay__input {
  flex: 1;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  font-family: var(--font-head);
  outline: none;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,.3); }
.search-overlay__submit {
  padding: 0 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.search-overlay__submit:hover { background: var(--orange-dk); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 40px 0;
  color: var(--white);
  margin-bottom: 40px;
}
.page-header--sports { background: linear-gradient(135deg, var(--navy) 0%, #1a3a80 60%, rgba(255,105,0,.3) 100%); }
.page-header__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-header__breadcrumb a { color: rgba(255,255,255,.6); }
.page-header__breadcrumb a:hover { color: var(--orange); }
.page-header__breadcrumb span { opacity: .4; }
.page-header__title {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
}
.page-header__sub { color: rgba(255,255,255,.65); font-size: 15px; margin-top: 8px; }

/* ===== ARTICLE / POST ===== */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px 0 60px;
}
.post__header { margin-bottom: 28px; }
.post__cats { display: flex; gap: 8px; margin-bottom: 14px; }
.post__title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.post__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}
.post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
}
.post__author { font-weight: 700; color: var(--navy); }
.post__cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 28px 0;
}
.post__cover-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin: 28px 0;
}
.post__body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-800);
}
.post__body p { margin-bottom: 20px; }
.post__body h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin: 32px 0 16px;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
}
.post__body blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--gray-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
}
.post__share {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
}
.post__share-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-600);
}
.share-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-btn--whatsapp { background: #25d366; }
.share-btn--facebook { background: #1877f2; }
.share-btn--twitter  { background: #1da1f2; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar__widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
}
.sidebar__widget-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--orange);
}
.sidebar__most-read { display: flex; flex-direction: column; gap: 0; }
.sidebar__most-read-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar__most-read-item:last-child { border-bottom: none; }
.sidebar__most-read-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.sidebar__most-read-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.3;
  transition: color .2s;
}
.sidebar__most-read-item:hover .sidebar__most-read-title { color: var(--orange); }
.sidebar__most-read-meta { font-size: 11px; color: var(--gray-400); margin-top: 4px; }
.sidebar__ad {
  background: var(--gray-100);
  border: 1px dashed var(--gray-200);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--gray-400);
  font-size: 13px;
  letter-spacing: .04em;
}

/* ===== CATEGORIA PAGE ===== */
.category-grid-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 0 0 60px;
}
.category-posts { display: flex; flex-direction: column; gap: 24px; }
.category-post-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.category-post-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.category-post-card__img {
  width: 220px;
  height: 155px;
  object-fit: cover;
  flex-shrink: 0;
}
.category-post-card__img-placeholder {
  width: 220px;
  height: 155px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  flex-shrink: 0;
}
.category-post-card__body { padding: 18px 18px 18px 0; display: flex; flex-direction: column; gap: 8px; }
.category-post-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: var(--navy);
  transition: color .2s;
}
.category-post-card:hover .category-post-card__title { color: var(--orange); }
.category-post-card__summary { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }
.category-post-card__meta { font-size: 11.5px; color: var(--gray-400); }
.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
.pagination__btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-600);
  transition: all .2s;
  background: var(--white);
}
.pagination__btn:hover { border-color: var(--orange); color: var(--orange); }
.pagination__btn--active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ===== SOBRE / CONTATO ===== */
.content-page { padding: 48px 0 80px; }
.content-page__inner { max-width: 800px; }
.content-page h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin: 32px 0 14px;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
}
.content-page p { font-size: 15px; line-height: 1.75; color: var(--gray-700); margin-bottom: 16px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.form-input, .form-textarea, .form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-800);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--orange); }
.form-textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--orange-dk); }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--white);
}
.contact-info-title { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.contact-info-val { font-size: 13.5px; color: var(--gray-600); }

/* ===== BUSCA ===== */
.search-results-header {
  padding: 32px 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 32px;
}
.search-results-header .search-form {
  display: flex;
  gap: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
  margin-bottom: 16px;
}
.search-results-header .search-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  font-size: 16px;
  outline: none;
}
.search-results-header .search-submit {
  padding: 0 22px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.search-count {
  font-size: 14px;
  color: var(--gray-600);
}
.search-count strong { color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 300px; }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .scores-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --col-gap: 16px; }

  .topbar__date { display: none; }
  .topbar__links { display: none; }

  .header__inner { height: 60px; }
  .header__banner { display: none; }
  .logo__mark { font-size: 24px; }
  .btn-subscribe { display: none; }

  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__main-title { font-size: 26px; }
  .hero__main-img-placeholder { height: 320px; }

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

  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid--3 { grid-template-columns: 1fr; }
  .news-card--feature { grid-column: span 1; }

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

  .post-layout { grid-template-columns: 1fr; }
  .post__title { font-size: 28px; }
  .post__cover-placeholder { height: 240px; }
  .sidebar { display: none; }

  .category-grid-main { grid-template-columns: 1fr; }
  .category-post-card { flex-direction: column; }
  .category-post-card__img,
  .category-post-card__img-placeholder { width: 100%; height: 200px; }
  .category-post-card__body { padding: 16px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .newsletter__title { font-size: 28px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input, .newsletter__btn { width: 100%; }

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

  .page-header__title { font-size: 32px; }
  .standings { overflow-x: auto; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .hero__main-title { font-size: 22px; }
  .scores-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-in { animation: fadeIn .5s ease both; }
@keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.hover-lift { transition: transform .2s; }
.hover-lift:hover { transform: translateY(-3px); }
