/* =========================================================
   POLICIAL PADRÃO — LUXURY REDESIGN
   Design System: Dark Prestige + Gold Accents
   ========================================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Color Palette — Warm Ivory / Beige Light Theme */
  --color-bg:          #f5f0e8;
  --color-surface:     #faf7f2;
  --color-surface-2:   #ede8de;
  --color-surface-3:   #e4ddd1;
  --color-border:      #d4ccc0;
  --color-border-light:#c8bfb2;

  /* Gold Accent System */
  --gold-primary:      #a07828;
  --gold-light:        #c49a3c;
  --gold-dark:         #7a5a18;
  --gold-gradient:     linear-gradient(135deg, #a07828 0%, #c49a3c 50%, #a07828 100%);

  /* Text */
  --text-primary:      #1a1612;
  --text-secondary:    #4a4440;
  --text-muted:        #7a7068;
  --text-accent:       #a07828;

  /* Category Colors */
  --cat-default:       #a07828;
  --cat-blue:          #2d5fa0;
  --cat-green:         #1e7a4a;
  --cat-purple:        #5c3ca0;
  --cat-red:           #a02828;

  /* Typography */
  --font-display:      'Playfair Display', Georgia, serif;
  --font-body:         'Inter', system-ui, sans-serif;
  --font-editorial:    'Crimson Pro', Georgia, serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;

  /* Layout */
  --max-width:  1280px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--text-muted);
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar-left a {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  transition: color var(--transition);
}

.topbar-left a:hover {
  color: var(--gold-primary);
}

.topbar-center {
  flex: 1;
  text-align: center;
}

.topbar-date {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: capitalize;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--text-muted);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition);
}

