﻿*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #FFFFFF;
  color: #111111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #C8102E;
  transition: color 0.2s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col-left {
  flex: 0 0 70%;
  max-width: 70%;
}

.col-right {
  flex: 0 0 30%;
  max-width: 30%;
}

.col-3 {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #111111;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #C8102E;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #04254e;
  height: 140px;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Menu & Search Pill */
.header-actions {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 50px;
  padding: 0;
  gap: 0;
  height: 40px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 100%;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 12px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.search-toggle svg {
  width: 20px;
  height: 20px;
}

/* Logo */
.logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-main {
  height: 126px;
  width: auto;
  display: block;
  margin-left: 30px;
}

.logo-sub {
  display: none;
}

.logo-sub-line {
  display: none;
}

.logo-sub-text {
  display: none;
}

.logo-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.logo-sub-line {
  width: 30px;
  height: 1px;
  background-color: rgba(255,255,255,0.6);
}

.logo-sub-text {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-nav {
  display: none;
}

/* Mega Menu */
.mega-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding: 30px 0;
}

.mega-menu.active {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mega-menu-item {
  display: block;
  padding: 12px 0;
  color: #111111;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid #F5F5F5;
  transition: color 0.2s ease;
}

.mega-menu-item:hover {
  background-color: #04254e;
  color: #FFFFFF;
}

/* News Ticker */
.news-ticker {
  background-color: #cd211f;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.ticker-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ticker-item.highlight {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Search Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  padding-top: 100px;
}

.search-overlay.active {
  display: block;
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666666;
}

.search-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.search-input {
  width: 100%;
  padding: 20px 0;
  border: none;
  border-bottom: 3px solid #111111;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  background: transparent;
  outline: none;
}

.search-input::placeholder {
  color: #CCCCCC;
}

.search-suggestions {
  margin-top: 30px;
}

.search-suggestions h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.suggestion-list {
  list-style: none;
}

.suggestion-list li {
  padding: 8px 0;
  color: #111111;
  cursor: pointer;
  font-size: 1rem;
}

.suggestion-list li:hover {
  color: #C8102E;
}

/* Ad Placeholders */
.ad-container {
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.ad-label {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 9px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ad-top {
  width: 970px;
  height: 250px;
  margin: 24px auto;
}

.ad-middle {
  width: 728px;
  height: 90px;
  margin: 40px auto;
}

.ad-sidebar {
  width: 300px;
  height: 250px;
  margin-bottom: 24px;
}

.ad-sidebar-large {
  width: 300px;
  height: 600px;
  margin-bottom: 24px;
}

.ad-infeed {
  width: 100%;
  height: 250px;
  margin: 24px 0;
}

/* Hero Section v2 */
.hero-section-v2 {
  padding: 24px 0;
}

.hero-ad-top {
  width: 100%;
  margin-bottom: 24px;
}

.hero-ad-top img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 100%;
  align-items: stretch;
}

.hero-card-large {
  position: relative;
  grid-row: span 2;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1 / 1.05;
  display: flex;
  flex-direction: column;
}

.hero-card-large .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-card-large:hover .bg-image {
  transform: scale(1.03);
}

.hero-card-large .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.15) 65%, rgba(0,0,0,0.02) 100%);
  z-index: 2;
}

.hero-card-large .content {
  position: relative;
  z-index: 3;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.hero-card-large .label-wrap {
  margin-bottom: auto;
}

.hero-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1;
}

.hero-label.alert {
  background-color: #cd211f;
  color: #FFFFFF;
}

.hero-label.brutal {
  background-color: #cd211f;
  color: #FFFFFF;
}

.hero-label.novos {
  background-color: #cd211f;
  color: #FFFFFF;
}

.hero-card-large h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0;
  margin-top: auto;
  padding-top: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-card-small {
  display: flex;
  gap: 0;
  background: #F2F2F2;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  height: 100%;
}

.hero-card-small .thumb {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-card-small .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-card-small:hover .thumb img {
  transform: scale(1.03);
}

.hero-card-small .info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.hero-card-small .hero-label {
  margin-bottom: 10px;
  align-self: flex-start;
}

.hero-card-small h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 10px;
}

.hero-card-small p {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-card-large {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }
  .hero-card-large h2 {
    font-size: 22px;
    padding-top: 60px;
  }
}

/* Hero Section */
.hero-section {
  padding: 24px 0;
}

.hero-main {
  position: relative;
}

.hero-main .card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero-main .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-main:hover .card-image img {
  transform: scale(1.02);
}

.hero-main .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #cd211f;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.hero-main h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111111;
}

