:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --off-black: #111111;
    --surface: #161616;
    --surface-2: #1E1E1E;
    --border: rgba(201,168,76,0.15);
    --border-strong: rgba(201,168,76,0.35);
    --text-primary: #F5F0E8;
    --text-secondary: #A09070;
    --text-muted: #5A5040;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── TICKER ─── */
  .ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
  }
  .ticker-label {
    background: var(--black);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ticker-track {
    display: flex;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
  }
  .ticker-track span {
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 40px;
  display: inline-flex; /* Garante o alinhamento lado a lado */
  align-items: center;  /* Centraliza a imagem e o texto verticalmente */
  gap: 10px;            /* Espaço elegante entre a foto e a letra */
}
  .ticker-track span::before { content: '◆  '; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-img {
  height: 20px;          /* Altura ideal para caber no ticker de 32px */
  width: 20px;           /* Largura igual para ficar quadrado/redondo */
  object-fit: cover;     /* Não deixa a foto esticar ou achatar */
  border-radius: 50%;    /* Deixa a foto perfeitamente redonda */
  border: 1px solid var(--black); /* Borda sutil */
}
  /* ─── HEADER ─── */
  .site-header {
    background: var(--off-black);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 32px;
    z-index: 100;
  }
  .site-header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  height: auto; /* Permite encolher um pouco */
  border-bottom: 1px solid var(--border-strong);
  }

  .site-header.scrolled .header-inner {
  height: 54px; /* Diminui de 64px para 54px */
}

/* Efeito Reveal (Surgimento suave) */
.reveal-element, .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-element.is-revealed, .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Transição suave para o grid de notícias (quando clica nas tags) */
.cards-grid {
  transition: opacity 0.3s ease;
}

  .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .site-header .logo img {
  max-height: 40px;
  width: 43px;      
  object-fit: contain; 
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--black);
    border: 1px solid var(--gold);
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 0;
  }
  .logo-mark span {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  a {
    text-decoration: none;
}
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  .logo-text .main {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    line-height: 1;
  }
  .logo-text .sub {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 3px;
  }

  .sponsors-grid {
    display: flex;
    justify-content: initial;
    align-items: initial;
    gap: 30px;
    flex-wrap: wrap;
  }

  .sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

  .sponsor-item img:hover {
      transform: scale(1.05);
  }

  .sponsor-item {
    width: 220px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
}

  .main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
  }
  .main-nav a {
    display: block;
    padding: 22px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .main-nav a:hover { color: var(--gold); }
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  .main-nav a:hover::after { transform: scaleX(1); }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .btn-search {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    transition: color 0.2s;
  }
  .btn-search:hover { color: var(--gold); }
  .btn-subscribe {
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-subscribe:hover { background: var(--gold-light); }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    display: block;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
  }

  /* ─── HERO SECTION ─── */
  .hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: auto auto;
    gap: 2px;
    background: var(--border);
  }
  .hero-main {
    grid-row: 1 / 3;
    background: var(--off-black);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-main-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1208 0%, #2d1f0a 40%, #0f0f0f 100%);
    transition: transform 0.5s ease;
  }
  .hero-main-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

  .hero-main:hover .hero-main-img { transform: scale(1.03); }
  .hero-main-img .pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
  }
  .hero-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 12px;
  }
  .hero-main-content {
    position: relative;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
  }
  .hero-main-content .category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .hero-main-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .hero-main-content p {
    font-size: 13px;
    color: rgba(245,240,232,0.7);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 20px;
  }
  .hero-main-content .meta {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 10px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }
  .read-more:hover { border-color: var(--gold); }
  .read-more::after { content: '→'; transition: transform 0.2s; }
  .read-more:hover::after { transform: translateX(4px); }

  .hero-side {
    background: var(--off-black);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: background 0.2s;
    min-height: 255px;
    position: relative;
    overflow: hidden;
  }
  .hero-side:hover { background: #1a1a1a; }
  .hero-side .hero-side-img {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background: linear-gradient(135deg, #2a1f05, #0f0f0f);
    transition: opacity 0.3s;
  }
  .hero-side:hover .hero-side-img { opacity: 0.25; }
  .hero-side-content { position: relative; }
  .hero-side .category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .hero-side h2 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  .hero-side .meta {
    font-size: 11px;
    color: var(--text-secondary);
  }
  .divider-gold {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 12px 0;
  }

  /* ─── SECTION HEADER ─── */
  .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
  }
  .section-header h2 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.03em;
  }
  .section-header .line {
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .section-header .view-all {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .section-header .view-all:hover { opacity: 0.7; }

  /* ─── MAIN CONTENT ─── */
  .main-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
  }
  .content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
  }

  /* ─── CARD GRID ─── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-bottom: 2px;
  }
  .news-card {
    background: var(--off-black);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
  }
  .news-card:hover { background: #1a1a1a; }
  .card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1c1408 0%, #2a1f08 50%, #111 100%);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }
  .card-img .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(201,168,76,0.04) 50%, transparent 80%);
  }
  .card-img .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-img .img-placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.15;
  }
  .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .card-category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .card-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 10px;
    flex: 1;
  }
  .card-excerpt {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    letter-spacing: 0.05em;
  }

  /* ─── FEATURED LIST ─── */
  .feature-list { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
  .feature-item {
    background: var(--off-black);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0;
    cursor: pointer;
    transition: background 0.2s;
    overflow: hidden;
  }
  .feature-item:hover { background: #1a1a1a; }
  .feature-item-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1c1408, #111);
    flex-shrink: 0;
  }
  .feature-item-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .feature-item-body .category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .feature-item-body h3 {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .feature-item-body .date {
    font-size: 10px;
    color: var(--text-muted);
  }

  /* ─── SIDEBAR ─── */
  .sidebar { display: flex; flex-direction: column; gap: 40px; }

  .sidebar-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }

  .newsletter-block {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .newsletter-block::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--border);
    border-radius: 50%;
  }
  .newsletter-block h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .newsletter-block p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .newsletter-input {
    width: 100%;
    background: var(--off-black);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 12px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 10px;
  }
  .newsletter-input::placeholder { color: var(--text-muted); }
  .newsletter-input:focus { border-color: var(--gold); }
  .btn-newsletter {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 13px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-newsletter:hover { background: var(--gold-light); }

  .trending-list { display: flex; flex-direction: column; }
  .trending-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .trending-item:hover { opacity: 0.75; }
  .trending-item:last-child { border-bottom: none; }
  .trending-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--border-strong);
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
  }
  .trending-text h4 {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .trending-text .cat {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ─── MAGAZINE STRIP ─── */
  .magazine-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    margin: 40px 0;
  }
  .magazine-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2px;
    background: var(--border);
  }
  .mag-item {
    background: var(--surface);
    padding: 28px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .mag-item:hover { background: #252525; }
  .mag-item:first-child { background: var(--gold-dark); }
  .mag-item:first-child:hover { background: #7a5e12; }
  .mag-item:first-child .mag-label { color: rgba(255,255,255,0.6); }
  .mag-item:first-child h3 { color: #fff; }
  .mag-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .mag-item h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  .mag-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ─── EVENTS SECTION ─── */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
  }
  .event-card {
    background: var(--off-black);
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }
  .event-card:hover { background: #1a1a1a; }
  .event-date-box {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-strong);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .event-date-box .day {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .event-date-box .month {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  .event-card h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .event-card .location {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .event-card .location::before { content: '📍'; font-size: 11px; }

  /* ─── FOOTER ─── */
  .footer {
    background: var(--off-black);
    border-top: 1px solid var(--border);
    padding: 60px 24px 0;
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-brand .logo-mark img {
  max-height: 40px;
  width: 51px;      
  object-fit: contain;
}
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
  }
  .footer-brand .logo-mark { width: 52px; height: 52px; }
  .footer-brand .logo-mark span { font-size: 19px; }
  .footer-brand p {
    font-size: 13px;
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
    margin: 16px 0 24px;
  }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    font-weight: 600;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 32px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

/* ─── CARROSSEL DE COLUNISTAS ─── */
.colunistas-carousel-section {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}

.carousel-viewport {
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  justify-content: initial;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.col-item {
  flex: 0 0 220px; 
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.col-item:hover {
  transform: translateY(-5px);
}

.col-avatar-frame {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  padding: 5px;
  position: relative;
}

.col-avatar-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.col-item:hover .col-avatar-frame img {
  filter: grayscale(0%);
}

.col-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.col-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.15em;
}

/* Navegação do Carrossel */
.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-nav button {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--gold);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
}

.carousel-nav button:hover {
  background: var(--gold);
  color: var(--black);
}

  /* ─── SECTION SPACER ─── */
  .section { margin-bottom: 60px; }

  /* ─── CATEGORY TAG ─── */
  .tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border: 1px solid var(--border);
    margin-right: 6px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .tag:hover, .tag.active { background: var(--gold); color: var(--black); }

  /* ─── SEARCH OVERLAY ─── */
  .search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 500;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
  }
  .search-overlay.open { display: flex; }
  .search-box {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
  }
  .search-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gold);
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    padding: 16px 0;
    outline: none;
    letter-spacing: 0.02em;
  }
  .search-box input::placeholder { color: var(--text-muted); }
  .search-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
  }

/* =========================================================
   ESTILOS DAS SUBPÁGINAS (PÁGINA DE MATÉRIAS E COLUNAS)
   ========================================================= */

/* ─── BARRA DE PROGRESSO DE LEITURA (MATÉRIAS) ─── */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* ─── CABEÇALHO DA PÁGINA (COLUNAS) ─── */
.page-header {
  text-align: center;
  padding: 100px 24px 60px;
  background: linear-gradient(to bottom, var(--surface), var(--black));
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.page-header p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 30px auto 0;
}

/* ─── GRID DE COLUNISTAS ─── */
.columns-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
}
.columnists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.columnist-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.columnist-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: var(--surface);
}
.col-photo-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px;
  position: relative;
}
.col-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}
.col-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  border: 2px solid var(--black);
}
.columnist-card:hover .col-photo { filter: grayscale(0%); }