.social-icon:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(160, 120, 40, 0.08);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  filter: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1a1612;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.search-bar:focus-within {
  border-color: var(--gold-primary);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  width: 200px;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  padding: 8px 12px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.search-btn:hover {
  color: var(--gold-primary);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #faf7f2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(160, 120, 40, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  white-space: nowrap;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-outline:hover {
  background: rgba(160, 120, 40, 0.1);
  transform: translateY(-1px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.main-nav {
  background: var(--color-surface-2);
  border-bottom: 2px solid var(--gold-dark);
  position: sticky;
  top: 81px;
  z-index: 99;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link-highlight {
  color: var(--gold-primary) !important;
}

.nav-arrow {
  font-size: 9px;
  opacity: 0.7;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
}

/* =========================================================
   BREAKING NEWS TICKER
   ========================================================= */
.breaking-bar {
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
}

.breaking-label {
  background: #1a1612;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 2px solid rgba(0,0,0,0.2);
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
}

.ticker-content a {
  color: #1a1612;
  font-size: 12px;
  font-weight: 600;
  padding: 0 var(--space-lg);
  transition: opacity var(--transition);
}

.ticker-content a:hover {
  opacity: 0.7;
}

.ticker-sep {
  color: rgba(26,22,18,0.4);
  font-size: 10px;
}

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

/* =========================================================
   MAIN CONTENT
   ========================================================= */
.main-content {
  padding: var(--space-xl) 0;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  margin-bottom: var(--space-2xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-lg);
  align-items: start;
}

/* Hero Main */
.hero-main-link {
  display: block;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  min-height: 380px;
  background: var(--color-surface-2);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-link:hover .hero-img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.92) 0%,
    rgba(10,8,5,0.5) 50%,
    rgba(10,8,5,0.1) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

.hero-cat {
  display: inline-block;
  background: var(--gold-primary);
  color: #faf7f2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero-date {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Hero Side */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-side-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.hero-side-item:hover {
  border-color: var(--gold-dark);
  transform: translateX(3px);
  box-shadow: -3px 0 12px rgba(160, 120, 40, 0.15);
}

.hero-side-item > a {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
}

.hero-side-img-wrap {
  width: 100px;
  height: 70px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-surface-2);
}

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

.hero-side-item:hover .hero-side-img {
  transform: scale(1.06);
}

.hero-side-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.hero-side-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   SECTION DIVIDERS
   ========================================================= */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0 var(--space-xl);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.divider-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  white-space: nowrap;
  padding: 6px 16px;
  border: 1px solid var(--gold-dark);
  border-radius: 20px;
  background: rgba(160, 120, 40, 0.06);
}

/* =========================================================
   CATEGORY BADGES
   ========================================================= */
.cat-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(160, 120, 40, 0.12);
  color: var(--gold-primary);
  border: 1px solid rgba(160, 120, 40, 0.3);
  white-space: nowrap;
}

.cat-badge-blue {
  background: rgba(45, 95, 160, 0.12);
  color: #2d5fa0;
  border-color: rgba(45, 95, 160, 0.3);
}

.cat-badge-green {
  background: rgba(30, 122, 74, 0.12);
  color: #1e7a4a;
  border-color: rgba(30, 122, 74, 0.3);
}

.cat-badge-purple {
  background: rgba(92, 60, 160, 0.12);
  color: #5c3ca0;
  border-color: rgba(92, 60, 160, 0.3);
}

.cat-badge-gold {
  background: rgba(160, 120, 40, 0.2);
  color: var(--gold-light);
  border-color: var(--gold-dark);
}

/* =========================================================
   ARTICLE DATE & AUTHOR
   ========================================================= */
.article-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.article-author {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================================
   REGION SECTIONS
   ========================================================= */
.regions-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.region-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.region-header {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.region-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.region-title a {
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition);
}

.region-title a:hover {
  opacity: 0.8;
}

.region-cities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 10px;
}

.cities-label {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.region-cities a {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: all var(--transition);
}

.region-cities a:hover {
  color: var(--gold-primary);
  border-color: var(--gold-dark);
  background: rgba(160, 120, 40, 0.06);
}

/* Region Articles Grid */
.region-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
}

/* 2-column variant for regions with fewer articles */
.region-articles.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

.article-card-featured {
  background: var(--color-surface);
  transition: background var(--transition);
}

.article-card-featured:hover {
  background: var(--color-surface-2);
}

.article-card-featured > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-img-wrap {
  position: relative;
  aspect-ratio: 2/1;
  overflow: hidden;
  background: var(--color-surface-2);
}

.article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card-featured:hover .article-img-wrap img {
  transform: scale(1.05);
}

.article-cat-overlay {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(26, 22, 18, 0.82);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(160, 120, 40, 0.3);
  backdrop-filter: blur(4px);
}

.article-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.article-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.article-card-featured:hover .article-title {
  color: var(--gold-light);
}

.article-excerpt {
  font-family: var(--font-editorial);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

/* Region List (smaller articles) */
.region-list {
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.list-article:last-child {
  border-bottom: none;
}

.list-article:hover {
  padding-left: var(--space-sm);
}

.list-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
  transition: color var(--transition);
}

.list-article:hover .list-title {
  color: var(--gold-light);
}

.list-date {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Load More Button */
.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 13px var(--space-lg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-2);
  transition: all var(--transition);
}

.load-more-btn::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--transition);
}

.load-more-btn:hover::after {
  transform: translateX(4px);
}

.load-more-btn:hover {
  background: rgba(160, 120, 40, 0.08);
  color: var(--gold-light);
}

/* =========================================================
   ACONTECE NO BRASIL
   ========================================================= */
.brasil-section {
  margin-bottom: var(--space-lg);
}

.brasil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.brasil-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.brasil-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.brasil-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brasil-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-2);
}

.brasil-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brasil-card:hover .brasil-img-wrap img {
  transform: scale(1.05);
}

.brasil-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.brasil-body h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.brasil-card:hover .brasil-body h3 {
  color: var(--gold-light);
}

.brasil-body p {
  font-family: var(--font-editorial);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* =========================================================
   ESPORTE
   ========================================================= */
.esporte-section {
  margin-bottom: var(--space-lg);
}

.esporte-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  max-width: 800px;
  margin: 0 auto;
}

.esporte-card:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.esporte-card > a {
  display: flex;
  gap: 0;
}

.esporte-img-wrap {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-surface-2);
}

.esporte-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.esporte-card:hover .esporte-img-wrap img {
  transform: scale(1.05);
}

.esporte-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}

.esporte-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  transition: color var(--transition);
}