.hero-main .excerpt {
  font-size: 18px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-main .meta {
  font-size: 13px;
  color: #999999;
}

.hero-main .meta span {
  margin-right: 12px;
}

.hero-side .card {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}

.hero-side .card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-side .card-image {
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.hero-side .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side .card-content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #111111;
}

.hero-side .meta {
  font-size: 12px;
  color: #999999;
}

/* Trending Section */
.trending-section {
  padding: 40px 0;
  border-top: 1px solid #ECECEC;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.colunistas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.card {
  display: block;
}

.card-image {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #cd211f;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 8px;
}

.meta {
  font-size: 12px;
  color: #999999;
}

/* Highlights Section */
.highlights-section {
  padding: 40px 0;
  border-top: 1px solid #ECECEC;
}

.card-large .card-image {
  aspect-ratio: 16/10;
  margin-bottom: 16px;
}

.card-large h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card-large .excerpt {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Short Videos Section */
.videos-section {
  padding: 40px 0;
  border-top: 1px solid #ECECEC;
  overflow: hidden;
}

.video-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  position: relative;
}

.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.video-card h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
}

/* Read Also Section */
.read-also-section {
  padding: 40px 0;
  border-top: 1px solid #ECECEC;
}

.read-also-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.read-also-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.read-also-item .thumb {
  width: 100px;
  height: 75px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.read-also-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.read-also-item h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

/* Main Content Layout */
.main-content-area {
  padding: 40px 0;
  border-top: 1px solid #ECECEC;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.widget {
  margin-bottom: 32px;
}

.widget-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #111111;
}

.most-read-list {
  list-style: none;
  counter-reset: most-read;
}

.most-read-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ECECEC;
  counter-increment: most-read;
}

.most-read-list li::before {
  content: counter(most-read, decimal-leading-zero);
  font-size: 24px;
  font-weight: 900;
  color: #ECECEC;
  line-height: 1;
  min-width: 32px;
}

.most-read-list h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

/* Infinite Feed */
.latest-news-section {
  padding: 40px 0;
}

.feed-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #ECECEC;
}

.feed-card .feed-image {
  width: 280px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.feed-card .feed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feed-card:hover .feed-image img {
  transform: scale(1.02);
}

.feed-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feed-content h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.feed-content .excerpt {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.load-more {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 40px auto;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border: 2px solid #111111;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.load-more:hover {
  background-color: #111111;
  color: #FFFFFF;
}

/* Newsletter */
.newsletter-section {
  background-color: #F8F8F8;
  padding: 60px 0;
  margin: 40px 0;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ECECEC;
  font-size: 15px;
  outline: none;
  background: #FFFFFF;
}

.newsletter-form input:focus {
  border-color: #C8102E;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #C8102E;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #9D1028;
}

.lgpd-text {
  font-size: 12px;
  color: #999999;
}

/* TV Block */
.tv-section {
  padding: 40px 0;
  position: relative;
}

.tv-banner {
  position: relative;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://picsum.photos/1920/400') center/cover;
}

.tv-content {
  text-align: center;
  color: #FFFFFF;
}

.tv-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  padding: 60px 0 0;
  background-color: #04254e;
  color: #c0c8d4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 76px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-text {
  font-size: 14px;
  color: #8a9bb5;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: #FFFFFF;
  transition: background-color 0.2s ease;
}

.footer-social:hover {
  background-color: #cd211f;
}

.footer-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: #cd211f;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #c0c8d4;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #6b7fa0;
}

.footer-bottom a {
  color: #8a9bb5;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Article Page */
.article-header {
  padding: 40px 0 24px;
  max-width: 800px;
  margin: 0 auto;
}

.article-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #C8102E;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.article-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111111;
}

.article-subtitle {
  font-size: 20px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 400;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 24px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ECECEC;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.publish-date {
  font-size: 13px;
  color: #999999;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  color: #111111;
  transition: background-color 0.2s ease;
}

.share-btn:hover {
  background-color: #ECECEC;
}

.article-featured-image {
  width: 100%;
  margin-bottom: 32px;
}

.article-featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4px;
  font-size: 20px;
  line-height: 1.8;
  color: #333333;
}

.article-body p {
  margin-bottom: 24px;
}

/* Share Fixed */
.share-fixed {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
}

/* Related */
.related-section {
  padding: 40px 0;
  border-top: 1px solid #ECECEC;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: #04254e;
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
  display: block;
}

.mobile-menu-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header .logo {
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
}

.mobile-menu-header .logo span {
  color: #cd211f;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #FFFFFF;
}