.col-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.col-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.col-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  height: 60px;
}
.col-cta {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.col-cta:hover { color: var(--text-primary); border-color: var(--text-primary); }

/* ─── ESTRUTURA DA MATÉRIA (SINGLE POST) ─── */
.article-hero { 
  max-width: 900px; 
  margin: 60px auto 40px; 
  padding: 0 24px; 
  text-align: center; 
}
.article-category { 
  display: inline-block; 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 0.2em; 
  color: var(--gold); 
  text-transform: uppercase; 
  margin-bottom: 20px; 
  border: 1px solid var(--gold); 
  padding: 6px 16px; 
  text-decoration: none; 
}
.article-title { 
  font-family: var(--font-serif); 
  font-size: clamp(32px, 5vw, 52px); 
  font-weight: 500; 
  line-height: 1.2; 
  color: var(--text-primary); 
  margin-bottom: 24px; 
}
.article-lead { 
  font-size: 18px; 
  color: var(--text-secondary); 
  font-weight: 300; 
  line-height: 1.6; 
  max-width: 750px; 
  margin: 0 auto 30px; 
}
.article-meta { 
  font-size: 11px; 
  color: var(--text-muted); 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 16px; 
  flex-wrap: wrap; 
}
.meta-divider { color: var(--border-strong); }
.author-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.author-link:hover { text-decoration: underline; }

.article-cover { max-width: 1200px; margin: 0 auto 60px; padding: 0 24px; }
.article-cover figure { margin: 0; position: relative; }
.article-cover img { width: 100%; height: auto; max-height: 600px; object-fit: cover; display: block; border-bottom: 3px solid var(--gold); }
.article-cover figcaption { font-size: 11px; color: var(--text-muted); text-align: right; padding-top: 10px; font-style: italic; }

.article-body { max-width: 740px; margin: 0 auto; padding: 0 24px 80px; font-family: var(--font-serif); font-size: 21px; line-height: 1.8; color: rgba(245, 240, 232, 0.92); }
.article-body > p:first-of-type::first-letter { float: left; font-size: 80px; line-height: 65px; padding: 6px 14px 0 0; color: var(--gold); font-weight: 400; font-family: var(--font-serif); }
.article-body p { margin-bottom: 28px; }
.article-body h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin: 45px 0 20px; border-left: 3px solid var(--gold); padding-left: 15px; }