.esporte-card:hover .esporte-body h3 {
  color: var(--gold-light);
}

.esporte-body p {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =========================================================
   MUNDO
   ========================================================= */
.mundo-section {
  margin-bottom: var(--space-lg);
}

.mundo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.mundo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: all var(--transition);
  border-left: 3px solid var(--color-border);
}

.mundo-card:hover {
  border-color: var(--gold-dark);
  border-left-color: var(--gold-primary);
  transform: translateX(4px);
  background: var(--color-surface-2);
}

.mundo-card > a {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mundo-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  transition: color var(--transition);
}

.mundo-card:hover h4 {
  color: var(--gold-light);
}

/* =========================================================
   PAPO DE ESPECIALISTA
   ========================================================= */
.especialista-section {
  margin-bottom: var(--space-lg);
}

.especialista-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.especialista-card-featured {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.especialista-card-featured:hover {
  border-color: var(--cat-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 95, 160, 0.12);
}

.especialista-card-featured > a {
  display: flex;
  flex-direction: column;
}

.especialista-img-wrap {
  aspect-ratio: 2/1;
  overflow: hidden;
  background: var(--color-surface-2);
}

.especialista-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.especialista-card-featured:hover .especialista-img-wrap img {
  transform: scale(1.05);
}

.especialista-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.especialista-body h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  transition: color var(--transition);
}

.especialista-card-featured:hover .especialista-body h3 {
  color: #2d5fa0;
}

.especialista-list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.especialista-list .list-article {
  padding: 12px var(--space-md);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.especialista-list .list-article:last-child {
  border-bottom: none;
}

/* =========================================================
   PODCAST / PODPADRÃO
   ========================================================= */
.podcast-section {
  margin-bottom: var(--space-lg);
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.podcast-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.podcast-card:hover {
  border-color: rgba(92, 60, 160, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(92, 60, 160, 0.12);
}

.podcast-card > a {
  display: flex;
  flex-direction: column;
}

.podcast-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-2);
}

.podcast-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.5s ease;
}

.podcast-card:hover .podcast-img-wrap img {
  filter: brightness(0.85);
  transform: scale(1.03);
}

.podcast-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(160, 120, 40, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faf7f2;
  transition: all var(--transition);
}

.podcast-card:hover .podcast-play-btn {
  background: var(--gold-primary);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(160, 120, 40, 0.4);
}

.podcast-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(160, 120, 40, 0.9);
  color: #faf7f2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.podcast-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.podcast-body h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  transition: color var(--transition);
}

.podcast-card:hover .podcast-body h3 {
  color: #5c3ca0;
}

/* =========================================================
   CARREIRA POLICIAL
   ========================================================= */
.carreira-section {
  margin-bottom: var(--space-lg);
}

.carreira-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.carreira-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition);
  border-top: 3px solid var(--cat-green);
}

.carreira-card:hover {
  border-color: var(--cat-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 122, 74, 0.12);
}

.carreira-card > a {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.carreira-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  transition: color var(--transition);
}

.carreira-card:hover h4 {
  color: #1e7a4a;
}

/* =========================================================
   SIDEBAR STRIP
   ========================================================= */
.sidebar-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.sidebar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold-dark);
  margin-bottom: var(--space-md);
}

/* Trending List */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.trending-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.trending-list li:last-child {
  border-bottom: none;
}

.trending-list a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color var(--transition);
}

.trending-list a:hover {
  color: var(--gold-light);
}

/* Most Read List */
.most-read-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.most-read-list li {
  border-bottom: 1px solid var(--color-border);
}

.most-read-list li:last-child {
  border-bottom: none;
}

.most-read-list a {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 10px 0;
  transition: all var(--transition);
}

.most-read-list a:hover .most-read-title {
  color: var(--gold-light);
}

.most-read-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-border-light);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  transition: color var(--transition);
}

.most-read-list a:hover .most-read-num {
  color: var(--gold-dark);
}

.most-read-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color var(--transition);
}

/* Latest List */
.latest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.latest-list li {
  border-bottom: 1px solid var(--color-border);
}

.latest-list li:last-child {
  border-bottom: none;
}

.latest-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  transition: all var(--transition);
}

.latest-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color var(--transition);
}