.mobile-nav {
  list-style: none;
  padding: 16px 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background-color: #063a6b;
  color: #FFFFFF;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2999;
}

.mobile-overlay.active {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .col-left, .col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .sidebar {
    position: static;
    margin-top: 40px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ad-top, .ad-middle {
    width: 100%;
    height: auto;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-main {
    height: 63px;
  }

  .header .main-container {
    padding: 0 12px;
  }

  .hero-main h1 {
    font-size: 28px;
  }

  .card-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .colunistas-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .read-also-grid {
    grid-template-columns: 1fr;
  }

  .feed-card {
    flex-direction: column;
  }

  .feed-card .feed-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-title {
    font-size: 32px;
  }

  .share-fixed {
    display: none;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

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

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

  .container,
  .main-container {
    padding: 0 24px;
  }

  .hero-section-v2 {
    padding: 0;
  }

  .article-header {
    padding-left: 0;
    padding-right: 0;
  }

  .article-body {
    padding: 0;
    font-size: 18px;
  }

  .related-section .card {
    padding: 0 4px;
  }

  .tv-banner {
    height: 250px;
  }

  .tv-content h2 {
    font-size: 24px;
  }

  .ad-middle {
    min-height: 100px;
  }
}

/* ===== EDITORIAL FEED SECTION ===== */
.editorial-section {
  padding: 30px 0;
  border-top: 1px solid #ECECEC;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Feed Cards - Lista Vertical */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feed-item {
  display: flex;
  gap: 0;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #F0F0F0;
  transition: box-shadow 0.2s ease;
}

.feed-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feed-item > a {
  display: flex;
  width: 100%;
  color: inherit;
}

.feed-item .thumb {
  width: 42%;
  min-height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.feed-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.feed-item:hover .thumb img {
  transform: scale(1.03);
}

.feed-item .info {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.feed-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cd211f;
  margin-bottom: 8px;
}

.feed-item h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 10px;
}

.feed-item p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-item .date {
  font-size: 12.5px;
  color: #999999;
  font-weight: 500;
}

/* Sidebar - Ad + Mais Recentes */
.editorial-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-ad {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-recentes {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #F0F0F0;
}

.sidebar-recentes .section-title {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.sidebar-recentes .section-title::after {
  width: 40px;
  height: 3px;
}

.recente-item {
  padding: 14px 0;
  border-bottom: 1px solid #ECECEC;
}

.recente-item:last-child {
  border-bottom: none;
}

.recente-item h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  margin-bottom: 6px;
}

.recente-item h4 a {
  color: #111111;
}

.recente-item h4 a:hover {
  color: #C8102E;
}

.recente-item .date {
  font-size: 12px;
  color: #999999;
}

@media (max-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .editorial-sidebar {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
  .sidebar-ad {
    max-width: 300px;
    flex-shrink: 0;
    margin: 0;
  }
}

@media (max-width: 768px) {
  /* Hero Grid: empilha os cards */
  .hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Card Grande: ocupa toda a largura com proporção correta */
  .hero-card-large {
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }
  .hero-card-large h2 {
    font-size: 20px;
    padding-top: 40px;
  }

  /* Cards Pequenos do Hero: imagem à esquerda, texto à direita (estilo Bacci Notícias) */
  .hero-card-small {
    flex-direction: row !important;
    height: auto;
    min-height: 120px;
  }
  .hero-card-small .thumb {
    width: 120px !important;
    min-height: 120px;
    flex-shrink: 0;
  }
  .hero-card-small .thumb img {
    height: 100%;
    object-fit: cover;
  }
  .hero-card-small .info {
    padding: 12px 16px;
    justify-content: flex-start;
  }
  .hero-card-small h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero-card-small p {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  /* Feed de Notícias: imagem à esquerda, texto à direita */
  .feed-item {
    flex-direction: row !important;
  }
  .feed-item .thumb {
    width: 130px !important;
    min-height: 130px;
    flex-shrink: 0;
  }
  .feed-item .info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .feed-item h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .feed-item p {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .feed-item .date {
    font-size: 12px;
    margin-top: auto;
  }

  /* Sidebar: oculta no mobile para o feed ocupar 100% da largura (igual ao site de referência) */
  .editorial-sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .container,
  .main-container {
    padding: 0 16px;
  }

  .hero-card-large h2 {
    font-size: 18px;
    padding-top: 32px;
  }

  .hero-card-small .thumb {
    width: 110px !important;
    min-height: 110px;
  }
  
  .feed-item .thumb {
    width: 110px !important;
    min-height: 110px;
  }
  
  .feed-item h3 {
    font-size: 15px;
  }
}

.hidden {
  display: none;
}