/* ─── ESTILOS ESPECIAIS (DENTRO DA MATÉRIA) ─── */
.benefits-list { list-style: none; margin: 30px 0; padding: 0; }
.benefits-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-family: var(--font-sans); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); }
.benefits-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }

.numbered-topic { margin: 45px 0 15px; }
.numbered-topic h3 { border-left: none; padding-left: 0; font-family: var(--font-sans); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.numbered-topic h3 .num { font-family: var(--font-serif); font-size: 28px; color: var(--border-strong); line-height: 1; }

.pull-quote { margin: 50px -40px; padding: 40px; border-top: 1px solid var(--border-strong); border-bottom: 1px solid var(--border-strong); text-align: center; font-size: 26px; font-style: italic; color: var(--gold-light); line-height: 1.4; }

.share-bar { display: flex; justify-content: center; gap: 16px; padding: 30px 0; border-top: 1px solid var(--border); margin-bottom: 40px; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--border-strong); color: var(--text-secondary); border-radius: 50%; text-decoration: none; transition: all 0.2s; font-size: 14px; }
.share-btn:hover { border-color: var(--gold); color: var(--black); background: var(--gold); }

/* ─── CAIXA DO AUTOR (FOOTER DA MATÉRIA) ─── */
.author-card, .author-box { background: var(--surface); border: 1px solid var(--border); padding: 40px; margin-top: 60px; display: flex; align-items: center; gap: 30px; }
.author-photo, .author-box img { width: 110px; height: 110px; border-radius: 50%; border: 2px solid var(--gold); padding: 4px; object-fit: cover; }
.author-info h4 { font-family: var(--font-serif); font-size: 24px; color: var(--text-primary); margin-bottom: 5px; }
.author-info span { font-size: 10px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; display: block; margin-bottom: 12px; }
.author-info p { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

  /* ─── RESPONSIVE EXTRA (SUBPÁGINAS) ─── */
  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main { min-height: 420px; grid-row: auto; }
    .hero-side { min-height: 200px; }
    .content-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .magazine-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .main-nav { display: none; }
    .btn-subscribe { display: none; }
    .hamburger { display: flex; }
    .cards-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .hero-main-content h1 { font-size: 26px; }
    .magazine-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .header-inner { padding: 0 16px; }
    .hero, .main-wrap { padding-left: 16px; padding-right: 16px; }
    
    /* Regras novas */
    .page-header { padding: 60px 24px; }
    .columnists-grid { grid-template-columns: 1fr; }
    .article-hero { margin: 40px auto 20px; }
    .pull-quote { margin: 40px 0; padding: 20px; font-size: 22px; }
    .author-card, .author-box { flex-direction: column; text-align: center; }
  }
  @media (max-width: 480px) {
    .events-grid { grid-template-columns: 1fr; }
    .hero-main { min-height: 360px; }
    .hero-main-content { padding: 20px; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-main-content { animation: fadeUp 0.7s ease both; }
  .hero-side-content { animation: fadeUp 0.7s 0.1s ease both; }