.latest-list a:hover .latest-title {
  color: var(--gold-light);
}

.latest-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-surface);
  border-top: 2px solid var(--gold-dark);
  margin-top: var(--space-2xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: none;
}

.footer-tagline {
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom strong {
  color: var(--gold-primary);
}

/* =========================================================
   GOLD DIVIDER LINE ENHANCEMENT
   ========================================================= */
.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border-light), transparent);
  z-index: 0;
}

.section-divider .divider-label {
  position: relative;
  z-index: 1;
}

.section-divider .divider-line {
  display: none;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface-2);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* =========================================================
   SELECTION
   ========================================================= */
::selection {
  background: rgba(160, 120, 40, 0.25);
  color: var(--text-primary);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 320px;
  }

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

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

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-side-item > a {
    flex-direction: column;
  }

  .hero-side-img-wrap {
    width: 100%;
    height: 140px;
  }

  .region-articles {
    grid-template-columns: 1fr;
  }

  .especialista-grid,
  .podcast-grid,
  .carreira-grid,
  .mundo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .search-input {
    width: 140px;
  }
}

@media (max-width: 640px) {
  .topbar-left {
    display: none;
  }

  .topbar-center {
    text-align: left;
  }

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

  .brasil-grid,
  .especialista-grid,
  .podcast-grid,
  .carreira-grid,
  .mundo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .header-actions {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .search-bar {
    order: 3;
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .hero-title {
    font-size: 20px;
  }

  .esporte-card > a {
    flex-direction: column;
  }

  .esporte-img-wrap {
    width: 100%;
    height: 200px;
  }

  .nav-list {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* =========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section,
.region-section,
.brasil-section,
.mundo-section,
.especialista-section,
.podcast-section,
.carreira-section {
  animation: fadeInUp 0.5s ease both;
}

/* Gold shimmer on hover for featured articles */
.article-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(160, 120, 40, 0.04),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.article-card-featured {
  position: relative;
  overflow: hidden;
}

.article-card-featured:hover::before {
  left: 150%;
}

/* =========================================================
   PREMIUM FINISHING TOUCHES
   ========================================================= */

/* Gold line accent on region sections */
.region-section {
  border-top: 2px solid var(--gold-dark);
}

/* Subtle gradient background for main content */
.main-content {
  background: var(--color-bg);
}

/* Refined hero side items */
.hero-side-item {
  border-left: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-side-item:hover {
  border-left-color: var(--gold-primary);
  transform: translateX(0);
}

/* Breaking bar gold shimmer */
.breaking-label {
  position: relative;
  overflow: hidden;
}

.breaking-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Esporte section gold accent */
.esporte-card {
  border-top: 3px solid var(--gold-primary);
}

/* Brasil section card hover gold line */
.brasil-card {
  border-top: 2px solid transparent;
}

.brasil-card:hover {
  border-top-color: var(--gold-primary);
}

/* Podcast section purple accent */
.podcast-card {
  border-top: 2px solid transparent;
}

.podcast-card:hover {
  border-top-color: rgba(92, 60, 160, 0.6);
}

/* Widget section premium look */
.widget {
  position: relative;
}

.widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dark), transparent);
}

/* Footer brand column */
.footer-brand {
  grid-column: 1;
}

/* Refined nav active indicator */
.nav-link.active {
  background: rgba(160, 120, 40, 0.05);
}

/* Smooth image loading placeholder */
img {
  background: var(--color-surface-2);
}

/* Article card hover gold left border */
.article-card-featured {
  border-left: 2px solid transparent;
  transition: border-left-color var(--transition), background var(--transition);
}

.article-card-featured:hover {
  border-left-color: var(--gold-dark);
}

/* Mundo section load more */
.mundo-section .load-more-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}

/* Carreira section load more */
.carreira-section .load-more-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  border-top: none;
}

/* Podcast section load more */
.podcast-section .load-more-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  border-top: none;
}

/* Especialista section load more */
.especialista-section .load-more-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  border-top: none;
}

/* Sidebar strip gold top border */
.sidebar-strip {
  border-top: 2px solid var(--gold-dark);
}

/* Footer gold gradient top line */
.site-footer {
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}
