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

  :root {
    --vermelho: #C8102E;
    --preto: #1a1a1a;
    --creme: #F5F0E8;
    --creme-escuro: #EAE3D5;
    --cinza: #888;
    --cinza-claro: #f9f6f0;
    --branco: #fff;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--creme);
    color: var(--preto);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HERO ABERTURA ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--creme);
  }

  .hero-foto {
    position: relative;
    overflow: hidden;
    background: #2a2a2a;
  }
  .hero-foto img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(8%);
    will-change: transform;
  }
  .hero-foto-caption {
    position: absolute;
    bottom: 5rem;
    right: 2rem;
    text-align: right;
  }
  .hero-foto-caption p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: var(--branco);
    line-height: 1.5;
    background: rgba(26,26,26,0.75);
    padding: 10px 14px;
    display: inline-block;
    max-width: 250px;
  }
  .hero-foto-caption strong { display: block; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

  .hero-texto {
    padding: 4rem 4rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--creme);
  }
  .hero-byline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--cinza);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero-byline .bl-secao { color: var(--vermelho); font-weight: 600; display: flex; align-items: center; gap: 6px; }
  .hero-byline .bl-secao::before { content: '◤'; font-size: 11px; }
  .hero-byline .bl-data { color: var(--cinza); }
  .hero-byline .bl-leitura { color: var(--cinza); }

  .hero-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.7;
    color: var(--preto);
    margin-bottom: calc(2rem + 20px);
    letter-spacing: -0.5px;
  }
  @media (max-width: 900px) {
    .hero-titulo { font-size: 4.05rem; }
  }
  .hero-titulo .destaque { color: var(--vermelho); }

  .hero-chapeu {
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    line-height: 1.2;
    color: #333;
    border-left: 3px solid var(--vermelho);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .hero-chapeu strong { font-style: normal; color: var(--vermelho); }

  .hero-assina {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--cinza);
    text-transform: uppercase;
  }
  .hero-assina span { color: var(--preto); font-weight: 600; }

  /* ── LINHA DIVISÓRIA ── */
  .divisor {
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho) 0%, var(--vermelho) 40%, var(--creme-escuro) 40%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .divisor.animado {
    transform: scaleX(1);
  }

  /* ── CORPO DO ARTIGO ── */
  .artigo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 4rem;
  }

  /* ESPAÇAMENTO UNIFORME — todos os filhos diretos do artigo */
  .artigo > div {
    margin-top: 3.5rem;
  }
  .artigo > div:first-child {
    margin-top: 0;
  }

  /* TEXTO EM COLUNAS */
  .texto-duplo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 0;
    margin-bottom: 0;
  }
  /* só aplica espaço após o secao-titulo dentro do bloco */
  .secao-titulo + .texto-duplo,
  .secao-titulo + figure + .texto-duplo {
    margin-top: 1.5rem;
  }
  .texto-duplo p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #2a2a2a;
    text-indent: 1.5em;
  }

  /* TEXTO 3 COLUNAS */
  .texto-triplo {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
  }
  .texto-triplo p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #2a2a2a;
    text-indent: 1.5em;
  }

  /* SUBTÍTULOS DE SEÇÃO (h2 com classe .secao-titulo) */
  h2.secao-titulo,
  .secao-titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--vermelho);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.4rem;
    display: block;
    position: relative;
  }
  .secao-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--vermelho);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .secao-titulo.animado::after {
    width: 100%;
  }

  /* CITAÇÃO EM DESTAQUE */
  .citacao-bloco {
    background: var(--vermelho);
    padding: 3.5rem 4rem;
    margin: 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .citacao-bloco.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .citacao-bloco {
    position: relative;
  }
  .citacao-bloco blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--branco);
    line-height: 1.5;
    font-weight: 400;
    padding-left: 5rem;
    position: relative;
  }
  .citacao-bloco blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    font-style: normal;
    color: rgba(255,255,255,0.25);
    position: absolute;
    left: -0.5rem;
    top: -1.5rem;
    line-height: 1;
  }

  /* ESPAÇAMENTO ENTRE SUB-BLOCOS DENTRO DE UMA SEÇÃO */
  .fade-in > .citacao-bloco,
  .fade-in > .texto-duplo + .citacao-bloco,
  .fade-in > .citacao-bloco + .texto-duplo {
    margin-top: 3rem;
  }

  /* CITAÇÃO LATERAL (sidebar) */
  .citacao-lateral {
    border-left: 4px solid var(--vermelho);
    padding: 1rem 1.5rem;
    margin: 0;
    float: right;
    width: 45%;
    margin-left: 2.5rem;
    margin-bottom: 1rem;
  }
  .citacao-lateral p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--preto);
    line-height: 1.5;
    text-indent: 0 !important;
  }

  /* FOTOS DA CHINA */
  .fotos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 3rem 0;
  }
  .fotos-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .foto-legenda {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    grid-column: 1 / -1;
    line-height: 1.5;
  }

  /* FOTO LARGA */
  .foto-larga {
    margin: 3rem 0 1rem;
  }
  .foto-larga img {
    width: 100%;
    height: auto;
    display: block;
  }
  .foto-larga figcaption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
    margin-top: 0.5rem;
    line-height: 1.5;
  }

  /* SEPARADOR DE SEÇÃO */

  /* CARD FINAL (perfil) */
  .card-perfil {
    background: var(--branco);
    border: 1px solid var(--creme-escuro);
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    margin-top: 4rem;
    max-width: 500px;
  }
  .card-perfil-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--preto);
  }
  .card-perfil-info p {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: var(--cinza);
    text-indent: 0 !important;
  }
  .card-perfil-qr {
    width: 64px;
    height: 64px;
    background: var(--creme-escuro);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CLEARFIX */
  .clearfix::after { content: ''; display: block; clear: both; height: 0; }

  /* FADE IN */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    overflow: hidden;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-foto { height: 100vh; max-height: none; }
    .hero-texto { padding: 2.5rem 1.5rem; }
    .texto-duplo, .texto-triplo { grid-template-columns: 1fr; gap: 0; }
    .texto-duplo p, .texto-triplo p { font-size: 1.294rem; }
    .citacao-lateral { float: none; width: 100%; margin: 1.5rem 0; }
    .artigo { padding: 3rem 1.2rem; }
    .citacao-bloco { padding: 2rem 1.5rem; }
    .fotos-grid { grid-template-columns: 1fr; }
  }


  /* ── HEADER / NAV ── */
  /* Usa #bni-nav (wrapper) em vez de 'nav' para nao aplicar a regra
     no <nav> interno aninhado, o que dobrava o padding horizontal. */
  #bni-nav {
    background: var(--vermelho);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 200;
  }
  @media (max-width: 900px) {
    #bni-nav { padding: 0 20px; height: 60px; }
    .nav-btn { padding: 0 0.8rem; gap: 4px; height: 60px; }
    .nav-label { display: none; }
    .nav-btn .arrow { display: none; }
    .hero-foto-caption { bottom: 6rem; }
    .citacao-bloco { padding: 2rem 1.5rem; }
    .citacao-bloco blockquote {
      padding-left: 0;
      display: flex;
      flex-direction: column;
    }
    .citacao-bloco blockquote::before {
      position: static;
      display: block;
      font-size: 9rem;
      line-height: 0.3;
      margin-bottom: -0.5rem;
      color: rgba(255,255,255,0.25);
    }
  }
  .nav-logo svg { display: block; height: 18px; width: auto; }
  .nav-menu { display: flex; align-items: center; }
  .nav-item { position: relative; }
  .nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--branco);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 1.4rem;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .nav-btn:hover { background: rgba(255,255,255,0.12); }
  .nav-btn .arrow { font-size: 8px; transition: transform 0.2s; opacity: 0.8; }
  .nav-item.open .arrow { transform: rotate(180deg); }

  /* dropdown idiomas */
  .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--vermelho);
    min-width: 160px;
    border-top: 2px solid rgba(255,255,255,0.25);
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 300;
  }
  .nav-item.open .dropdown { display: flex; }
  .dropdown a {
    color: var(--branco);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: background 0.15s;
  }
  .dropdown a:last-child { border-bottom: none; }
  .dropdown a:hover { background: rgba(255,255,255,0.15); }

  /* ── SCROLL INDICATOR ── */
  .scroll-hint {
    display: none;
  }
  @media (max-width: 900px) {
    .scroll-hint {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      opacity: 0.75;
      animation: scrollBounce 2s ease-in-out infinite;
    }
  }
  .scroll-hint span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--branco);
  }
  .scroll-hint svg { display: block; }
  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.75; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }

  /* ── COMPARTILHAMENTO ── */
  .share-sidebar {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 150;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .share-sidebar.visible { opacity: 1; }

  .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    position: relative;
  }
  .share-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  }
  .share-btn svg { display: block; }

  .share-btn--whatsapp { background: #25D366; }
  .share-btn--linkedin { background: #0A66C2; }
  .share-btn--facebook { background: #1877F2; }
  .share-btn--copy { background: var(--preto); }

  /* Tooltip */
  .share-btn::after {
    content: attr(data-tip);
    position: absolute;
    right: 52px;
    background: var(--preto);
    color: var(--branco);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .share-btn:hover::after { opacity: 1; }

  /* Mobile bottom bar */
  .share-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--preto);
    padding: 10px 1.5rem;
    z-index: 150;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid var(--vermelho);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .share-mobile.visible { opacity: 1; }
  .share-mobile .share-btn {
    width: 44px;
    height: 44px;
  }
  .share-mobile .share-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-top: 2px;
  }
  .share-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  @media (max-width: 900px) {
    .share-sidebar { display: none; }
    .share-mobile { display: flex; }
    /* Add padding to body so content not hidden behind bar */

  }
  @media (min-width: 901px) {
    .share-mobile { display: none !important; }
  }

  /* Copied feedback */
  .share-btn--copy.copied::after { content: 'Copiado!'; opacity: 1; }

  /* ── CTA ── */
  .cta-section {
    background: var(--creme-escuro);
  }
  .cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .cta-texto h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  .cta-texto p {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: #555;
    text-indent: 0;
  }
  .cta-botoes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 1.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
  .cta-btn--whatsapp { background: #25D366; color: #fff; }
  .cta-btn--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
  .cta-btn--linkedin { background: #0A66C2; color: #fff; }
  .cta-btn--facebook { background: #1877F2; color: #fff; }
  .cta-btn--site { background: var(--vermelho); color: #fff; }
  .cta-btn--email, .cta-btn--youtube, .cta-btn--outro { background: var(--vermelho); color: #fff; }
  .cta-btn svg { flex-shrink: 0; }

  /* ── OUTRAS MATÉRIAS ── */
  .outras-materias {
    background: var(--branco);
    padding: 4rem 0;
  }
  .carrossel-outer {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
  }
  .outras-titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cinza);
    text-align: center;
    margin-bottom: 3rem;
  }
  .carrossel-wrapper {
    overflow: hidden;
    padding: 0;
  }
  .carrossel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .carrossel-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: calc(50% - 1rem);
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
    padding: 1rem 0;
  }
  .carrossel-card img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .carrossel-card-texto {}
  .carrossel-card-secao {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vermelho);
    display: block;
    margin-bottom: 0.4rem;
  }
  .carrossel-card-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--preto);
    line-height: 1.2;
    display: block;
    margin-bottom: 0.4rem;
  }
  .carrossel-card-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    color: var(--cinza);
    line-height: 1.4;
  }
  .carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vermelho);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
  }
  .carrossel-btn:hover { background: #a00d24; transform: translateY(-50%) scale(1.08); }
  .carrossel-btn--prev { left: -1.5rem; }
  .carrossel-btn--next { right: -1.5rem; }

  /* ── FOOTER ── */
  footer { position: relative; z-index: 0; isolation: isolate; }
  .footer-mobile { display: flex; flex-direction: column; background: var(--vermelho); padding: 2.5rem 1.5rem; gap: 2rem; }
  .footer-desktop { display: none; }
  @media (min-width: 901px) {
    .footer-mobile { display: none; }
    .footer-desktop {
      display: flex;
      flex-direction: row;
      background: var(--vermelho);
      padding: 4rem;
      gap: 3rem;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }
    .footer-desktop > * {
      flex: 1 1 0;
      min-width: 0;
      box-sizing: border-box;
      position: relative;
      z-index: 2;
    }
  }
  .footer-logo svg { height: 40px; width: auto; display: block; margin-bottom: 1rem; }
  .footer-tagline {
    font-family: 'Barlow', sans-serif;
    font-size: 0.975rem;
    color: rgba(255,255,255,0.7);
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .footer-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--branco);
    text-decoration: none;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color 0.2s;
  }
  .footer-nav a:first-child { border-top: 1px solid rgba(255,255,255,0.2); }
  .footer-nav a:hover { color: rgba(255,255,255,0.7); }
  .footer-newsletter h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--branco);
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .footer-newsletter p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8375rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    text-indent: 0;
  }
  .newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 1rem;
  }
  .newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--branco);
    padding: 0.6rem 0;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
  footer input[type="email"]::placeholder { color: rgba(255,255,255,0.6) !important; }
  .newsletter-form button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--branco);
    padding: 0.4rem;
    display: flex;
    align-items: center;
  }
  .newsletter-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .newsletter-check input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--branco);
    outline: none;
    box-shadow: none;
    border: none;
  }
  .newsletter-check input[type="checkbox"]:focus { outline: none; box-shadow: none; }
  .newsletter-check label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }
  .footer-bottom {
    background: #a00d24;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom span, .footer-bottom a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
  }
  .footer-bottom a:hover { color: var(--branco); }
  .footer-bottom-links { display: flex; gap: 2rem; }
  .footer-credit a { color: rgba(255,255,255,0.9) !important; font-weight: 600; }
  .footer-bottom-left { display: flex; flex-direction: column; gap: 4px; }

  @media (max-width: 900px) {
    /* CTA */
    .cta-inner {
      flex-direction: column;
      padding: 2.5rem 1.5rem;
    }
    .cta-botoes { width: 100%; flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }

    /* Carrossel */
    .carrossel-card {
      min-width: 100%;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .carrossel-card img {
      width: 100%;
      height: 200px;
    }
    .carrossel-outer { max-width: 90%; }
    .outras-materias { padding-bottom: 5rem; }

    /* Footer */
    .footer-desktop { display: none !important; }
    .footer-mobile-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-mobile-logo svg { height: 40px; margin-bottom: 0.8rem; }
    .footer-mobile-logo .footer-tagline { text-align: center; color: rgba(255,255,255,0.7); font-family: 'Barlow', sans-serif; font-size: 0.975rem; }
    .footer-mobile .footer-nav { align-items: center; }
    .footer-mobile .footer-nav a { text-align: center; }
    .footer-mobile .footer-newsletter h4,
    .footer-mobile .footer-newsletter p { text-align: center; }
    .footer-bottom {
      padding: 1rem 1.5rem;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.8rem;
    }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }

    /* Footer bottom */
    .footer-bottom {
      padding: 1rem 1.5rem;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      text-align: center;
    }
    .footer-bottom-links {
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
  }

  /* ── NAV MATÉRIAS ── */
  .nav-materias {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
  }
  .nav-materias-track-wrapper {
    flex: 1;
    overflow: hidden;
  }
  .nav-materias-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-mat-card {
    min-width: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    text-decoration: none;
    box-sizing: border-box;
  }
  .nav-mat-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .nav-mat-info {
    display: flex;
    flex-direction: column;
  }
  .nav-mat-secao {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cinza);
    margin-bottom: 0.5rem;
  }
  .nav-mat-titulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--vermelho);
    line-height: 1.15;
    font-style: italic;
  }
  .nav-mat-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--cinza);
    line-height: 1.4;
    margin-top: 0.3rem;
  }
  .nav-mat-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vermelho);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
  }
  .nav-mat-btn:hover { background: #a00d24; transform: scale(1.08); }
  @media (max-width: 900px) {
    .nav-materias { padding: 0 1rem; }
    .nav-mat-card { min-width: 100%; padding: 0 1rem; flex-direction: column; align-items: center; text-align: center; }
    .nav-mat-card img { width: 100%; height: 220px; }
    .nav-mat-btn { width: 40px; height: 40px; }
  }

  /* ── NAVEGAÇÃO ENTRE MATÉRIAS ── */
  .nav-edicao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 4rem;
    background: var(--branco);
    border-top: 1px solid var(--creme-escuro);
  }
  .nav-edicao-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--vermelho);
    color: var(--vermelho);
    background: transparent;
    transition: background 0.2s, color 0.2s;
  }
  .nav-edicao-btn:hover {
    background: var(--vermelho);
    color: var(--branco);
  }
  @media (max-width: 900px) {
    .nav-edicao {
      flex-direction: column;
      padding: 2.5rem 1.5rem;
      gap: 1rem;
    }
    .nav-edicao-btn { width: 100%; justify-content: center; }
  }

  /* ── BARRA INFERIOR FOOTER ── */
  .footer-bar {
    background: #a00d24;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-bar-copy {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
  }
  .footer-bar-links {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
  }
  .footer-bar-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }
  .footer-bar-link:hover {
    color: var(--branco);
    border-bottom: 1px solid var(--branco);
  }
  @media (max-width: 900px) {
    .footer-bar {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.2rem 1.5rem 5rem;
      gap: 0.8rem;
    }
    .footer-bar-copy { white-space: normal; font-size: 11px; }
    .footer-bar-links { flex-wrap: nowrap; justify-content: center; gap: 1.2rem; }
    .footer-bar-link { font-size: 11px; padding: 8px 4px; min-height: 44px; display: flex; align-items: center; }
  }

  /* ── FOOTER NAV LINKS ── */
  .footer-nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1rem;
    text-align: center;
    display: block;
    transition: background 0.2s, color 0.2s;
  }
  .footer-nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
  }


  /* ── READING CIRCLE ── */
  .reading-circle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 72px;
    height: 72px;
    z-index: 150;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: default;
  }
  .reading-circle.visible {
    opacity: 1;
    transform: scale(1);
  }
  .reading-circle svg {
    position: absolute;
    top: 0; left: 0;
    width: 72px; height: 72px;
    transform: rotate(-90deg);
  }
  .reading-circle-bg {
    fill: none;
    stroke: rgba(200,16,46,0.2);
    stroke-width: 4;
  }
  .reading-circle-prog {
    fill: none;
    stroke: var(--vermelho);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 201;
    stroke-dashoffset: 201;
    transition: stroke-dashoffset 0.3s ease;
  }
  .reading-circle-inner {
    position: absolute;
    inset: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--branco);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .reading-circle-mins {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--vermelho);
    line-height: 1;
  }
  .reading-circle-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza);
    line-height: 1;
    margin-top: 2px;
  }
  .reading-circle-done .reading-circle-mins {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  @media (max-width: 900px) {
    .reading-circle { bottom: 5rem; left: 1rem; width: 64px; height: 64px; }
    .reading-circle svg { width: 64px; height: 64px; }
    .reading-circle-mins { font-size: 19px; }
  }

  /* ── SLIDER DE FOTOS ── */
  .foto-slider {
    margin: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
  }
  .slider-track {
    display: flex;
  }
  .slider-slide {
    min-width: 100%;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.4s ease;
  }
  .slider-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .slider-slide figcaption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
    margin-top: 0.5rem;
    line-height: 1.5;
  }
  .slider-prev,
  .slider-next {
    position: absolute;
    top: calc(50% - 1.5rem);
    transform: translateY(-50%);
    background: var(--vermelho);
    color: #fff;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    line-height: 1;
  }
  .slider-prev { left: 0.75rem; }
  .slider-next { right: 0.75rem; }
  .slider-prev:hover,
  .slider-next:hover { background: #a00d24; }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.75rem;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }
  .slider-dot.active { background: var(--vermelho); }
  .slider-caption-global {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
    margin-top: 0.5rem;
    line-height: 1.5;
    text-align: center;
  }
