:root {
  --rng-bg: #0a0a0a;
  --rng-bg-soft: #0f0f0f;
  --rng-panel: #121212;
  --rng-panel-2: #171717;
  --rng-line: #363636;
  --rng-line-soft: #252525;
  --rng-red: #c1121f;
  --rng-red-bright: #e03a32;
  --rng-text: #f4f4f1;
  --rng-muted: #a8a8a5;
  --rng-warm: #d5c7ad;
  --rng-radius: 4px;
  --rng-shell: 1440px;
  --rng-shadow: 0 18px 50px rgba(0,0,0,.35);
}

html { scroll-behavior: smooth; background: var(--rng-bg); overflow-x: clip; }
body { background: var(--rng-bg); overflow-x: clip; }
body.elementor-page { overflow-x: clip; }

/*
 * A página inicial é montada por um shortcode dentro do Elementor.
 * Alguns modelos do tema deixam um fundo azul-acinzentado e pequenos
 * espaçamentos acima e abaixo do widget. O reset abaixo atua somente
 * na home do portal e mantém páginas internas intactas.
 */
body.rng-portal-homepage {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--rng-bg) !important;
}

body.rng-portal-homepage #page,
body.rng-portal-homepage .site,
body.rng-portal-homepage .site-content,
body.rng-portal-homepage .ast-container,
body.rng-portal-homepage #primary,
body.rng-portal-homepage .content-area,
body.rng-portal-homepage .entry-content,
body.rng-portal-homepage .elementor,
body.rng-portal-homepage .elementor-section-wrap,
body.rng-portal-homepage .elementor > .elementor-element,
body.rng-portal-homepage .e-con.e-parent,
body.rng-portal-homepage .e-con-inner,
body.rng-portal-homepage .elementor-widget-shortcode,
body.rng-portal-homepage .elementor-widget-shortcode > .elementor-widget-container,
body.rng-portal-homepage .elementor-shortcode {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-color: var(--rng-bg) !important;
}

.rng-site,
.rng-site * { box-sizing: border-box; }

.rng-site {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  /* O recorte horizontal fica no documento. Manter este contêiner sem
     overflow vertical é essencial para o cabeçalho sticky funcionar. */
  overflow: visible;
  background:
    radial-gradient(circle at 12% 5%, rgba(193,18,31,.08), transparent 28%),
    linear-gradient(180deg, #090909, #0b0b0b 55%, #080808);
  color: var(--rng-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.rng-site a { color: inherit; text-decoration: none; }
.rng-site img { display: block; max-width: 100%; }
.rng-site svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rng-site button { font: inherit; }
.rng-shell { width: min(calc(100% - 64px), var(--rng-shell)); margin-inline: auto; }

.rng-header {
  position: sticky;
  z-index: 9999;
  top: 0;
  background: rgba(6,6,6,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

/* Ao rolar, o cabeçalho fica discretamente mais compacto e ganha
   profundidade, sem abandonar o preto, o vermelho e o metal da marca. */
.rng-header.is-scrolled {
  background: rgba(5,5,5,.88);
  border-bottom-color: rgba(224,58,50,.34);
  box-shadow: 0 12px 34px rgba(0,0,0,.48), 0 1px 0 rgba(193,18,31,.14);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

body.admin-bar .rng-header { top: 32px; }

.rng-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
  transition: min-height .28s ease, gap .28s ease;
}

.rng-header.is-scrolled .rng-header__inner {
  min-height: 72px;
}

.rng-brand { display: inline-flex; align-items: center; width: fit-content; }
.rng-brand img { max-height: 56px; width: auto; transition: max-height .28s ease, opacity .28s ease; }
.rng-header.is-scrolled .rng-brand img { max-height: 46px; }
.rng-brand span,
.rng-footer__logo span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  color: #d7d3ca;
  text-shadow: 0 1px 0 #fff, 0 3px 10px rgba(0,0,0,.9);
  background: linear-gradient(180deg,#f0ede6,#8f8b82 48%,#d7d3ca 70%,#69665f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rng-nav { display: flex; justify-content: center; align-items: stretch; gap: 30px; }
.rng-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  color: #eee;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, min-height .28s ease;
}
.rng-nav a::after {
  content: "";
  position: absolute;
  right: 50%; bottom: 0; left: 50%;
  height: 3px;
  background: var(--rng-red-bright);
  transition: left .2s ease,right .2s ease;
}
.rng-nav a:hover,
.rng-nav a.is-active { color: #fff; }
.rng-nav a:hover::after,
.rng-nav a.is-active::after { left: 0; right: 0; }
.rng-header.is-scrolled .rng-nav a { min-height: 72px; }
.rng-header.is-scrolled .rng-btn--small { min-height: 38px; padding-inline: 22px; }

.rng-header__tools { display: flex; align-items: center; gap: 20px; }
.rng-search { display: grid; place-items: center; width: 40px; height: 40px; font-size: 24px; }
.rng-menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.rng-menu-toggle > span:not(.screen-reader-text) { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; }
.screen-reader-text { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }

.rng-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.rng-btn:hover { transform: translateY(-2px); }
.rng-btn--primary { background: linear-gradient(180deg, var(--rng-red-bright), var(--rng-red)); box-shadow: 0 10px 26px rgba(193,18,31,.22); }
.rng-btn--primary:hover { background: #e13b33; }
.rng-btn--ghost { background: rgba(5,5,5,.5); border-color: #d0d0d0; }
.rng-btn--ghost:hover { border-color: var(--rng-red-bright); }
.rng-btn--outline { border-color: var(--rng-red); background: transparent; }
.rng-btn--small { min-height: 42px; padding-inline: 24px; font-size: 13px; }
.rng-btn--tiny { min-height: 34px; padding-inline: 18px; font-size: 12px; }

.rng-hero {
  position: relative;
  min-height: clamp(340px, 31vw, 440px);
  display: flex;
  align-items: center;
  background-image: var(--rng-hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.rng-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.05);
}
.rng-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,4,4,.96) 0%, rgba(5,5,5,.78) 34%, rgba(5,5,5,.22) 67%, rgba(5,5,5,.25) 100%),
    linear-gradient(0deg, rgba(5,5,5,.78), transparent 35%),
    radial-gradient(circle at 23% 25%, rgba(193,18,31,.24), transparent 27%);
}
.rng-hero__content { padding-block: 42px; }
.rng-kicker {
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 16px;
  color: #ff554d;
  background: rgba(193,18,31,.18);
  border-left: 3px solid var(--rng-red-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
}
.rng-hero h1 {
  max-width: 660px;
  margin: 0 0 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.rng-hero p { max-width: 570px; margin: 0; color: #f0f0ee; font-size: clamp(16px,1.2vw,20px); line-height: 1.45; }
.rng-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.rng-actions--home { align-items: center; }
.rng-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 4px;
  color: #f2f2ef;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 5px;
  transition: color .2s ease, transform .2s ease;
}
.rng-hero-link span {
  color: var(--rng-red-bright);
  font-size: 17px;
  line-height: 1;
  transition: transform .2s ease;
}
.rng-hero-link:hover,
.rng-hero-link:focus-visible { color: #fff; text-decoration: underline; }
.rng-hero-link:hover span,
.rng-hero-link:focus-visible span { transform: translateY(3px); }
.rng-actions--compact { margin-top: 26px; }

.rng-section { padding: 42px 0; border-top: 1px solid rgba(255,255,255,.045); }
.rng-section--news { padding-top: 30px; background: linear-gradient(180deg, #101010, #0c0c0c); }
.rng-section--split { padding-top: 18px; }
.rng-section--panels { padding-top: 16px; }

.rng-section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}
.rng-section-title h2,
.rng-panel > h2 {
  position: relative;
  margin: 0;
  padding-bottom: 9px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.rng-section-title h2::after,
.rng-panel > h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 2px;
  background: var(--rng-red-bright);
}
.rng-section-title a { display: inline-flex; align-items: center; gap: 3px; color: #ddd; font-size: 13px; }
.rng-section-title a svg { color: var(--rng-red-bright); font-size: 18px; }
.rng-section-title--compact { margin-bottom: 10px; }
.rng-section-title--simple { margin-bottom: 16px; }

.rng-news-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 12px; }
.rng-news-card { min-width: 0; overflow: hidden; background: #121212; border: 1px solid #3a3a3a; border-radius: var(--rng-radius); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.rng-news-card:hover { transform: translateY(-5px); border-color: #5a5a5a; box-shadow: var(--rng-shadow); }
.rng-card-media { position: relative; aspect-ratio: 1.55/1; overflow: hidden; background: #191919; }
.rng-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.rng-news-card:hover .rng-card-media img { transform: scale(1.045); filter: saturate(1.08); }
.rng-tag { position: absolute; z-index: 2; top: 10px; left: 10px; padding: 4px 8px; color: #fff; background: var(--rng-red); border-radius: 2px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.rng-news-card__body { padding: 13px 12px 12px; }
.rng-news-card h3 { min-height: 43px; margin: 0 0 13px; font-size: 14px; line-height: 1.35; }
.rng-news-card h3 a:hover,
.rng-feature-item h3 a:hover,
.rng-event-card h3 a:hover { color: #ff4a42; }
.rng-meta { display: inline-flex; align-items: center; gap: 6px; color: #9d9d9a; font-size: 11px; }
.rng-meta svg { flex: 0 0 auto; font-size: 14px; }

.rng-events-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.rng-event-card { min-width: 0; display: grid; grid-template-columns: 46% 54%; min-height: 215px; overflow: hidden; border: 1px solid #8a7963; border-radius: var(--rng-radius); background: #141414; }
.rng-event-card__poster { min-height: 100%; overflow: hidden; }
.rng-event-card__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.rng-event-card:hover .rng-event-card__poster img { transform: scale(1.035); }
.rng-event-card__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px; }
.rng-event-card h3 { margin: 0 0 18px; font-size: 19px; line-height: 1.22; }
.rng-event-card .rng-meta { margin: 4px 0; }
.rng-event-card .rng-btn { margin-top: 16px; }

.rng-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.rng-column-block--bordered { padding-left: 28px; border-left: 1px solid #2c2c2c; }
.rng-feature-list { display: grid; gap: 12px; }
.rng-feature-item { display: grid; grid-template-columns: 39% 1fr; min-height: 134px; overflow: hidden; background: #111; border: 1px solid #2d2d2d; }
.rng-feature-item__image { overflow: hidden; }
.rng-feature-item__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.rng-feature-item:hover img { transform: scale(1.035); }
.rng-feature-item > div { padding: 13px 16px; }
.rng-feature-item h3 { margin: 0 0 6px; font-size: 16px; line-height: 1.23; }
.rng-feature-item p { margin: 0 0 8px; color: #aaa; font-size: 12px; line-height: 1.4; }

.rng-panels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rng-panel { min-height: 320px; padding: 18px; background: linear-gradient(140deg,#151515,#0f0f0f); border: 1px solid #3a3a3a; border-radius: var(--rng-radius); }
.rng-panel > h2 { margin-bottom: 18px; }
.rng-playlist-demo { display: grid; grid-template-columns: 165px 1fr; gap: 20px; align-items: start; }
.rng-playlist-cover { aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; background: radial-gradient(circle at 70% 20%,rgba(193,18,31,.36),transparent 26%),linear-gradient(135deg,#252525,#080808); border: 1px solid #464646; text-align: center; }
.rng-playlist-cover span { font-family: "Barlow Condensed",sans-serif; font-size: 40px; font-weight: 800; line-height: .83; color: #d9d5cc; }
.rng-playlist-cover small { margin-top: 16px; color: #aaa; font-size: 9px; letter-spacing: .14em; }
.rng-playlist-copy > strong { display: block; font-size: 15px; }
.rng-playlist-copy > p { margin: 4px 0 14px; color: #aaa; font-size: 12px; }
.rng-playlist-copy ol { list-style-position: inside; margin: 0; padding: 0; }
.rng-playlist-copy li { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 10px; padding: 6px 0; border-bottom: 1px solid #252525; font-size: 12px; }
.rng-playlist-copy em { color: #aaa; font-style: normal; }
.rng-playlist-copy b { color: #aaa; font-weight: 500; }
.rng-spotify-frame { border-radius: 8px; }

.rng-community h3 { margin: 10px 0 0; font-family: "Barlow Condensed",sans-serif; font-size: 28px; }
.rng-community > p { max-width: 560px; margin: 4px 0 18px; color: #b0b0ad; }
.rng-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.rng-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #f2f2f2;
  background: rgba(255,255,255,.015);
  border: 1px solid #515151;
  border-radius: 50%;
  transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.rng-socials a svg { display: block; width: 18px; height: 18px; fill: currentColor; stroke: none; }
.rng-socials a svg * { stroke: none; }
.rng-socials a:hover { transform: translateY(-2px); background: rgba(255,255,255,.04); }

/* Redes principais do RockNGo: preserva o desenho vetorial original e
   unifica a cor com o vermelho oficial do portal. */
.rng-socials .rng-social--instagram,
.rng-socials .rng-social--youtube,
.rng-socials .rng-social--tiktok {
  color: var(--rng-red-bright);
  border-color: rgba(224,58,50,.62);
  background: rgba(193,18,31,.055);
}
.rng-socials .rng-social--instagram:hover,
.rng-socials .rng-social--youtube:hover,
.rng-socials .rng-social--tiktok:hover {
  color: #fff;
  border-color: var(--rng-red-bright);
  background: linear-gradient(180deg,var(--rng-red-bright),var(--rng-red));
  box-shadow: 0 0 0 3px rgba(224,58,50,.13), 0 8px 22px rgba(193,18,31,.20);
}
.rng-socials .rng-social--instagram:focus-visible,
.rng-socials .rng-social--youtube:focus-visible,
.rng-socials .rng-social--tiktok:focus-visible {
  outline: 2px solid var(--rng-red-bright);
  outline-offset: 3px;
}
.rng-socials .rng-social--facebook:hover { color: #1877f2; border-color: #1877f2; box-shadow: 0 0 0 3px rgba(24,119,242,.11); }
.rng-socials .rng-social--x:hover { color: #ffffff; border-color: #ffffff; box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.rng-socials--small a { width: 30px; height: 30px; }
.rng-socials--small a svg { width: 14px; height: 14px; }
.rng-member-row { display: flex; align-items: center; margin-top: 22px; }
.rng-member-row span { display: grid; place-items: center; width: 38px; height: 38px; margin-right: -7px; border: 2px solid #121212; border-radius: 50%; background: linear-gradient(145deg,#777,#1b1b1b); font-size: 11px; font-weight: 800; }
.rng-member-row strong { margin-left: 18px; color: #f0463f; font-size: 13px; }

.rng-partners-section { padding-top: 14px; }
.rng-partners { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); border-top: 1px solid #292929; border-bottom: 1px solid #292929; }
.rng-partner { min-height: 94px; display: grid; place-items: center; padding: 16px; opacity: .75; filter: grayscale(1); border-right: 1px solid #242424; transition: opacity .2s ease,filter .2s ease,background .2s ease; }
.rng-partner:last-child { border-right: 0; }
.rng-partner:hover { opacity: 1; filter: grayscale(0); background: #111; }
.rng-partner img { max-height: 54px; width: auto; }
.rng-partner span { font-family: "Barlow Condensed",sans-serif; font-size: 22px; font-weight: 800; color: #c7c7c4; text-transform: uppercase; text-align: center; }

/* Rodapé editorial — v1.5.0 */
.rng-footer { margin-top: 12px; background: #0c0c0c; border-top: 1px solid #2b2b2b; }
.rng-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .82fr .72fr 1.35fr;
  gap: clamp(38px,4.2vw,68px);
  padding-block: 48px 44px;
}
.rng-footer__brand { align-self: start; }
.rng-footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  color: inherit;
  text-decoration: none;
}
.rng-footer__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 72px;
  object-fit: contain;
  transition: opacity .2s ease, transform .2s ease;
}
.rng-footer__logo:hover img { opacity: .94; transform: translateY(-1px); }
.rng-footer__tagline {
  display: grid;
  gap: 4px;
  max-width: 380px;
  margin: 0 0 22px;
  color: #aaa;
  font-size: 12px;
  line-height: 1.65;
}
.rng-footer__tagline span { margin: 0; color: inherit; font-size: inherit; }
.rng-footer__brand .rng-socials { margin-top: 0; }
.rng-footer__brand .rng-socials--small { gap: 9px; }
.rng-footer__brand .rng-socials--small .rng-social { width: 31px; height: 31px; }
.rng-footer h3 {
  position: relative;
  margin: 0 0 19px;
  padding-bottom: 10px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .025em;
}
.rng-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--rng-red-bright);
}
.rng-footer__column { display: flex; flex-direction: column; align-items: flex-start; }
.rng-footer__column > a,
.rng-footer__column > span {
  margin: 0 0 9px;
  color: #bbb;
  font-size: 12px;
  line-height: 1.45;
}
.rng-footer__column > a {
  transition: color .2s ease, transform .2s ease;
}
.rng-footer__column > a:hover {
  color: #ff5149;
  transform: translateX(2px);
}
.rng-footer__contact-link { overflow-wrap: anywhere; }
.rng-footer__pitch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px !important;
  color: #f4f4f1 !important;
  font-weight: 700;
}
.rng-footer__pitch span { margin: 0; color: var(--rng-red-bright); font-size: 15px; transition: transform .2s ease; }
.rng-footer__pitch:hover span { transform: translateX(3px); }
.rng-newsletter-visual { width: 100%; margin-top: 25px; padding-top: 22px; border-top: 1px solid #242424; }
.rng-newsletter-visual h3 { margin-bottom: 14px; }
.rng-newsletter-visual p { max-width: 430px; margin: 0 0 14px; color: #999; font-size: 11px; line-height: 1.55; }
.rng-newsletter-form { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; min-height: 44px; border: 1px solid #3c3c3c; background: #0b0b0b; transition: border-color .2s ease, box-shadow .2s ease; }
.rng-newsletter-form:focus-within { border-color: rgba(224,58,50,.8); box-shadow: 0 0 0 3px rgba(224,58,50,.10); }
.rng-newsletter-form input[type="email"] { min-width: 0; width: 100%; border: 0; outline: 0; padding: 11px 13px; color: #f4f4f1; background: transparent; font-size: 11px; }
.rng-newsletter-form input[type="email"]::placeholder { color: #747474; opacity: 1; }
.rng-newsletter-form button { min-width: 112px; border: 0; background: var(--rng-red-bright); color: #fff; padding: 0 17px; font-size: 11px; font-weight: 700; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.rng-newsletter-form button:hover { background: #f0473f; }
.rng-newsletter-form button:active { transform: translateY(1px); }
.rng-newsletter-form button:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }
.rng-newsletter-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.rng-newsletter-visual > small { display: block; margin-top: 9px; color: #777; font-size: 9px; line-height: 1.5; }
.rng-newsletter-visual > small a { color: #aaa; text-decoration: underline; text-underline-offset: 2px; }
.rng-newsletter-message { margin: 0 0 10px; padding: 8px 10px; border-left: 3px solid #777; background: rgba(255,255,255,.035); color: #cfcfcb; font-size: 10px; line-height: 1.4; }
.rng-newsletter-message.is-success { border-left-color: #42b883; color: #bdebd5; }
.rng-newsletter-message.is-info { border-left-color: #d6a84b; color: #ead6aa; }
.rng-newsletter-message.is-error { border-left-color: var(--rng-red-bright); color: #ffc4c0; }
.rng-footer__bottom { min-height: 62px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid #252525; color: #f4f4f1; font-size: 12px; font-weight: 500; line-height: 1.5; }
.rng-footer__bottom a { color: #f4f4f1; text-decoration: none; text-underline-offset: 3px; }
.rng-footer__bottom a:hover { color: #ff4a42; text-decoration: underline; }

@media (max-width: 1280px) {
  .rng-shell { width: min(calc(100% - 40px), var(--rng-shell)); }
  .rng-header__inner { grid-template-columns: 190px 1fr auto; gap: 14px; }
  .rng-nav { gap: 20px; }
  .rng-nav a { font-size: 15px; }
  .rng-brand span { font-size: 31px; }
  .rng-news-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .rng-news-card h3 { min-height: auto; font-size: 15px; }
}

@media (max-width: 1050px) {
  .rng-header__inner { grid-template-columns: 1fr auto auto; }
  .rng-menu-toggle { display: block; order: 2; }
  .rng-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    padding: 18px 24px 24px;
    background: #080808;
    border-top: 1px solid #222;
    border-bottom: 1px solid #333;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .rng-nav.is-open { display: flex; }
  .rng-nav a { min-height: 48px; font-size: 16px; }
  .rng-nav a::after { display: none; }
  .rng-header__tools { order: 3; }
  .rng-split-grid,
  .rng-panels-grid { grid-template-columns: 1fr; }
  .rng-column-block--bordered { padding-left: 0; border-left: 0; }
  .rng-events-grid { grid-template-columns: 1fr; }
  .rng-event-card { grid-template-columns: 35% 1fr; }
  .rng-partners { grid-template-columns: repeat(3,1fr); }
  .rng-footer__grid { grid-template-columns: 1.25fr .85fr .85fr; gap: 36px; }
  .rng-footer__contact { grid-column: 1/-1; display: grid; grid-template-columns: minmax(220px,.65fr) minmax(0,1.35fr); column-gap: 46px; }
  .rng-footer__contact > h3,
  .rng-footer__contact > a,
  .rng-footer__contact > span { grid-column: 1; }
  .rng-footer__contact .rng-newsletter-visual { grid-column: 2; grid-row: 1 / span 6; margin-top: 0; padding-top: 0; border-top: 0; }
}

@media (max-width: 782px) {
  body.admin-bar .rng-header { top: 46px; }
}

@media (max-width: 720px) {
  .rng-shell { width: min(calc(100% - 28px), var(--rng-shell)); }
  .rng-header__inner { min-height: 70px; }
  .rng-header.is-scrolled .rng-header__inner { min-height: 62px; }
  .rng-brand span { font-size: 28px; }
  .rng-brand img { max-height: 44px; }
  .rng-header.is-scrolled .rng-brand img { max-height: 38px; }
  .rng-header.is-scrolled .rng-nav a { min-height: 44px; }
  .rng-header__tools .rng-search { display: none; }
  .rng-header__tools .rng-btn { padding-inline: 13px; min-height: 34px; }
  .rng-hero { min-height: 430px; align-items: flex-end; background-position: 64% center; }
  .rng-hero__veil { background: linear-gradient(0deg,rgba(4,4,4,.98) 0%,rgba(4,4,4,.8) 46%,rgba(4,4,4,.25) 100%),linear-gradient(90deg,rgba(4,4,4,.75),transparent); }
  .rng-hero__content { padding-block: 48px 34px; }
  .rng-hero h1 { font-size: clamp(42px,13vw,58px); }
  .rng-hero p { font-size: 16px; }
  .rng-actions { gap: 10px; }
  .rng-actions .rng-btn { flex: 1 1 180px; }
  .rng-actions--home { align-items: flex-start; }
  .rng-actions--home .rng-btn { flex: 0 1 auto; }
  .rng-actions--home .rng-hero-link { min-height: 44px; }
  .rng-section { padding: 32px 0; }
  .rng-section-title { align-items: center; }
  .rng-section-title h2,
  .rng-panel > h2 { font-size: 23px; }
  .rng-section-title a { font-size: 11px; }
  .rng-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .rng-card-media { aspect-ratio: 1.35/1; }
  .rng-news-card__body { padding: 11px; }
  .rng-news-card h3 { font-size: 13px; }
  .rng-meta { font-size: 10px; }
  .rng-feature-item { grid-template-columns: 38% 1fr; }
  .rng-feature-item p { display: none; }
  .rng-playlist-demo { grid-template-columns: 115px 1fr; gap: 14px; }
  .rng-playlist-cover span { font-size: 30px; }
  .rng-playlist-copy li { grid-template-columns: 1fr auto; }
  .rng-playlist-copy li em { display: none; }
  .rng-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 42px; }
  .rng-footer__brand { grid-column: 1/-1; }
  .rng-footer__contact { grid-column: 1/-1; display: block; }
  .rng-footer__contact .rng-newsletter-visual { margin-top: 24px; padding-top: 22px; border-top: 1px solid #242424; }
  .rng-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
}

@media (max-width: 600px) {
  body.admin-bar .rng-header { top: 0; }
}

@media (max-width: 480px) {
  .rng-header__tools .rng-btn { display: none; }
  .rng-news-grid { grid-template-columns: 1fr; }
  .rng-event-card { grid-template-columns: 42% 1fr; min-height: 190px; }
  .rng-event-card__body { padding: 15px; }
  .rng-event-card h3 { font-size: 16px; margin-bottom: 10px; }
  .rng-feature-item { grid-template-columns: 1fr; }
  .rng-feature-item__image { aspect-ratio: 16/8; }
  .rng-playlist-demo { grid-template-columns: 1fr; }
  .rng-playlist-cover { max-width: 155px; }
  .rng-partners { grid-template-columns: repeat(2,1fr); }
  .rng-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-block: 38px 34px; }
  .rng-footer__brand,
  .rng-footer__contact { grid-column: auto; }
  .rng-footer__tagline { margin-bottom: 18px; }
  .rng-newsletter-form { grid-template-columns: 1fr; }
  .rng-newsletter-form button { min-height: 42px; }
}

/* =========================================================
   Páginas internas do portal — v1.5.1
   Remove a linha de separação do banner e recorta possíveis
   artefatos de 1 px causados pelo filtro da imagem.
   ========================================================= */
.rng-site--internal { min-height: 100vh; }

.rng-page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background-image: var(--rng-page-hero-image);
  background-size: cover;
  background-position: center 46%;
  background-color: #050505;
  border-bottom: 0;
  box-shadow: none;
  overflow: hidden;
}
.rng-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: center 46%;
  filter: saturate(.62) contrast(1.08) brightness(.7);
}
.rng-page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,rgba(4,4,4,.98) 0%,rgba(5,5,5,.88) 39%,rgba(5,5,5,.48) 72%,rgba(5,5,5,.38) 100%),
    linear-gradient(0deg,rgba(5,5,5,.94),transparent 72%),
    radial-gradient(circle at 15% 40%,rgba(193,18,31,.22),transparent 28%);
}
.rng-page-hero__content { padding-block: 74px 58px; }
.rng-page-hero h1 {
  max-width: 840px;
  margin: 0 0 14px;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(58px,7vw,96px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.025em;
}
.rng-page-hero p {
  max-width: 730px;
  margin: 0;
  color: #d8d8d5;
  font-size: clamp(16px,1.5vw,21px);
  line-height: 1.55;
}

.rng-section--archive { min-height: 440px; padding-block: 54px 66px; }
.rng-archive-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}
.rng-archive-card {
  display: grid;
  grid-template-columns: 43% 1fr;
  min-height: 270px;
  overflow: hidden;
  background: linear-gradient(145deg,#151515,#0f0f0f);
  border: 1px solid #333;
  border-radius: var(--rng-radius);
  transition: transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}
.rng-archive-card:hover {
  transform: translateY(-4px);
  border-color: #565656;
  box-shadow: var(--rng-shadow);
}
.rng-archive-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #181818;
}
.rng-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease,filter .4s ease;
}
.rng-archive-card:hover .rng-archive-card__media img { transform: scale(1.045); filter: saturate(1.06); }
.rng-archive-card__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 28px; }
.rng-archive-card__body h2 {
  margin: 10px 0 10px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 27px;
  line-height: 1.04;
}
.rng-archive-card__body h2 a:hover { color: #ff4a42; }
.rng-archive-card__body p { margin: 0 0 18px; color: #aaa; font-size: 13px; line-height: 1.55; }
.rng-read-more { display: inline-flex; align-items: center; gap: 5px; margin-top: auto; color: #eee; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.rng-read-more svg { color: var(--rng-red-bright); font-size: 17px; }
.rng-read-more:hover { color: #ff5149; }

.rng-events-grid--archive { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.rng-events-grid--archive .rng-event-card { grid-template-columns: 1fr; min-height: 0; }
.rng-events-grid--archive .rng-event-card__poster { aspect-ratio: 16/10; min-height: auto; }
.rng-events-grid--archive .rng-event-card__body { min-height: 220px; justify-content: flex-start; }

.rng-empty-state {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 42px;
  text-align: center;
  background: radial-gradient(circle at 50% 0,rgba(193,18,31,.14),transparent 34%),#101010;
  border: 1px dashed #454545;
}
.rng-empty-state > span { color: #ef433b; font-family: "Barlow Condensed",sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .16em; }
.rng-empty-state h2 { margin: 8px 0; font-family: "Barlow Condensed",sans-serif; font-size: 34px; }
.rng-empty-state p { max-width: 620px; margin: 0; color: #aaa; }

.rng-pagination { margin-top: 38px; }
.rng-pagination ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.rng-pagination a,
.rng-pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  background: #111;
  border: 1px solid #393939;
  border-radius: 3px;
  color: #ddd;
  font-size: 12px;
}
.rng-pagination a:hover,
.rng-pagination .current { color: #fff; background: var(--rng-red); border-color: var(--rng-red); }

.rng-section--community-page,
.rng-section--about { padding-block: 64px 78px; }
.rng-community-layout,
.rng-about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.rng-community-intro,
.rng-about-copy { max-width: 630px; }
.rng-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #ef433b;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.rng-community-intro h2,
.rng-about-copy h2,
.rng-contact-band h2 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(38px,4.3vw,62px);
  line-height: .98;
}
.rng-community-intro > p,
.rng-about-copy > p,
.rng-contact-band p { color: #b0b0ad; font-size: 16px; line-height: 1.7; }
.rng-community-intro .rng-socials { margin-top: 26px; }

.rng-roadmap-grid { display: grid; gap: 14px; }
.rng-roadmap-card {
  position: relative;
  min-height: 170px;
  padding: 28px 28px 25px 88px;
  overflow: hidden;
  background: linear-gradient(145deg,#171717,#0f0f0f);
  border: 1px solid #373737;
}
.rng-roadmap-card > span {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(255,255,255,.15);
  font-family: "Barlow Condensed",sans-serif;
  font-size: 48px;
  font-weight: 800;
}
.rng-roadmap-card h3 { margin: 0 0 7px; font-family: "Barlow Condensed",sans-serif; font-size: 28px; }
.rng-roadmap-card p { margin: 0 0 14px; color: #aaa; }
.rng-roadmap-card small { color: #ef433b; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.rng-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.rng-values-grid article {
  min-height: 250px;
  padding: 25px;
  background: linear-gradient(150deg,#181818,#101010);
  border: 1px solid #363636;
}
.rng-values-grid strong { color: #ef433b; font-family: "Barlow Condensed",sans-serif; font-size: 35px; }
.rng-values-grid h3 { margin: 30px 0 8px; font-family: "Barlow Condensed",sans-serif; font-size: 26px; }
.rng-values-grid p { margin: 0; color: #aaa; font-size: 13px; line-height: 1.6; }

.rng-section--contact-band { padding-block: 20px 70px; }
.rng-contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: 42px;
  background: linear-gradient(110deg,rgba(193,18,31,.22),rgba(18,18,18,.96) 44%),#111;
  border: 1px solid #4a3333;
}
.rng-contact-band > div { max-width: 830px; }
.rng-contact-band h2 { margin-bottom: 8px; font-size: clamp(34px,4vw,54px); }
.rng-contact-band p { margin: 0; }

@media (max-width: 1100px) {
  .rng-archive-grid { grid-template-columns: 1fr; }
  .rng-events-grid--archive { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .rng-community-layout,
  .rng-about-grid { grid-template-columns: 1fr; gap: 44px; }
  .rng-community-intro,
  .rng-about-copy { max-width: 760px; }
}

@media (max-width: 720px) {
  .rng-page-hero { min-height: 360px; background-position: 64% center; }
  .rng-page-hero__content { padding-block: 70px 44px; }
  .rng-page-hero h1 { font-size: clamp(54px,16vw,78px); }
  .rng-page-hero p { font-size: 15px; }
  .rng-section--archive,
  .rng-section--community-page,
  .rng-section--about { padding-block: 40px 52px; }
  .rng-archive-card { grid-template-columns: 1fr; }
  .rng-archive-card__media { aspect-ratio: 16/9; }
  .rng-archive-card__body { padding: 22px; }
  .rng-events-grid--archive { grid-template-columns: 1fr; }
  .rng-values-grid { grid-template-columns: 1fr; }
  .rng-values-grid article { min-height: 0; }
  .rng-contact-band { align-items: flex-start; flex-direction: column; padding: 28px; }
}

@media (max-width: 480px) {
  .rng-archive-card__body h2 { font-size: 24px; }
  .rng-roadmap-card { padding: 75px 22px 24px; }
  .rng-roadmap-card > span { top: 12px; }
}

/* =========================================================
   Calendário mensal e eventos individuais — v1.2.1
   ========================================================= */
.rng-section--calendar { padding-block: 54px 28px; background: #0b0b0b; }
.rng-section--agenda-cards { padding-top: 28px; }
.rng-calendar { overflow: hidden; background: #101010; border: 1px solid #343434; border-radius: 4px; box-shadow: 0 22px 70px rgba(0,0,0,.3); }
.rng-calendar__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 26px; background: linear-gradient(110deg,rgba(193,18,31,.15),transparent 42%),#141414; border-bottom: 1px solid #383838; }
.rng-calendar__toolbar .rng-eyebrow { margin-bottom: 4px; }
.rng-calendar__toolbar h2 { margin: 0; font-family: "Barlow Condensed",sans-serif; font-size: clamp(34px,4vw,50px); line-height: 1; text-transform: capitalize; }
.rng-calendar__nav { display: flex; align-items: center; gap: 8px; }
.rng-calendar__nav a { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; color: #fff; background: #0d0d0d; border: 1px solid #454545; border-radius: 3px; font-size: 25px; font-weight: 700; transition: background .2s ease,border-color .2s ease,color .2s ease; }
.rng-calendar__nav a:hover { background: var(--rng-red); border-color: var(--rng-red); }
.rng-calendar__nav .rng-calendar__today { font-family: "Inter",sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.rng-calendar__weekdays { display: grid; grid-template-columns: repeat(7,1fr); background: #0c0c0c; border-bottom: 1px solid #343434; }
.rng-calendar__weekdays span { padding: 12px 14px; color: #aaa; border-right: 1px solid #282828; font-family: "Barlow Condensed",sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.rng-calendar__weekdays span:last-child { border-right: 0; }
.rng-calendar__grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); }
.rng-calendar-day { position: relative; min-height: 154px; padding: 10px; overflow: hidden; background: #111; border-right: 1px solid #2d2d2d; border-bottom: 1px solid #2d2d2d; }
.rng-calendar-day:nth-child(7n) { border-right: 0; }
.rng-calendar-day:nth-last-child(-n+7) { border-bottom: 0; }
.rng-calendar-day.is-outside { background: #0d0d0d; color: #616161; }
.rng-calendar-day.is-today { box-shadow: inset 0 0 0 2px var(--rng-red-bright); }
.rng-calendar-day.has-events::before { content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--rng-red); }
.rng-calendar-day__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.rng-calendar-day__head time { display: grid; place-items: center; width: 29px; height: 29px; color: #ddd; font-size: 13px; font-weight: 700; border-radius: 50%; }
.rng-calendar-day.is-today .rng-calendar-day__head time { color: #fff; background: var(--rng-red); }
.rng-calendar-day.is-outside .rng-calendar-day__head time { color: #676767; }
.rng-calendar-day__weekday { display: none; color: #898989; font-size: 11px; text-transform: uppercase; }
.rng-calendar-day__events { display: grid; gap: 5px; }
.rng-calendar-event { min-width: 0; display: block; padding: 7px 8px; color: #eee; background: linear-gradient(100deg,rgba(193,18,31,.23),rgba(255,255,255,.025)); border-left: 2px solid var(--rng-red-bright); border-radius: 2px; }
.rng-calendar-event:hover { color: #fff; background: rgba(193,18,31,.38); }
.rng-calendar-event span { display: block; margin-bottom: 1px; color: #f26a64; font-size: 9px; font-weight: 800; }
.rng-calendar-event strong { display: block; overflow: hidden; font-size: 11px; line-height: 1.28; white-space: nowrap; text-overflow: ellipsis; }

.rng-calendar-event__preview { display: none; }

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .rng-calendar,
  .rng-calendar__grid,
  .rng-calendar-day {
    overflow: visible;
  }

  .rng-calendar-day.has-events {
    z-index: 2;
  }

  .rng-calendar-event {
    position: relative;
    z-index: 1;
  }

  .rng-calendar-event:hover,
  .rng-calendar-event:focus-visible {
    z-index: 50;
  }

  .rng-calendar-event__preview {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    z-index: 80;
    display: block;
    width: min(230px, 22vw);
    aspect-ratio: 16 / 9;
    padding: 5px;
    background: #090909;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    box-shadow: 0 18px 48px rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px) scale(.96);
    transform-origin: top center;
    transition: opacity .18s ease, transform .18s ease;
  }

  .rng-calendar-event__preview::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 10px;
    height: 10px;
    background: #090909;
    border-left: 1px solid rgba(255,255,255,.18);
    border-top: 1px solid rgba(255,255,255,.18);
    transform: translateX(-50%) rotate(45deg);
  }

  .rng-calendar-event__preview img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .rng-calendar-event:hover .rng-calendar-event__preview,
  .rng-calendar-event:focus-visible .rng-calendar-event__preview {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
.rng-calendar-day__more { padding-left: 8px; color: #aaa; font-size: 10px; }

.rng-portal-document { margin: 0; background: #080808; }
.rng-event-hero { position: relative; min-height: 470px; display: flex; align-items: flex-end; isolation: isolate; background: #080808 var(--rng-event-image,none) center/cover no-repeat; border-bottom: 1px solid #343434; }
.rng-event-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: inherit; filter: saturate(.72) contrast(1.08) brightness(.75); }
.rng-event-hero__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(4,4,4,.98) 0%,rgba(4,4,4,.82) 45%,rgba(4,4,4,.38) 100%),linear-gradient(0deg,rgba(5,5,5,.94),transparent 72%); }
.rng-event-hero__content { padding-block: 78px 58px; }
.rng-event-back { display: inline-flex; margin-bottom: 24px; color: #d2d2d2; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.rng-event-back:hover { color: #ff4a42; }
.rng-event-hero h1 { max-width: 940px; margin: 10px 0 16px; font-family: "Barlow Condensed",sans-serif; font-size: clamp(54px,7vw,94px); line-height: .92; }
.rng-event-hero p { margin: 0; color: #ddd; font-size: clamp(15px,1.6vw,21px); }
.rng-event-single { padding-block: 58px 78px; }
.rng-event-single__grid { display: grid; grid-template-columns: minmax(0,1.65fr) minmax(310px,.65fr); gap: 38px; align-items: start; }
.rng-event-single__content { min-width: 0; }
.rng-event-single__image { margin: 0 0 30px; overflow: hidden; background: #121212; border: 1px solid #373737; }
.rng-event-single__image img { display: block; width: 100%; max-height: 680px; object-fit: cover; }
.rng-prose { color: #d0d0cd; font-size: 16px; line-height: 1.78; }
.rng-prose > :first-child { margin-top: 0; }
.rng-prose h2,.rng-prose h3,.rng-prose h4 { color: #fff; font-family: "Barlow Condensed",sans-serif; line-height: 1.05; }
.rng-prose h2 { font-size: 40px; }
.rng-prose h3 { font-size: 30px; }
.rng-prose a { color: #ff5149; text-decoration: underline; }
.rng-prose img { max-width: 100%; height: auto; }
.rng-event-info { position: sticky; top: 102px; padding: 28px; background: linear-gradient(145deg,#171717,#0e0e0e); border: 1px solid #404040; }
.rng-event-info h2 { margin: 0 0 22px; padding-bottom: 12px; border-bottom: 2px solid var(--rng-red); font-family: "Barlow Condensed",sans-serif; font-size: 30px; }
.rng-event-info dl { margin: 0; }
.rng-event-info dl > div { padding: 14px 0; border-bottom: 1px solid #2b2b2b; }
.rng-event-info dt { margin-bottom: 4px; color: #ef433b; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.rng-event-info dd { margin: 0; color: #ddd; font-size: 13px; line-height: 1.5; }
.rng-event-info__actions { display: grid; gap: 10px; margin-top: 24px; }
.rng-event-info__actions .rng-btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .rng-calendar-day { min-height: 135px; padding: 7px; }
  .rng-calendar-event strong { font-size: 10px; }
  .rng-event-single__grid { grid-template-columns: 1fr; }
  .rng-event-info { position: static; }
}

@media (max-width: 720px) {
  .rng-calendar__toolbar { align-items: flex-start; flex-direction: column; padding: 20px; }
  .rng-calendar__weekdays { display: none; }
  .rng-calendar__grid { grid-template-columns: 1fr; }
  .rng-calendar-day { min-height: 0; padding: 13px 14px; border-right: 0; border-bottom: 1px solid #2d2d2d; }
  .rng-calendar-day.is-outside { display: none; }
  .rng-calendar-day:not(.has-events) { min-height: 52px; }
  .rng-calendar-day__head { margin-bottom: 5px; }
  .rng-calendar-day__weekday { display: inline; }
  .rng-calendar-day__head time { width: auto; height: auto; background: transparent !important; }
  .rng-calendar-day.is-today .rng-calendar-day__head time { color: #ff5149; }
  .rng-calendar-event strong { white-space: normal; font-size: 12px; }
  .rng-event-hero { min-height: 390px; background-position: 62% center; }
  .rng-event-hero__content { padding-block: 66px 42px; }
  .rng-event-single { padding-block: 38px 54px; }
  .rng-event-info { padding: 22px; }
}


/* =========================================================
   Refinamentos de acabamento — v1.2.1
   ========================================================= */
.rng-section-note {
  color: #8f8f8c;
  font-size: 12px;
  letter-spacing: .02em;
}

/* Calendário: leitura mais clara e altura dinâmica por mês */
.rng-calendar__toolbar {
  padding: 27px 30px;
}
.rng-calendar__toolbar h2 {
  font-size: clamp(38px, 3.2vw, 52px);
}
.rng-calendar__nav a {
  min-width: 44px;
  height: 44px;
}
.rng-calendar__weekdays span {
  padding: 13px 15px;
  color: #c0c0bc;
  font-size: 13px;
}
.rng-calendar-day {
  min-height: 166px;
  padding: 11px;
}
.rng-calendar-day:nth-child(7n + 1),
.rng-calendar-day:nth-child(7n) {
  background-color: #101010;
}
.rng-calendar-day.is-outside {
  opacity: .58;
}
.rng-calendar-day__head time {
  font-size: 14px;
}
.rng-calendar-day__events {
  gap: 6px;
}
.rng-calendar-event {
  padding: 8px 9px;
  border-left-width: 3px;
}
.rng-calendar-event span {
  font-size: 10px;
}
.rng-calendar-event strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Cards da agenda */
.rng-events-grid--archive .rng-event-card__body {
  min-height: 205px;
}
.rng-events-grid--archive .rng-event-card h3 {
  font-size: 20px;
}

/* Evento individual: aparência editorial mais confortável */
.rng-event-hero {
  min-height: 500px;
}
.rng-event-hero__content {
  padding-block: 86px 62px;
}
.rng-event-hero h1 {
  max-width: 1020px;
  font-size: clamp(58px, 6.4vw, 92px);
}
.rng-event-single {
  padding-block: 64px 88px;
}
.rng-event-single__grid {
  grid-template-columns: minmax(0, 1.75fr) minmax(330px, .65fr);
  gap: 44px;
}
.rng-event-single__image {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: #0d0d0d;
}
.rng-event-single__image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}
.rng-prose {
  max-width: 920px;
  color: #d8d8d4;
  font-size: 17px;
  line-height: 1.82;
}
.rng-prose p {
  margin: 0 0 1.25em;
}
.rng-event-info {
  padding: 30px;
  border-color: #474747;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.rng-event-info h2 {
  font-size: 32px;
}
.rng-event-info dd {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .rng-calendar-day {
    min-height: 145px;
  }
  .rng-calendar-event strong {
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .rng-section-note {
    display: none;
  }
  .rng-calendar__toolbar {
    padding: 22px;
  }
  .rng-calendar-day {
    min-height: 0;
  }
  .rng-event-hero {
    min-height: 410px;
  }
  .rng-prose {
    font-size: 16px;
    line-height: 1.72;
  }
}

/* Evento individual: destaque aprimorado das informações e mapa */
.rng-event-info dl > div {
  padding: 16px 0 18px;
}
.rng-event-info dt {
  display: inline-block;
  margin-bottom: 9px;
  padding: 4px 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(239,67,59,.18), rgba(239,67,59,.08));
  color: #ff4d45;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rng-event-info dd {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.rng-event-info__map {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #2b2b2b;
}
.rng-event-info__map h3 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  color: #fff;
}
.rng-event-info__map iframe {
  display: block;
  width: 100%;
  min-height: 250px;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  background: #0b0b0b;
}
@media (max-width: 720px) {
  .rng-event-info dd {
    font-size: 15px;
  }
  .rng-event-info__map iframe {
    min-height: 220px;
  }
}
/* =========================================================
   Correção responsiva do evento individual — v1.2.3
   ========================================================= */
@media (max-width: 900px) {
  html,
  body,
  .rng-site,
  .rng-site--event-single {
    max-width: 100%;
    overflow-x: hidden;
  }

  .rng-event-single__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
    width: 100%;
  }

  /* Faz imagem, painel e texto virarem itens independentes no celular. */
  .rng-event-single__content {
    display: contents;
  }

  .rng-event-info {
    position: static !important;
    top: auto !important;
    order: 1;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .rng-event-single__image {
    order: 2;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .rng-prose {
    order: 3;
    width: 100%;
    max-width: none;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .rng-event-single__image img,
  .rng-event-info__map,
  .rng-event-info__map iframe {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .rng-event-hero {
    min-height: 430px;
    background-position: 52% center;
  }

  .rng-event-hero__content {
    padding-block: 52px 36px;
  }

  .rng-event-hero h1 {
    margin-top: 14px;
    font-size: clamp(46px, 13vw, 62px);
    line-height: .96;
  }

  .rng-event-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .rng-event-back,
  .rng-event-hero .rng-kicker {
    font-size: 11px;
  }

  .rng-event-single {
    padding-block: 30px 54px;
  }

  .rng-event-info {
    padding: 22px 18px;
  }

  .rng-event-info h2 {
    font-size: 29px;
  }

  .rng-event-info dd {
    font-size: 15px;
  }

  .rng-event-info__map iframe {
    width: 100%;
    min-height: 230px;
  }

  .rng-event-single__image {
    min-height: 0;
  }

  .rng-event-single__image img {
    height: auto;
    max-height: none;
  }

  .rng-prose {
    font-size: 16px;
    line-height: 1.75;
  }

  .rng-prose p {
    margin-bottom: 1.15em;
  }
}

@media (max-width: 420px) {
  .rng-shell {
    width: min(calc(100% - 24px), var(--rng-shell));
  }

  .rng-event-hero h1 {
    font-size: clamp(43px, 12.5vw, 56px);
  }

  .rng-event-info h2 {
    font-size: 27px;
  }

  .rng-event-info__actions .rng-btn {
    min-height: 48px;
  }
}

/* Página inicial: Últimas notícias com visual editorial mais próximo do mockup aprovado */
.rng-section--news {
  background: linear-gradient(180deg, rgba(17,17,17,.98), rgba(10,10,10,.98));
}
.rng-section--news .rng-section-title {
  margin-bottom: 22px;
}
.rng-section--news .rng-section-title h2 {
  font-size: 30px;
  letter-spacing: .03em;
}
.rng-section--news .rng-section-title a {
  gap: 6px;
  color: #ececea;
  font-size: 14px;
  font-weight: 600;
}
.rng-section--news .rng-news-grid {
  gap: 14px;
}
.rng-section--news .rng-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  border: 1px solid #3f3f3f;
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.rng-section--news .rng-news-card:hover {
  transform: translateY(-4px);
  border-color: #5a5a5a;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.rng-section--news .rng-card-media {
  aspect-ratio: 1.42 / 1;
  background: #161616;
}
.rng-section--news .rng-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 100%);
  pointer-events: none;
}
.rng-section--news .rng-tag {
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 2px;
  background: #be1320;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .03em;
}
.rng-section--news .rng-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 150px;
  padding: 14px 14px 16px;
}
.rng-section--news .rng-news-card h3 {
  min-height: 104px;
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.22;
  display: block;
  overflow: visible;
}
.rng-section--news .rng-news-card h3 a {
  display: block;
  color: #f3f3f1;
}
.rng-section--news .rng-meta {
  gap: 7px;
  color: #c3c3be;
  font-size: 13px;
  font-weight: 500;
}
.rng-section--news .rng-meta svg {
  font-size: 15px;
  color: #b7b7b2;
}

@media (max-width: 1280px) {
  .rng-section--news .rng-news-card h3 {
    min-height: 96px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .rng-section--news .rng-section-title h2 {
    font-size: 28px;
  }
  .rng-section--news .rng-news-card h3 {
    min-height: 0;
    font-size: 17px;
    display: block;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .rng-section--news .rng-card-media {
    aspect-ratio: 1.45 / 1;
  }
  .rng-section--news .rng-news-card__body {
    padding: 13px 13px 15px;
  }
  .rng-section--news .rng-news-card h3 {
    font-size: 18px;
  }
  .rng-section--news .rng-meta {
    font-size: 12px;
  }
}
/* Matérias individuais: template editorial RockNGo */
.rng-article-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #090909 var(--rng-article-image, none) center / cover no-repeat;
  border-bottom: 1px solid #353535;
}
.rng-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(.72) contrast(1.08) brightness(.72);
}
.rng-article-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,4,4,.98) 0%, rgba(4,4,4,.86) 46%, rgba(4,4,4,.42) 100%),
    linear-gradient(0deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.18) 70%);
}
.rng-article-hero__content {
  padding-block: 92px 68px;
}
.rng-article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ddd;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rng-article-back:hover { color: #ff5149; }
.rng-article-hero h1 {
  max-width: 1080px;
  margin: 8px 0 20px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.rng-article-deck {
  max-width: 850px;
  margin: 0 0 24px;
  color: #e0e0dc;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.48;
}
.rng-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #c6c6c1;
  font-size: 13px;
  font-weight: 600;
}
.rng-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.rng-article-single {
  padding-block: 64px 88px;
}
.rng-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(330px, .72fr);
  gap: 56px;
  align-items: start;
}
.rng-article-main { min-width: 0; }
.rng-article-featured {
  margin: 0 0 38px;
  overflow: hidden;
  border: 1px solid #3d3d3d;
  background: #111;
}
.rng-article-featured img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.rng-article-sidebar__featured {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(193,18,31,.12), transparent 42%),
    #101010;
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
}

.rng-article-sidebar__featured img {
  display: block;
  width: 100%;
  max-height: 560px;
  height: auto;
  object-fit: contain;
}
.rng-article-prose {
  max-width: 920px;
  color: #deded9;
  font-size: 17px;
  line-height: 1.82;
}
.rng-article-prose p { margin: 0 0 1.35em; }
.rng-article-prose h2 {
  margin: 1.7em 0 .55em;
  font-size: clamp(34px, 4vw, 48px);
}
.rng-article-prose h3 {
  margin: 1.45em 0 .45em;
  font-size: clamp(27px, 3vw, 36px);
}
.rng-article-prose blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--rng-red-bright);
  background: #131313;
  color: #f3f3ef;
  font-size: 20px;
}
.rng-article-prose ul,
.rng-article-prose ol { padding-left: 1.4em; }
.rng-article-prose strong { color: #fff; }
.rng-article-tags {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #303030;
}
.rng-article-tags__content > strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}
.rng-article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.rng-article-tag-list a {
  padding: 7px 11px;
  border: 1px solid #3c3c3c;
  border-radius: 3px;
  background: #111;
  color: #ccc;
  font-size: 12px;
}
.rng-article-tag-list a:hover {
  border-color: var(--rng-red-bright);
  color: #fff;
}
.rng-article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}
.rng-article-sidebar__box {
  padding: 28px;
  background: linear-gradient(145deg, #171717, #0e0e0e);
  border: 1px solid #424242;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.rng-article-sidebar__box h2 {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rng-red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
}
.rng-article-sidebar dl { margin: 0; }
.rng-article-sidebar dl > div {
  padding: 14px 0;
  border-bottom: 1px solid #2b2b2b;
}
.rng-article-sidebar dt {
  margin-bottom: 6px;
  color: #ff4d45;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rng-article-sidebar dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.rng-article-sidebar__cta {
  width: 100%;
  min-height: 50px;
  text-align: center;
}
.rng-news-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rng-article-related .rng-news-card h3 { min-height: 54px; }

@media (max-width: 980px) {
  .rng-article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .rng-article-sidebar {
    position: static;
    grid-row: 1;
  }
  .rng-article-main { grid-row: 2; }
  .rng-news-grid--related { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .rng-article-hero {
    min-height: 500px;
    background-position: 58% center;
  }
  .rng-article-hero__content {
    padding-block: 58px 42px;
  }
  .rng-article-hero h1 {
    font-size: clamp(34px, 10.5vw, 50px);
    line-height: 1.02;
  }
  .rng-article-deck {
    font-size: 16px;
    line-height: 1.45;
  }
  .rng-article-meta {
    display: grid;
    gap: 8px;
    font-size: 12px;
  }
  .rng-article-single {
    padding-block: 34px 58px;
  }
  .rng-article-layout {
    gap: 28px;
  }
  .rng-article-sidebar__box {
    padding: 22px 18px;
  }
  .rng-article-featured {
    margin-bottom: 26px;
  }
  .rng-article-sidebar__featured {
    margin-bottom: 0;
  }
  .rng-article-sidebar__featured img {
    max-height: 520px;
  }
  .rng-article-prose {
    font-size: 16px;
    line-height: 1.78;
  }
  .rng-article-prose h2 {
    font-size: 34px;
  }
  .rng-news-grid--related { grid-template-columns: 1fr; }
}
/* Legenda e crédito da imagem destacada nas matérias */
.rng-article-featured figcaption {
  padding: 10px 14px 12px;
  border-top: 1px solid #2e2e2e;
  background: #0d0d0d;
  color: #a9a9a4;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}
.rng-article-featured figcaption a {
  color: #d0d0ca;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .rng-article-featured figcaption {
    padding: 9px 11px 10px;
    font-size: 11px;
    text-align: left;
  }
}

/* =========================================================
   Páginas jurídicas e acabamento do rodapé — v1.4.9
   ========================================================= */
.rng-legal-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 62px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 14% 28%, rgba(193,18,31,.25), transparent 29%),
    linear-gradient(135deg,#101010 0%,#090909 62%,#121212 100%);
}
.rng-legal-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(224,58,50,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(224,58,50,.025), 0 0 0 160px rgba(224,58,50,.018);
  pointer-events: none;
}
.rng-legal-hero__content { position: relative; z-index: 1; }
.rng-legal-hero h1 {
  max-width: 920px;
  margin: 10px 0 16px;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(58px,7vw,92px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.02em;
}
.rng-legal-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #c9c9c5;
  font-size: clamp(16px,1.6vw,20px);
  line-height: 1.6;
}
.rng-legal-updated {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid #3b3b3b;
  background: rgba(255,255,255,.025);
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.rng-legal-section { padding: 62px 0 86px; }
.rng-legal-layout {
  display: grid;
  grid-template-columns: minmax(220px,.42fr) minmax(0,1.58fr);
  gap: 56px;
  align-items: start;
}
.rng-legal-nav {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid #343434;
  background: linear-gradient(145deg,#151515,#0d0d0d);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.rng-legal-nav > strong {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rng-red);
  font-family: "Barlow Condensed",sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}
.rng-legal-nav ol { margin: 0; padding: 0; list-style: none; counter-reset: rngLegal; }
.rng-legal-nav li { counter-increment: rngLegal; border-bottom: 1px solid #252525; }
.rng-legal-nav li:last-child { border-bottom: 0; }
.rng-legal-nav a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 9px 0;
  color: #aaa;
  font-size: 12px;
  line-height: 1.4;
}
.rng-legal-nav a::before { content: counter(rngLegal, decimal-leading-zero); color: #ef433b; font-size: 10px; font-weight: 800; }
.rng-legal-nav a:hover { color: #fff; }
.rng-legal-content {
  min-width: 0;
  max-width: 920px;
  color: #d7d7d2;
  font-size: 16px;
  line-height: 1.78;
}
.rng-legal-note {
  margin-bottom: 38px;
  padding: 24px 26px;
  border: 1px solid #493333;
  border-left: 4px solid var(--rng-red-bright);
  background: linear-gradient(110deg,rgba(193,18,31,.14),rgba(18,18,18,.95) 48%);
}
.rng-legal-note strong { display: block; margin-bottom: 5px; color: #fff; font-family: "Barlow Condensed",sans-serif; font-size: 25px; text-transform: uppercase; }
.rng-legal-note p { margin: 0; color: #bdbdb8; }
.rng-legal-content > section {
  scroll-margin-top: 102px;
  padding: 0 0 34px;
  margin: 0 0 38px;
  border-bottom: 1px solid #292929;
}
.rng-legal-content > section:last-child { margin-bottom: 0; border-bottom: 0; }
.rng-legal-content h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(31px,3.2vw,43px);
  line-height: 1.05;
}
.rng-legal-content p { margin: 0 0 1.1em; }
.rng-legal-content ul,
.rng-legal-content ol { margin: 0 0 1.25em; padding-left: 1.35em; }
.rng-legal-content li { margin-bottom: .55em; }
.rng-legal-content strong { color: #fff; }
.rng-legal-content a { color: #ff5a52; text-decoration: underline; text-underline-offset: 3px; }
.rng-legal-content a:hover { color: #fff; }

@media (max-width: 960px) {
  .rng-legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .rng-legal-nav { position: static; }
  .rng-legal-nav ol { columns: 2; column-gap: 28px; }
}

@media (max-width: 720px) {
  .rng-legal-hero { padding: 66px 0 44px; }
  .rng-legal-hero h1 { font-size: clamp(52px,15vw,72px); }
  .rng-legal-section { padding: 38px 0 58px; }
  .rng-legal-nav { padding: 20px; }
  .rng-legal-nav ol { columns: 1; }
  .rng-legal-content { font-size: 15px; line-height: 1.72; }
  .rng-legal-note { padding: 20px; }
  .rng-footer__bottom { font-size: 12px; }
}


/* Marca do rodapé usando a mesma URL do logo — v1.5.3 */
@media (max-width: 1024px) {
  .rng-footer__logo img { max-width: 200px; max-height: 66px; }
}
@media (max-width: 600px) {
  .rng-footer__logo img { max-width: 180px; max-height: 60px; }
}

/* =========================================================
   Página de contato — v1.5.4
   ========================================================= */
.rng-contact-page {
  padding-block: 58px 86px;
  background:
    radial-gradient(circle at 83% 12%, rgba(193,18,31,.10), transparent 28%),
    linear-gradient(180deg,#0c0c0c,#090909);
}
.rng-contact-page__intro {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(300px,.62fr);
  gap: 68px;
  align-items: end;
  margin-bottom: 34px;
}
.rng-contact-page__intro h2,
.rng-contact-direct h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(40px,4.5vw,62px);
  line-height: .98;
}
.rng-contact-page__intro > p {
  margin: 0;
  color: var(--rng-muted);
  font-size: 16px;
  line-height: 1.75;
}
.rng-contact-options {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.rng-contact-option {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #363636;
  background: linear-gradient(145deg,#161616,#0e0e0e);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.rng-contact-option:hover {
  transform: translateY(-4px);
  border-color: rgba(224,58,50,.62);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.rng-contact-option > strong {
  color: #ef433b;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 34px;
  line-height: 1;
}
.rng-contact-option h3 {
  margin: 44px 0 10px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 29px;
  line-height: 1;
}
.rng-contact-option p {
  margin: 0 0 26px;
  color: var(--rng-muted);
  line-height: 1.7;
}
.rng-contact-option a {
  margin-top: auto;
  color: #fff;
  font-weight: 800;
}
.rng-contact-option a span { color: var(--rng-red-bright); margin-left: 6px; }
.rng-contact-direct {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(330px,.9fr);
  gap: 58px;
  align-items: center;
  margin-top: 48px;
  padding: 38px;
  border: 1px solid #3a3030;
  border-left: 4px solid var(--rng-red-bright);
  background: linear-gradient(110deg,rgba(193,18,31,.15),rgba(17,17,17,.98) 48%);
}
.rng-contact-direct__copy p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--rng-muted);
  line-height: 1.7;
}
.rng-contact-direct__details {
  display: grid;
  gap: 16px;
}
.rng-contact-direct__details > div:not(.rng-socials) {
  display: grid;
  gap: 3px;
  padding-bottom: 13px;
  border-bottom: 1px solid #323232;
}
.rng-contact-direct__details small {
  color: #ef433b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rng-contact-direct__details a,
.rng-contact-direct__details span {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}
.rng-contact-direct__details .rng-socials { margin-top: 4px; }

@media (max-width: 980px) {
  .rng-contact-page__intro,
  .rng-contact-direct { grid-template-columns: 1fr; gap: 28px; }
  .rng-contact-options { grid-template-columns: 1fr; }
  .rng-contact-option { min-height: auto; }
  .rng-contact-option h3 { margin-top: 26px; }
}
@media (max-width: 720px) {
  .rng-contact-page { padding-block: 38px 58px; }
  .rng-contact-page__intro { margin-bottom: 26px; }
  .rng-contact-option,
  .rng-contact-direct { padding: 24px 20px; }
}

/* =========================================================
   Agenda mobile compacta — v1.5.5
   ========================================================= */
.rng-calendar__mobile-note {
  display: none;
}

@media (max-width: 720px) {
  /* Banner da Agenda mais curto para levar o usuário ao calendário rapidamente. */
  .rng-site--agenda .rng-page-hero {
    min-height: 300px;
    background-position: 68% center;
  }

  .rng-site--agenda .rng-page-hero__content {
    padding-block: 46px 34px;
  }

  .rng-site--agenda .rng-page-hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .rng-site--agenda .rng-page-hero p {
    max-width: 96%;
    font-size: 14px;
    line-height: 1.55;
  }

  .rng-site--agenda .rng-section--calendar {
    padding-block: 28px 16px;
  }

  .rng-site--agenda .rng-calendar {
    border-radius: 6px;
  }

  .rng-site--agenda .rng-calendar__toolbar {
    gap: 16px;
    padding: 18px;
  }

  .rng-site--agenda .rng-calendar__toolbar h2 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .rng-site--agenda .rng-calendar__nav {
    width: 100%;
    gap: 10px;
  }

  .rng-site--agenda .rng-calendar__nav a {
    min-width: 50px;
    height: 48px;
  }

  .rng-site--agenda .rng-calendar__nav .rng-calendar__today {
    min-width: 96px;
  }

  .rng-site--agenda .rng-calendar__mobile-note {
    display: block;
    margin: 0;
    padding: 12px 18px;
    color: #a7a7a3;
    background: #0d0d0d;
    border-bottom: 1px solid #2d2d2d;
    font-size: 12px;
    line-height: 1.5;
  }

  /* Em telas pequenas, datas vazias saem do caminho. */
  .rng-site--agenda .rng-calendar-day:not(.has-events),
  .rng-site--agenda .rng-calendar-day.is-outside {
    display: none;
  }

  .rng-site--agenda .rng-calendar.is-empty-month .rng-calendar__grid {
    display: none;
  }

  .rng-site--agenda .rng-calendar-day.has-events {
    min-height: 0;
    padding: 15px 18px 17px;
  }

  .rng-site--agenda .rng-calendar-day__head {
    margin-bottom: 10px;
  }

  .rng-site--agenda .rng-calendar-day__weekday {
    color: #a4a4a0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .rng-site--agenda .rng-calendar-day__head time {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
  }

  .rng-site--agenda .rng-calendar-event {
    padding: 11px 13px;
    border-left-width: 3px;
  }

  .rng-site--agenda .rng-calendar-event span {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .rng-site--agenda .rng-calendar-event strong {
    font-size: 15px;
    line-height: 1.35;
  }

  /* Próximos eventos: cartões mais compactos e imagens panorâmicas. */
  .rng-site--agenda .rng-section--agenda-cards {
    padding-block: 34px 54px;
  }

  .rng-site--agenda .rng-section--agenda-cards .rng-section-title {
    margin-bottom: 22px;
  }

  .rng-site--agenda .rng-section--agenda-cards .rng-section-title h2 {
    font-size: 36px;
  }

  .rng-site--agenda .rng-events-grid--archive {
    gap: 22px;
  }

  .rng-site--agenda .rng-events-grid--archive .rng-event-card__poster {
    aspect-ratio: 16 / 9;
  }

  .rng-site--agenda .rng-events-grid--archive .rng-event-card__body {
    min-height: 0;
    padding: 20px;
  }

  .rng-site--agenda .rng-events-grid--archive .rng-event-card h3 {
    margin-bottom: 13px;
    font-size: 24px;
  }

  .rng-site--agenda .rng-events-grid--archive .rng-event-card .rng-btn {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .rng-site--agenda .rng-page-hero {
    min-height: 280px;
  }

  .rng-site--agenda .rng-page-hero__content {
    padding-block: 40px 30px;
  }

  .rng-site--agenda .rng-calendar__toolbar,
  .rng-site--agenda .rng-calendar-day.has-events {
    padding-inline: 16px;
  }
}

/* =========================================================
   Página Sobre com identidade e apresentação da fundadora — v1.5.6
   ========================================================= */
.rng-site--about .rng-page-hero p { max-width: 780px; }

.rng-about-story {
  padding-block: 78px;
  border-bottom: 1px solid var(--rng-line-soft);
}
.rng-about-story__grid {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
  gap: clamp(54px,7vw,110px);
  align-items: center;
}
.rng-about-story__copy { max-width: 760px; }
.rng-about-story__copy h2,
.rng-about-section-heading h2,
.rng-founder-copy h2 {
  margin: 10px 0 18px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(42px,5vw,68px);
  line-height: .98;
  letter-spacing: -.02em;
}
.rng-about-story__copy p {
  margin: 0 0 18px;
  color: var(--rng-muted);
  font-size: 17px;
  line-height: 1.78;
}
.rng-about-story__statement {
  display: grid;
  gap: 4px;
  padding: 34px 0 34px 34px;
  border-left: 4px solid var(--rng-red-bright);
  background: linear-gradient(90deg,rgba(193,18,31,.12),transparent 78%);
}
.rng-about-story__statement span {
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(48px,5.2vw,76px);
  font-weight: 800;
  line-height: .88;
  text-transform: uppercase;
}
.rng-about-story__statement span:nth-child(2) { color: var(--rng-red-bright); }

.rng-about-values-section,
.rng-about-future {
  padding-block: 76px;
  background: rgba(255,255,255,.018);
  border-bottom: 1px solid var(--rng-line-soft);
}
.rng-about-section-heading {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}
.rng-about-section-heading h2 { margin-bottom: 0; }
.rng-about-section-heading > p {
  max-width: 580px;
  margin: 0;
  color: var(--rng-muted);
  font-size: 15px;
  line-height: 1.7;
}
.rng-values-grid--about { gap: 18px; }
.rng-values-grid--about article {
  min-height: 280px;
  padding: 30px;
  border-color: #393939;
  background: linear-gradient(150deg,#171717,#0e0e0e);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.rng-values-grid--about article:hover {
  transform: translateY(-4px);
  border-color: rgba(224,58,50,.58);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.rng-values-grid--about h3 { margin-top: 44px; font-size: 31px; }
.rng-values-grid--about p { font-size: 14px; line-height: 1.72; }

.rng-about-features {
  padding-block: 78px;
  border-bottom: 1px solid var(--rng-line-soft);
}
.rng-about-features__grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}
.rng-about-features__grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #343434;
  background: #111;
}
.rng-about-features__grid article::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(224,58,50,.2);
  border-radius: 50%;
}
.rng-about-features__grid span {
  color: var(--rng-red-bright);
  font-family: "Barlow Condensed",sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
}
.rng-about-features__grid h3 {
  margin: 52px 0 12px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 28px;
  line-height: 1;
}
.rng-about-features__grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--rng-muted);
  font-size: 13px;
  line-height: 1.7;
}

.rng-founder-section {
  padding-block: 82px;
  background:
    radial-gradient(circle at 10% 10%,rgba(193,18,31,.14),transparent 34%),
    linear-gradient(135deg,#101010,#090909);
  border-bottom: 1px solid var(--rng-line-soft);
}
.rng-founder-layout {
  display: grid;
  align-items: center;
  gap: clamp(44px,7vw,96px);
}
.rng-founder-layout--has-photo { grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); }
.rng-founder-layout--no-photo {
  grid-template-columns: minmax(0,1fr);
  max-width: 980px;
}
.rng-founder-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid #474747;
  background: #111;
  box-shadow: var(--rng-shadow);
}
.rng-founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.rng-founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.rng-founder-copy { max-width: 860px; }
.rng-founder-role {
  margin: -4px 0 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.rng-founder-bio p {
  margin: 0 0 17px;
  color: var(--rng-muted);
  font-size: 16px;
  line-height: 1.78;
}
.rng-founder-copy blockquote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--rng-red-bright);
  background: rgba(255,255,255,.035);
  color: #fff;
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(26px,3vw,38px);
  font-weight: 700;
  line-height: 1.12;
}

.rng-about-manifesto {
  padding-block: 82px;
  border-bottom: 1px solid var(--rng-line-soft);
}
.rng-about-manifesto__inner {
  max-width: 1120px;
  text-align: center;
}
.rng-about-manifesto blockquote {
  margin: 24px auto;
  color: #fff;
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(36px,5vw,66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.rng-about-manifesto strong {
  color: var(--rng-red-bright);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rng-about-future__grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
}
.rng-about-future__grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  min-height: 150px;
  padding: 26px;
  border: 1px solid #343434;
  background: linear-gradient(145deg,#151515,#0e0e0e);
}
.rng-about-future__grid article > strong {
  color: var(--rng-red-bright);
  font-family: "Barlow Condensed",sans-serif;
  font-size: 30px;
  line-height: 1;
}
.rng-about-future__grid h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 25px;
  line-height: 1;
}
.rng-about-future__grid p {
  margin: 0;
  color: var(--rng-muted);
  font-size: 13px;
  line-height: 1.65;
}
.rng-about-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 1050px) {
  .rng-about-story__grid,
  .rng-about-section-heading,
  .rng-founder-layout--has-photo { grid-template-columns: 1fr; }
  .rng-about-story__statement { max-width: 620px; }
  .rng-about-features__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .rng-founder-photo { max-width: 520px; }
}

@media (max-width: 720px) {
  .rng-about-story,
  .rng-about-values-section,
  .rng-about-features,
  .rng-founder-section,
  .rng-about-manifesto,
  .rng-about-future { padding-block: 48px; }

  .rng-about-story__grid { gap: 34px; }
  .rng-about-story__copy h2,
  .rng-about-section-heading h2,
  .rng-founder-copy h2 { font-size: 44px; }
  .rng-about-story__copy p,
  .rng-founder-bio p { font-size: 15px; line-height: 1.7; }
  .rng-about-story__statement { padding: 24px 0 24px 22px; }
  .rng-about-story__statement span { font-size: 50px; }

  .rng-about-section-heading { gap: 16px; margin-bottom: 26px; }
  .rng-values-grid--about article { min-height: 0; padding: 24px; }
  .rng-values-grid--about h3 { margin-top: 28px; }

  .rng-about-features__grid,
  .rng-about-future__grid { grid-template-columns: 1fr; }
  .rng-about-features__grid article { min-height: 215px; padding: 24px; }
  .rng-about-features__grid h3 { margin-top: 38px; }

  .rng-founder-layout { gap: 30px; }
  .rng-founder-photo { width: 100%; max-width: none; aspect-ratio: 4 / 5; }
  .rng-founder-copy blockquote { padding: 20px; font-size: 29px; }

  .rng-about-manifesto blockquote { font-size: 39px; }
  .rng-about-future__grid article { grid-template-columns: 46px 1fr; padding: 22px; }
  .rng-about-contact-actions { width: 100%; }
  .rng-about-contact-actions .rng-btn { width: 100%; justify-content: center; }
}

/* Página 404 personalizada */
.rng-site--404 {
  min-height: 100vh;
}

.rng-404-main {
  min-height: 70vh;
}

.rng-404-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px,9vw,132px) 0;
  border-bottom: 1px solid var(--rng-line-soft);
  background:
    linear-gradient(90deg,rgba(8,8,8,.96),rgba(8,8,8,.82)),
    radial-gradient(circle at 18% 28%,rgba(193,18,31,.22),transparent 32%),
    linear-gradient(145deg,#111,#070707 72%);
}

.rng-404-hero::before,
.rng-404-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.rng-404-hero::before {
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(120deg,transparent 0 47%,rgba(255,255,255,.04) 48%,transparent 49%),
    linear-gradient(60deg,transparent 0 47%,rgba(255,255,255,.03) 48%,transparent 49%);
  background-size: 88px 88px;
}

.rng-404-hero::after {
  right: -90px;
  bottom: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(224,58,50,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(224,58,50,.025), 0 0 0 140px rgba(224,58,50,.018);
}

.rng-404-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr);
  align-items: center;
  gap: clamp(44px,7vw,104px);
}

.rng-404-code {
  position: relative;
  color: transparent;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(150px,20vw,320px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.07em;
  -webkit-text-stroke: 2px rgba(244,244,241,.78);
  text-shadow: 16px 18px 0 rgba(193,18,31,.22), 0 20px 60px rgba(0,0,0,.65);
}

.rng-404-code::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -30px;
  left: 6%;
  height: 4px;
  background: linear-gradient(90deg,transparent,var(--rng-red-bright),transparent);
  transform: skewX(-26deg);
  box-shadow: 0 10px 26px rgba(224,58,50,.35);
}

.rng-404-copy {
  max-width: 720px;
}

.rng-404-copy h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(52px,7vw,94px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.02em;
}

.rng-404-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--rng-muted);
  font-size: 17px;
  line-height: 1.75;
}

.rng-404-actions {
  margin-top: 30px;
}

.rng-404-search {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 0;
  max-width: 680px;
  margin-top: 22px;
  border: 1px solid #3a3a3a;
  background: #0c0c0c;
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}

.rng-404-search input {
  min-width: 0;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.rng-404-search input::placeholder {
  color: #7f7f7b;
}

.rng-404-search button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  background: var(--rng-red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease,transform .2s ease;
}

.rng-404-search button:hover {
  background: var(--rng-red-bright);
}

.rng-404-directions {
  padding-block: 72px;
  border-bottom: 1px solid var(--rng-line-soft);
}

.rng-404-directions__heading {
  margin-bottom: 28px;
}

.rng-404-directions__heading h2 {
  margin: 8px 0 0;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(40px,5vw,62px);
  line-height: 1;
}

.rng-404-links {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}

.rng-404-links a {
  position: relative;
  min-height: 170px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #343434;
  background: linear-gradient(145deg,#151515,#0d0d0d);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.rng-404-links a::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 17px;
  color: var(--rng-red-bright);
  font-size: 25px;
  transition: transform .22s ease;
}

.rng-404-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(224,58,50,.64);
  box-shadow: 0 18px 42px rgba(0,0,0,.3);
}

.rng-404-links a:hover::after {
  transform: translateX(4px);
}

.rng-404-links strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: 30px;
  line-height: 1;
}

.rng-404-links span {
  display: block;
  max-width: 220px;
  color: var(--rng-muted);
  font-size: 13px;
  line-height: 1.65;
}

.rng-404-latest {
  padding-block: 76px;
}

@media (max-width: 980px) {
  .rng-404-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .rng-404-code {
    width: fit-content;
    font-size: clamp(150px,30vw,250px);
  }

  .rng-404-links {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  .rng-404-hero {
    padding: 58px 0 64px;
  }

  .rng-404-hero__grid {
    gap: 38px;
  }

  .rng-404-code {
    font-size: min(43vw,190px);
    -webkit-text-stroke-width: 1.5px;
    text-shadow: 9px 10px 0 rgba(193,18,31,.22), 0 16px 44px rgba(0,0,0,.62);
  }

  .rng-404-copy h1 {
    font-size: 54px;
  }

  .rng-404-copy > p {
    font-size: 15px;
    line-height: 1.68;
  }

  .rng-404-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rng-404-actions .rng-btn {
    width: 100%;
  }

  .rng-404-search {
    grid-template-columns: 1fr;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .rng-404-search input {
    border: 1px solid #3a3a3a;
    background: #0c0c0c;
  }

  .rng-404-search button {
    width: 100%;
  }

  .rng-404-directions,
  .rng-404-latest {
    padding-block: 50px;
  }

  .rng-404-links {
    grid-template-columns: 1fr;
  }

  .rng-404-links a {
    min-height: 140px;
    padding: 23px;
  }
}

/* =========================================================
   Refinamentos da página Sobre e reflexão pessoal — v1.5.8
   ========================================================= */
.rng-site--about .rng-about-story__copy p,
.rng-site--about .rng-about-section-heading > p,
.rng-site--about .rng-values-grid--about p,
.rng-site--about .rng-about-features__grid p,
.rng-site--about .rng-founder-bio p,
.rng-site--about .rng-about-future__grid p {
  color: #c2c2bf;
}

.rng-about-story { padding-block: 68px; }
.rng-about-values-section,
.rng-about-future { padding-block: 66px; }
.rng-about-features { padding-block: 68px; }
.rng-founder-section { padding-block: 70px; }
.rng-about-manifesto { padding-block: 68px; }

.rng-founder-layout--no-photo {
  max-width: none;
}
.rng-founder-content {
  display: grid;
  gap: 30px;
  min-width: 0;
}
.rng-founder-layout--no-photo .rng-founder-content {
  grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr);
  gap: clamp(38px,5vw,72px);
  align-items: start;
}
.rng-founder-layout--has-photo .rng-founder-content {
  grid-template-columns: minmax(0,1fr);
}
.rng-founder-layout--no-photo .rng-founder-copy {
  max-width: 900px;
}

.rng-founder-note {
  position: relative;
  padding: 30px 30px 32px;
  overflow: hidden;
  border: 1px solid #3d3d3d;
  border-left: 4px solid var(--rng-red-bright);
  background:
    radial-gradient(circle at 100% 0,rgba(224,58,50,.14),transparent 42%),
    linear-gradient(145deg,#171717,#0d0d0d);
  box-shadow: 0 22px 54px rgba(0,0,0,.26);
}
.rng-founder-note::after {
  content: "“";
  position: absolute;
  right: 20px;
  bottom: -34px;
  color: rgba(255,255,255,.045);
  font-family: Georgia,serif;
  font-size: 170px;
  line-height: 1;
  pointer-events: none;
}
.rng-founder-note .rng-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.rng-founder-note blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(27px,2.4vw,38px);
  font-weight: 700;
  line-height: 1.04;
}
.rng-founder-note blockquote span {
  display: block;
  margin-bottom: 7px;
}
.rng-founder-note blockquote span:nth-child(4) {
  margin-top: 18px;
  color: var(--rng-red-bright);
  font-size: 1.16em;
  text-transform: uppercase;
}
.rng-founder-note blockquote .rng-founder-note__closing {
  margin: 22px 0 0;
  color: #d0d0cc;
  font-family: Inter,sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: none;
}

.rng-values-grid--about article,
.rng-about-features__grid article,
.rng-about-future__grid article {
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease;
}
.rng-about-features__grid article:hover,
.rng-about-future__grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(224,58,50,.58);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
  background: linear-gradient(150deg,#181313,#0e0e0e);
}

.rng-about-manifesto__inner { max-width: 1240px; }
.rng-about-manifesto blockquote {
  font-size: clamp(34px,4.2vw,58px);
  line-height: 1.12;
}

.rng-site--about .rng-contact-band {
  gap: 24px;
  padding: 36px 40px;
}
.rng-site--about .rng-contact-band > div:first-child { max-width: 780px; }
.rng-site--about .rng-about-contact-actions { margin-left: auto; }
.rng-contact-response {
  display: block;
  margin-top: 10px;
  color: #8f8f8c;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .rng-founder-layout--no-photo .rng-founder-content {
    grid-template-columns: minmax(0,1fr);
  }
  .rng-founder-note { max-width: 760px; }
  .rng-site--about .rng-about-contact-actions { margin-left: 0; }
}

@media (max-width: 720px) {
  .rng-about-story,
  .rng-about-values-section,
  .rng-about-features,
  .rng-founder-section,
  .rng-about-manifesto,
  .rng-about-future { padding-block: 44px; }

  .rng-founder-note { padding: 24px 22px 26px; }
  .rng-founder-note blockquote { font-size: 30px; }
  .rng-founder-note blockquote .rng-founder-note__closing { font-size: 14px; }
  .rng-about-manifesto blockquote { font-size: 36px; }
  .rng-site--about .rng-contact-band { padding: 28px; }
}

/* =========================================================
   Formulários internos de contato — v1.5.9
   ========================================================= */
.rng-contact-form-card {
  scroll-margin-top: 105px;
  margin-top: 48px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid #3a3030;
  border-left: 4px solid var(--rng-red-bright);
  background:
    radial-gradient(circle at 0 0, rgba(193,18,31,.15), transparent 34%),
    linear-gradient(145deg,#171717,#0d0d0d 68%);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.rng-contact-form-card__intro {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(320px,.65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 30px;
}
.rng-contact-form-card__intro h2 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed",Impact,sans-serif;
  font-size: clamp(38px,4.2vw,58px);
  line-height: .98;
}
.rng-contact-form-card__intro p {
  margin: 0;
  color: #b7b7b4;
  line-height: 1.72;
}
.rng-contact-form {
  margin-top: 28px;
}
.rng-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}
.rng-field {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 8px;
}
.rng-field--full { align-self: stretch; }
.rng-field--full { grid-column: 1 / -1; }
.rng-field > span {
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}
.rng-field input,
.rng-field select,
.rng-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #444;
  border-radius: 0;
  outline: none;
  background: #0b0b0b;
  color: #fff;
  font: inherit;
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.rng-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.rng-field input::placeholder,
.rng-field textarea::placeholder { color: #777; }
.rng-field input:focus,
.rng-field select:focus,
.rng-field textarea:focus {
  border-color: var(--rng-red-bright);
  background: #101010;
  box-shadow: 0 0 0 3px rgba(224,58,50,.12);
}
.rng-contact-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 22px 0 0;
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
}
.rng-contact-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--rng-red-bright);
  flex: 0 0 auto;
}
.rng-contact-consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rng-contact-form__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}
.rng-contact-form__actions small { color: #858585; }
.rng-contact-form__actions button { border: 0; cursor: pointer; }
.rng-contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.rng-contact-notice {
  margin: 22px 0 0;
  padding: 15px 17px;
  border-left: 4px solid #777;
  background: #131313;
  color: #f2f2f2;
  line-height: 1.55;
}
.rng-contact-notice--success { border-color: #27ae60; background: rgba(39,174,96,.10); }
.rng-contact-notice--error { border-color: var(--rng-red-bright); background: rgba(224,58,50,.10); }
.rng-contact-notice--info { border-color: #d8a532; background: rgba(216,165,50,.09); }

@media (max-width: 900px) {
  .rng-contact-form-card__intro { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .rng-contact-form-card {
    scroll-margin-top: 82px;
    margin-top: 32px;
    padding: 24px 19px;
  }
  .rng-contact-form__grid { grid-template-columns: 1fr; }
  .rng-field--full { grid-column: auto; }
  .rng-contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .rng-contact-form__actions .rng-btn { width: 100%; }
}

/* Formulário de contato: máscara de telefone e anexos */
.rng-field-help {
  display: block;
  margin-top: 1px;
  color: #858585;
  font-size: 12px;
  line-height: 1.5;
}
.rng-upload-box {
  display: grid;
  grid-template-columns: max-content minmax(0,1fr);
  align-items: center;
  gap: 10px 15px;
  padding: 15px;
  border: 1px solid #333;
  background: #0b0b0b;
}
.rng-upload-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none;
}
.rng-upload-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #555;
  background: #111;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.rng-upload-trigger svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.rng-upload-trigger:hover,
.rng-upload-trigger:focus-visible,
.rng-upload-trigger.is-active {
  color: var(--rng-red-bright);
  border-color: var(--rng-red-bright);
  background: rgba(224,58,50,.06);
  box-shadow: 0 0 0 3px rgba(224,58,50,.10);
  outline: none;
}
.rng-upload-input:focus + .rng-upload-trigger {
  color: var(--rng-red-bright);
  border-color: var(--rng-red-bright);
  box-shadow: 0 0 0 3px rgba(224,58,50,.13);
}
.rng-upload-status {
  min-width: 0;
  color: #b8b8b5;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.rng-upload-box > .rng-field-help {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .rng-upload-box { grid-template-columns: 1fr; }
  .rng-upload-trigger { width: 100%; }
  .rng-upload-box > .rng-field-help { grid-column: auto; }
}



/* =========================================================
   Compartilhamento das matérias — v1.6.2
   ========================================================= */
.rng-article-hero__content {
  position: relative;
}

.rng-article-meta {
  padding-right: 310px;
}

.rng-share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rng-share--hero {
  position: absolute;
  right: 0;
  bottom: 68px;
  flex-direction: column;
  align-items: flex-end;
}

.rng-share__label {
  color: #d7d7d2;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

.rng-share__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.rng-share__button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(8,8,8,.72);
  color: #f4f4f1;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.rng-share__button:hover,
.rng-share__button:focus-visible,
.rng-share__button.is-copied {
  border-color: var(--rng-red-bright);
  background: var(--rng-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(193,18,31,.32);
  outline: none;
}

.rng-share__button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.rng-share__button--copy svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}


.rng-share--event-hero {
  width: fit-content;
  margin-top: 24px;
  flex-direction: column;
  align-items: flex-start;
}

.rng-share--event-hero .rng-share__buttons,
.rng-share--event-footer .rng-share__buttons {
  justify-content: flex-start;
}

.rng-share--event-hero .rng-share__feedback,
.rng-share--event-footer .rng-share__feedback {
  right: auto;
  left: 0;
}

.rng-share--event-footer {
  margin-top: 46px;
  padding-top: 28px;
  justify-content: space-between;
  border-top: 1px solid #282828;
}

.rng-share__feedback {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: max-content;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity .2s ease, transform .2s ease;
}

.rng-share.has-feedback .rng-share__feedback {
  opacity: 1;
  transform: translateY(0);
}

.rng-article-tags__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.rng-article-tags__content {
  min-width: 0;
}

.rng-article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.rng-share--tags {
  flex: 0 0 auto;
  margin-left: auto;
}

.rng-share--tags .rng-share__feedback {
  right: 0;
}

@media (max-width: 1100px) {
  .rng-article-meta {
    padding-right: 0;
  }

  .rng-share--hero {
    position: static;
    margin-top: 26px;
    align-items: flex-start;
  }

  .rng-share--hero .rng-share__feedback {
    right: auto;
    left: 0;
  }
}

@media (max-width: 720px) {
  .rng-share {
    gap: 9px;
  }

  .rng-share__button {
    width: 40px;
    height: 40px;
  }

  .rng-share__button svg {
    width: 16px;
    height: 16px;
  }

  .rng-article-tags__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .rng-share--tags,
  .rng-share--event-footer {
    width: 100%;
    margin-left: 0;
    padding-top: 18px;
    border-top: 1px solid #252525;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .rng-share--tags .rng-share__buttons,
  .rng-share--event-footer .rng-share__buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .rng-share__buttons {
    gap: 5px;
  }

  .rng-share__button {
    width: 36px;
    height: 36px;
  }
}


/* v1.6.4 - Matérias mais harmoniosas e sem títulos gigantes */
.rng-site--article-single .rng-article-hero h1 {
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: .98;
  max-width: 980px;
}
.rng-site--article-single .rng-article-deck {
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.48;
  max-width: 760px;
}
.rng-site--article-single .rng-article-prose {
  font-size: 17px;
  line-height: 1.82;
}
@media (max-width: 720px) {
  .rng-site--article-single .rng-article-hero h1 {
    font-size: clamp(34px, 10.5vw, 50px);
    line-height: 1.02;
  }
  .rng-site--article-single .rng-article-deck {
    font-size: 16px;
    line-height: 1.45;
  }
  .rng-site--article-single .rng-article-prose {
    font-size: 16px;
    line-height: 1.76;
  }
}


/* v1.6.7 - Imagem destacada de matéria no tamanho natural, sem tarjas laterais artificiais */
.rng-site--article-single .rng-article-featured {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 38px;
  overflow: visible;
  border: 1px solid #3d3d3d;
  background: transparent;
}
.rng-site--article-single .rng-article-featured img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 720px;
  margin: 0 auto;
  object-fit: contain;
}
.rng-site--article-single .rng-article-featured figcaption {
  background: #0d0d0d;
}
@media (max-width: 820px) {
  .rng-site--article-single .rng-article-featured {
    width: 100%;
    margin-bottom: 28px;
  }
  .rng-site--article-single .rng-article-featured img {
    width: 100%;
    max-height: none;
  }
}

/* v1.6.8 - Layout premium para página individual de evento */
.rng-site--event-single .rng-event-single {
  padding-block: 64px 88px;
}
.rng-site--event-single .rng-event-single__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 46px;
  align-items: start;
}
.rng-site--event-single .rng-event-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
  min-width: 0;
}
.rng-site--event-single .rng-event-single__image {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #171717, #0d0d0d);
  border: 1px solid #3f3f3f;
  box-shadow: 0 18px 46px rgba(0,0,0,.32);
}
.rng-site--event-single .rng-event-single__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}
.rng-site--event-single .rng-event-info {
  position: static;
  top: auto;
  padding: 28px;
  border-color: #424242;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.rng-site--event-single .rng-event-prose-block,
.rng-site--event-single .rng-event-map-block {
  min-width: 0;
}
.rng-site--event-single .rng-section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ff4d45;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rng-site--event-single .rng-event-prose-block > h2,
.rng-site--event-single .rng-event-map-block > h2 {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: .98;
}
.rng-site--event-single .rng-event-prose-block .rng-prose {
  max-width: 860px;
  color: #d8d8d4;
  font-size: 16px;
  line-height: 1.82;
}
.rng-site--event-single .rng-event-prose-block .rng-prose p {
  margin: 0 0 1.18em;
}
.rng-site--event-single .rng-event-map-block {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid #282828;
}
.rng-site--event-single .rng-event-map-block p {
  max-width: 760px;
  margin: -8px 0 20px;
  color: #c9c9c6;
  font-size: 15px;
  line-height: 1.6;
}
.rng-site--event-single .rng-event-map-block iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: 0 18px 42px rgba(0,0,0,.38);
}
.rng-site--event-single .rng-event-map-block .rng-btn {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .rng-site--event-single .rng-event-single {
    padding-block: 30px 58px;
  }
  .rng-site--event-single .rng-event-single__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  .rng-site--event-single .rng-event-sidebar {
    order: 1 !important;
    position: static !important;
    width: 100%;
    gap: 18px;
  }
  .rng-site--event-single .rng-event-single__content {
    order: 2 !important;
    display: block !important;
    width: 100%;
  }
  .rng-site--event-single .rng-event-sidebar .rng-event-single__image {
    order: 1 !important;
    width: 100%;
  }
  .rng-site--event-single .rng-event-sidebar .rng-event-info {
    order: 2 !important;
    width: 100%;
    box-sizing: border-box;
  }
  .rng-site--event-single .rng-event-single__image img {
    max-height: none;
  }
  .rng-site--event-single .rng-event-prose-block {
    margin-top: 12px;
  }
  .rng-site--event-single .rng-event-prose-block > h2,
  .rng-site--event-single .rng-event-map-block > h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .rng-site--event-single .rng-event-prose-block .rng-prose {
    max-width: none;
    font-size: 16px;
    line-height: 1.74;
  }
  .rng-site--event-single .rng-event-map-block {
    margin-top: 34px;
    padding-top: 28px;
  }
  .rng-site--event-single .rng-event-map-block iframe {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .rng-site--event-single .rng-event-info {
    padding: 22px 18px;
  }
  .rng-site--event-single .rng-event-info h2 {
    font-size: 29px;
  }
  .rng-site--event-single .rng-event-info dd {
    font-size: 15px;
  }
  .rng-site--event-single .rng-event-prose-block .rng-prose {
    font-size: 15.5px;
    line-height: 1.72;
  }
  .rng-site--event-single .rng-event-map-block iframe {
    min-height: 260px;
  }
}


/* =========================================================
   v1.6.9 - Refinamento editorial das matérias
   ========================================================= */
.rng-site--article-single .rng-article-prose {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.86;
  color: #d9d9d4;
}
.rng-site--article-single .rng-article-prose > p:first-child {
  font-size: 18px;
  line-height: 1.76;
  color: #eeeeea;
}
.rng-site--article-single .rng-article-prose p {
  margin-bottom: 1.42em;
}
.rng-site--article-single .rng-article-prose a {
  color: #ff5149;
  font-weight: 800;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: color .18s ease, text-shadow .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.rng-site--article-single .rng-article-prose a:hover,
.rng-site--article-single .rng-article-prose a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 81, 73, .28);
  outline: none;
}
.rng-site--article-single .rng-article-prose h2,
.rng-site--article-single .rng-article-prose h3 {
  position: relative;
  margin-top: 1.95em;
  margin-bottom: .72em;
  letter-spacing: -.01em;
}
.rng-site--article-single .rng-article-prose h2::after,
.rng-site--article-single .rng-article-prose h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 13px;
  background: var(--rng-red-bright);
}
.rng-site--article-single .rng-article-prose ul,
.rng-site--article-single .rng-article-prose ol {
  margin: 0 0 1.55em;
  padding-left: 1.25em;
}
.rng-site--article-single .rng-article-prose li {
  margin-bottom: .48em;
  padding-left: .18em;
}
.rng-site--article-single .rng-article-prose li::marker {
  color: #ff5149;
}
.rng-site--article-single .rng-article-prose blockquote {
  border-left-color: #ff5149;
  background: linear-gradient(120deg, rgba(193,18,31,.18), rgba(255,255,255,.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.045);
}
.rng-site--article-single .rng-article-prose p:has(a[href*="/event/"]) {
  margin: 2.1em 0 1.8em;
  padding: 18px 20px;
  background: linear-gradient(120deg, rgba(193,18,31,.18), rgba(14,14,14,.94));
  border: 1px solid rgba(255,255,255,.09);
  border-left: 4px solid #ff5149;
  color: #eeeeea;
}
.rng-site--article-single .rng-article-prose p:has(a[href*="/event/"]) a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
  color: #ffffff;
}
.rng-site--article-single .rng-article-prose p:has(a[href*="/event/"]) a::after {
  content: "→";
  color: #ff5149;
  transform: translateY(-1px);
}
.rng-site--article-single .rng-article-prose p:has(a[href*="/event/"]) a:hover {
  color: #ff5149;
  text-shadow: none;
}
.rng-site--article-single .rng-article-featured {
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.rng-site--article-single .rng-article-featured img {
  background: #080808;
}
.rng-site--article-single .rng-article-featured figcaption,
.rng-site--article-single .rng-article-featured figcaption a {
  text-decoration: none !important;
}
.rng-site--article-single .rng-article-tags {
  margin-top: 50px;
  padding-top: 28px;
}
.rng-site--article-single .rng-article-sidebar__box {
  border-color: rgba(255,255,255,.16);
}
.rng-site--article-single .rng-article-sidebar dd a {
  color: #ffffff;
  text-decoration: none !important;
}
.rng-site--article-single .rng-article-sidebar dd a:hover {
  color: #ff5149;
}
@media (max-width: 720px) {
  .rng-site--article-single .rng-article-prose {
    font-size: 16px;
    line-height: 1.78;
  }
  .rng-site--article-single .rng-article-prose > p:first-child {
    font-size: 16.5px;
    line-height: 1.72;
  }
  .rng-site--article-single .rng-article-prose h2 {
    font-size: 32px;
  }
  .rng-site--article-single .rng-article-prose h3 {
    font-size: 27px;
  }
  .rng-site--article-single .rng-article-prose p:has(a[href*="/event/"]) {
    padding: 16px;
    margin: 1.8em 0 1.55em;
  }
}


/* =========================================================
   v1.7.0 - Banner das matérias mais compacto e editorial
   Reduz a altura do hero em posts individuais para evitar
   faixa visual excessiva abaixo do cabeçalho.
   ========================================================= */
.rng-site--article-single .rng-article-hero {
  min-height: clamp(360px, 42vh, 500px);
  background-position: center 42%;
}
.rng-site--article-single .rng-article-hero__content {
  padding-block: clamp(54px, 6vh, 76px) clamp(42px, 5vh, 58px);
}
.rng-site--article-single .rng-article-hero h1 {
  font-size: clamp(42px, 4.75vw, 68px);
  max-width: 940px;
  margin-bottom: 16px;
}
.rng-site--article-single .rng-article-deck {
  max-width: 720px;
  font-size: clamp(16px, 1.1vw, 19px);
  margin-bottom: 20px;
}
.rng-site--article-single .rng-article-meta {
  font-size: 12.5px;
}
.rng-site--article-single .rng-share--hero {
  align-self: end;
  margin-bottom: 8px;
}
@media (min-width: 1180px) {
  .rng-site--article-single .rng-article-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 46px;
    align-items: end;
  }
}
@media (max-width: 900px) {
  .rng-site--article-single .rng-article-hero {
    min-height: auto;
  }
  .rng-site--article-single .rng-article-hero__content {
    padding-block: 72px 46px;
  }
  .rng-site--article-single .rng-share--hero {
    margin-top: 26px;
    margin-bottom: 0;
  }
}
@media (max-width: 720px) {
  .rng-site--article-single .rng-article-hero {
    background-position: center top;
  }
  .rng-site--article-single .rng-article-hero__content {
    padding-block: 64px 38px;
  }
  .rng-site--article-single .rng-article-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .rng-site--article-single .rng-article-deck {
    font-size: 15.5px;
    line-height: 1.48;
  }
  .rng-site--article-single .rng-article-meta {
    gap: 9px 16px;
  }
}

/* =========================================================
   v1.7.1 - Topo das matérias com resumo e compartilhamento agrupados
   ========================================================= */
.rng-site--article-single .rng-article-hero__content {
  position: relative;
}

.rng-site--article-single .rng-article-hero__main {
  min-width: 0;
}

.rng-site--article-single .rng-article-hero__side {
  width: min(100%, 790px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}

.rng-site--article-single .rng-article-hero__kicker {
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  background: rgba(193, 18, 31, .26);
  border-left: 3px solid #ff5149;
  color: #ff5149;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rng-site--article-single .rng-article-hero__side .rng-article-deck {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #f2f2ee;
  font-size: clamp(18px, 1.36vw, 24px);
  font-weight: 500;
  line-height: 1.36;
  text-wrap: balance;
}

.rng-site--article-single .rng-article-meta {
  padding-right: 0;
}

.rng-site--article-single .rng-share--hero {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 4px 0 0;
  align-items: flex-end;
}

.rng-site--article-single .rng-share--hero .rng-share__feedback {
  right: 0;
  left: auto;
}

.rng-site--article-single .rng-article-prose a,
.rng-site--article-single .rng-article-featured figcaption a,
.rng-site--article-single .rng-article-sidebar dd a,
.rng-site--article-single .rng-article-tag-list a {
  text-decoration: none !important;
}

@media (min-width: 1180px) {
  .rng-site--article-single .rng-article-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 790px);
    gap: clamp(34px, 4vw, 68px);
    align-items: end;
  }

  .rng-site--article-single .rng-article-hero__main {
    grid-column: 1;
  }

  .rng-site--article-single .rng-article-hero__side {
    grid-column: 2;
    justify-self: end;
    align-self: end;
  }
}

@media (max-width: 1179px) {
  .rng-site--article-single .rng-article-hero__content {
    display: block;
  }

  .rng-site--article-single .rng-article-hero__side {
    width: 100%;
    max-width: 760px;
    align-items: flex-start;
    margin-top: 28px;
    gap: 18px;
  }

  .rng-site--article-single .rng-share--hero {
    align-items: flex-start;
  }

  .rng-site--article-single .rng-share--hero .rng-share__feedback {
    right: auto;
    left: 0;
  }
}

@media (max-width: 720px) {
  .rng-site--article-single .rng-article-hero__side {
    margin-top: 24px;
    gap: 16px;
  }

  .rng-site--article-single .rng-article-hero__kicker {
    padding: 10px 13px;
    font-size: 12px;
  }

  .rng-site--article-single .rng-article-hero__side .rng-article-deck {
    font-size: 15.5px;
    line-height: 1.48;
  }
}


/* =========================================================
   v1.7.8 - Busca personalizada RockNGo
   Corrige a lupa do cabeçalho e transforma a busca em uma
   página guiada por termo, editorias e tags.
   ========================================================= */
.rng-site--search .rng-page-hero h1 {
  max-width: 980px;
}

.rng-section--search-hub {
  padding-top: clamp(44px, 6vw, 78px);
}

.rng-search-panel {
  display: grid;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(34px, 5vw, 58px);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
}

.rng-search-form {
  display: grid;
  gap: 12px;
}

.rng-search-form label,
.rng-search-shortcuts__title {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rng-search-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.rng-search-form input[type="search"] {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: #fff;
  background: rgba(5,10,20,.88);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  outline: none;
}

.rng-search-form input[type="search"]:focus {
  border-color: rgba(255,76,68,.85);
  box-shadow: 0 0 0 3px rgba(193,18,31,.26);
}

.rng-search-selected-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 12px 14px;
  color: rgba(255,255,255,.82);
  background: rgba(193,18,31,.14);
  border-left: 3px solid #ff4a42;
}

.rng-search-selected-tag a {
  color: #ff4a42;
  font-weight: 800;
  text-decoration: none;
}

.rng-search-shortcuts {
  display: grid;
  gap: 24px;
}

.rng-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.rng-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #f6f6f6;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.rng-chip:hover,
.rng-chip:focus-visible {
  transform: translateY(-1px);
  background: rgba(193,18,31,.22);
  border-color: rgba(255,76,68,.72);
  color: #fff;
}

.rng-chip--tag {
  text-transform: none;
  letter-spacing: 0;
}

.rng-section-title--search {
  margin-bottom: 24px;
}

.rng-search-results-grid .rng-archive-card {
  min-height: 100%;
}

.rng-search-results-grid .rng-archive-card__body {
  display: flex;
  flex-direction: column;
}

.rng-search-results-grid .rng-read-more {
  margin-top: auto;
}

@media (max-width: 720px) {
  .rng-search-form__row {
    grid-template-columns: 1fr;
  }

  .rng-search-form__row .rng-btn {
    width: 100%;
  }

  .rng-search-panel {
    gap: 24px;
  }
}


/* Agenda: preview de imagem no calendário apenas para web/desktop */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .rng-calendar-event__preview {
    display: none !important;
  }
}


/* Agenda: preview flutuante de imagem no calendário — v1.8.1
   O preview agora fica fora da grade, evitando cortes/empilhamento atrás do calendário. */
.rng-calendar-event__preview {
  display: none !important;
}

.rng-calendar-floating-preview {
  position: fixed;
  left: var(--rng-preview-x, -9999px);
  top: var(--rng-preview-y, -9999px);
  z-index: 2147483000;
  width: min(520px, calc(100vw - 36px));
  padding: 7px;
  background: linear-gradient(180deg, rgba(22,22,22,.98), rgba(9,9,9,.98));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.86);
  transform-origin: var(--rng-preview-origin, top left);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.rng-calendar-floating-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.rng-calendar-floating-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    #101010;
  padding: 6px;
  box-sizing: border-box;
}

.rng-calendar-floating-preview strong {
  display: block;
  padding: 8px 6px 3px;
  color: #fff;
  font-size: 13px;
  line-height: 1.28;
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .rng-calendar-floating-preview,
  .rng-calendar-event__preview {
    display: none !important;
  }
}


/* Tela de carregamento do portal */
.rng-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(196,19,31,.14), transparent 42%),
    rgba(6, 6, 7, .985);
  backdrop-filter: blur(2px);
  opacity: 1;
  visibility: visible;
  transition: opacity .34s ease, visibility .34s ease;
}

.rng-loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rng-loading-screen__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
}

.rng-loading-screen__image {
  display: block;
  max-width: min(420px, 72vw);
  max-height: min(220px, 26vh);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.35));
}

.rng-loading-screen__wordmark {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: .14em;
}

.rng-loading-screen__spinner {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: #e31b23;
  animation: rngSpin .9s linear infinite;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}

@keyframes rngSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* Imagens ampliáveis nas matérias */
.rng-article-image-link {
  position: relative;
  display: block;
  color: inherit;
  cursor: zoom-in;
}

.rng-article-image-link img,
.rng-article-prose img.rng-lightbox-enabled {
  cursor: zoom-in;
}

.rng-article-image-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px;
  background: rgba(8,8,8,.78);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.rng-article-image-link:hover .rng-article-image-zoom,
.rng-article-image-link:focus-visible .rng-article-image-zoom {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--rng-red-bright);
}

.rng-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483500;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(0,0,0,.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.rng-image-lightbox.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rng-image-lightbox__stage {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: min(1280px, 94vw);
  max-height: 92vh;
}

.rng-image-lightbox__image {
  display: block;
  max-width: min(1280px, 94vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.18);
  background: #080808;
  box-shadow: 0 24px 90px rgba(0,0,0,.72);
}

.rng-image-lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #d8d8d2;
  font-size: 12px;
}

.rng-image-lightbox__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rng-image-lightbox__open {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
}

.rng-image-lightbox__open:hover {
  color: var(--rng-red-bright);
}

.rng-image-lightbox__close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(10,10,10,.82);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.rng-image-lightbox__close:hover,
.rng-image-lightbox__close:focus-visible {
  border-color: var(--rng-red-bright);
  background: rgba(193,18,31,.92);
}

body.rng-lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .rng-article-image-zoom {
    opacity: 1;
    transform: none;
    right: 9px;
    bottom: 9px;
    padding: 7px 9px;
    font-size: 9px;
  }
  .rng-image-lightbox {
    padding: 14px;
  }
  .rng-image-lightbox__image {
    max-height: 78vh;
  }
  .rng-image-lightbox__bar {
    display: grid;
  }
}


/* =========================================================
   Agenda responsiva, calendário expandível e carrossel — v1.9.0
   ========================================================= */
.rng-site--agenda {
  --rng-today: #f0bd45;
  --rng-today-soft: rgba(240, 189, 69, .13);
}

/* O dia atual usa âmbar para não disputar atenção com o vermelho dos eventos. */
.rng-site--agenda .rng-calendar-day.is-today {
  background: linear-gradient(145deg, var(--rng-today-soft), rgba(17,17,17,.96));
  box-shadow: inset 0 0 0 2px var(--rng-today);
}
.rng-site--agenda .rng-calendar-day.is-today .rng-calendar-day__head time {
  color: #15120a;
  background: var(--rng-today);
  box-shadow: 0 0 0 4px rgba(240,189,69,.12);
}

/* Semanas totalmente vazias ficam mais baixas e devolvem espaço ao conteúdo útil. */
@media (min-width: 721px) {
  .rng-site--agenda .rng-calendar-day.is-empty-week {
    min-height: 88px;
  }

  .rng-site--agenda .rng-calendar-day.is-empty-week .rng-calendar-day__events {
    display: none;
  }

  .rng-site--agenda .rng-calendar-event--extra {
    display: none;
  }

  .rng-site--agenda .rng-calendar-day.has-overflow-events {
    transition: background-color .2s ease, box-shadow .2s ease;
  }

  .rng-site--agenda .rng-calendar-day.has-overflow-events:hover,
  .rng-site--agenda .rng-calendar-day.has-overflow-events:focus-within,
  .rng-site--agenda .rng-calendar-day.has-overflow-events.is-expanded {
    z-index: 30;
    overflow: visible;
    background: #151515;
    box-shadow: 0 20px 46px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.08);
  }

  .rng-site--agenda .rng-calendar-day.is-today.has-overflow-events:hover,
  .rng-site--agenda .rng-calendar-day.is-today.has-overflow-events:focus-within,
  .rng-site--agenda .rng-calendar-day.is-today.has-overflow-events.is-expanded {
    background: linear-gradient(145deg, var(--rng-today-soft), #151515);
    box-shadow: 0 20px 46px rgba(0,0,0,.48), inset 0 0 0 2px var(--rng-today);
  }

  .rng-site--agenda .rng-calendar-day.has-overflow-events:hover .rng-calendar-event--extra,
  .rng-site--agenda .rng-calendar-day.has-overflow-events:focus-within .rng-calendar-event--extra,
  .rng-site--agenda .rng-calendar-day.has-overflow-events.is-expanded .rng-calendar-event--extra {
    display: block;
  }

  .rng-site--agenda .rng-calendar-day.has-overflow-events:hover .rng-calendar-event strong,
  .rng-site--agenda .rng-calendar-day.has-overflow-events:focus-within .rng-calendar-event strong,
  .rng-site--agenda .rng-calendar-day.has-overflow-events.is-expanded .rng-calendar-event strong {
    display: block;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    -webkit-line-clamp: unset;
  }
}

.rng-site--agenda .rng-calendar-day__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 1px 0 0;
  padding: 4px 8px;
  color: #c8c8c4;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 3px;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.rng-site--agenda .rng-calendar-day__more:hover,
.rng-site--agenda .rng-calendar-day__more:focus-visible {
  color: #fff;
  background: rgba(193,18,31,.2);
  border-color: rgba(255,81,73,.48);
  outline: none;
}
.rng-site--agenda .rng-calendar-day__more-expanded {
  display: none;
}
.rng-site--agenda .rng-calendar-day.is-expanded .rng-calendar-day__more-collapsed {
  display: none;
}
.rng-site--agenda .rng-calendar-day.is-expanded .rng-calendar-day__more-expanded {
  display: inline;
}

/* Imagens inteiras, com fundo atmosférico, sem amputar flyers e logotipos. */
.rng-site--agenda .rng-event-card__poster {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0b0b;
}
.rng-site--agenda .rng-event-card__backdrop {
  position: absolute;
  inset: -18px;
  z-index: -2;
  overflow: hidden;
}
.rng-site--agenda .rng-event-card__backdrop img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  filter: blur(17px) saturate(.82) brightness(.48);
  transform: scale(1.08);
}
.rng-site--agenda .rng-event-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.28));
}
.rng-site--agenda .rng-event-card__poster > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.28));
}
.rng-site--agenda .rng-event-card:hover .rng-event-card__poster > img {
  transform: scale(1.015);
}

/* Seis eventos por página, com navegação explícita e sem rolagem automática. */
.rng-events-carousel__page {
  min-width: 0;
}
.rng-events-carousel.is-enhanced .rng-events-carousel__page:not(.is-active) {
  display: none;
}
.rng-events-carousel__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.rng-events-carousel.is-enhanced .rng-events-carousel__controls {
  display: flex;
}
.rng-events-carousel__arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  background: #111;
  border: 1px solid #4b4b4b;
  border-radius: 50%;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.rng-events-carousel__arrow:hover:not(:disabled),
.rng-events-carousel__arrow:focus-visible:not(:disabled) {
  color: #fff;
  background: var(--rng-red);
  border-color: var(--rng-red-bright);
  outline: none;
  transform: translateY(-2px);
}
.rng-events-carousel__arrow:disabled {
  color: #5f5f5c;
  background: #0d0d0d;
  border-color: #282828;
  cursor: not-allowed;
}
.rng-events-carousel__counter {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  min-width: 74px;
  margin: 0;
  color: #8f8f8c;
  font-size: 13px;
  letter-spacing: .08em;
}
.rng-events-carousel__counter strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
}

@media (min-width: 721px) and (max-width: 1050px) {
  .rng-site--agenda .rng-events-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rng-site--agenda .rng-calendar-day.is-today {
    border-left-color: var(--rng-today);
    box-shadow: inset 3px 0 0 var(--rng-today);
  }

  .rng-site--agenda .rng-calendar-day.is-today .rng-calendar-day__head time {
    color: var(--rng-today);
    background: transparent !important;
    box-shadow: none;
  }

  .rng-site--agenda .rng-calendar-event--extra {
    display: block;
  }

  .rng-site--agenda .rng-calendar-day__more {
    display: none;
  }

  .rng-site--agenda .rng-event-card__poster > img {
    padding: 5px;
  }

  .rng-events-carousel__controls {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rng-events-carousel__arrow,
  .rng-site--agenda .rng-calendar-day.has-overflow-events,
  .rng-site--agenda .rng-event-card__poster img {
    transition: none;
  }
}

/* =========================================================
   Histórico da Agenda e restauração da Home — v1.9.1
   ========================================================= */
.rng-agenda-events__switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: -10px 0 24px;
}

.rng-agenda-events__mode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  color: #b9b9b6;
  background: #111;
  border: 1px solid #363636;
  border-radius: 3px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.rng-agenda-events__mode span {
  color: var(--rng-red-bright);
  font-size: 22px;
  line-height: .7;
}

.rng-agenda-events__mode:hover,
.rng-agenda-events__mode:focus-visible {
  color: #fff;
  background: #181818;
  border-color: var(--rng-red-bright);
  outline: none;
}

.rng-agenda-events__mode.is-active,
.rng-agenda-events__mode[aria-pressed="true"] {
  color: #fff;
  background: rgba(193,18,31,.16);
  border-color: var(--rng-red-bright);
  cursor: default;
}

.rng-agenda-events__collection[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .rng-agenda-events__switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: -6px;
  }

  .rng-agenda-events__mode {
    width: 100%;
    padding-inline: 10px;
    font-size: 11px;
  }
}


/* =========================================================
   Simplificação da Home — v1.9.2
   ========================================================= */

/* =========================================================
   Página Sobre editorial e minimalista — v1.9.3
   ========================================================= */
.rng-site--about-editorial main {
  background:
    radial-gradient(circle at 84% 8%, rgba(193,18,31,.08), transparent 25%),
    linear-gradient(180deg, #0a0a0a 0%, #0c0c0c 55%, #090909 100%);
}

.rng-about-intro {
  padding: clamp(74px, 8vw, 128px) 0 clamp(64px, 7vw, 108px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.rng-about-intro__inner {
  max-width: 1060px;
}

.rng-about-intro .rng-eyebrow,
.rng-about-authors__heading .rng-eyebrow {
  margin-bottom: 24px;
}

.rng-about-intro h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
  color: #f4f2ed;
  text-wrap: balance;
}

.rng-about-intro__copy {
  max-width: 760px;
  margin-top: 38px;
  color: #c5c3bd;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.82;
}

.rng-about-intro__copy p {
  margin: 0 0 18px;
}

.rng-about-intro__copy p:last-child {
  margin-bottom: 0;
}

.rng-about-authors {
  padding: clamp(64px, 7vw, 112px) 0;
}

.rng-about-authors__heading {
  margin-bottom: 34px;
}

.rng-about-authors__list {
  display: grid;
  gap: clamp(70px, 8vw, 128px);
}

.rng-author-profile {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding-top: clamp(34px, 4vw, 58px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.rng-author-profile--reverse {
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, .76fr);
}

.rng-author-profile--reverse .rng-author-profile__photo {
  order: 2;
}

.rng-author-profile--reverse .rng-author-profile__content {
  order: 1;
}

.rng-author-profile--no-photo {
  grid-template-columns: minmax(0, 900px);
}

.rng-author-profile--no-photo .rng-author-profile__content {
  max-width: 900px;
}

.rng-author-profile__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #151515;
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.rng-author-profile__photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}

.rng-author-profile__photo::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 4px;
  background: var(--rng-red-bright);
}

.rng-author-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
}

.rng-author-profile__content {
  max-width: 760px;
}

.rng-author-profile__content h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.015em;
  color: #f5f3ee;
}

.rng-author-profile__role {
  margin: 11px 0 0;
  color: var(--rng-red-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.rng-author-profile__bio {
  margin-top: 30px;
  color: #c4c2bc;
  font-size: 16px;
  line-height: 1.82;
}

.rng-author-profile__bio p {
  margin: 0 0 16px;
}

.rng-author-profile__bio p:last-child {
  margin-bottom: 0;
}

.rng-author-profile blockquote {
  position: relative;
  max-width: 680px;
  margin: 32px 0 0;
  padding: 3px 0 3px 24px;
  border-left: 2px solid var(--rng-red-bright);
  color: #eeeae2;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
}

.rng-author-profile blockquote::before {
  content: "“";
}

.rng-author-profile blockquote::after {
  content: "”";
}

.rng-about-pillars {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.014);
}

.rng-about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rng-about-pillars article {
  min-height: 220px;
  padding: clamp(38px, 4vw, 58px) clamp(26px, 3.2vw, 48px);
}

.rng-about-pillars article + article {
  border-left: 1px solid rgba(255,255,255,.1);
}

.rng-about-pillars h2 {
  margin: 0;
  color: #f1efe9;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  letter-spacing: .035em;
}

.rng-about-pillars h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 18px;
  background: var(--rng-red-bright);
}

.rng-about-pillars p {
  max-width: 340px;
  margin: 23px 0 0;
  color: #aaa8a2;
  font-size: 14px;
  line-height: 1.75;
}

.rng-about-closing {
  padding: clamp(66px, 8vw, 118px) 0;
}

.rng-about-closing__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1120px;
}

.rng-about-closing h2 {
  margin: 0;
  color: #f4f2ed;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.rng-about-closing p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #aaa8a2;
  font-size: 16px;
  line-height: 1.7;
}

.rng-about-closing .rng-btn {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .rng-author-profile,
  .rng-author-profile--reverse {
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    gap: 38px;
  }

  .rng-about-pillars article {
    min-height: 205px;
    padding-inline: 28px;
  }
}

@media (max-width: 720px) {
  .rng-about-intro {
    padding: 58px 0 52px;
  }

  .rng-about-intro .rng-eyebrow,
  .rng-about-authors__heading .rng-eyebrow {
    margin-bottom: 18px;
  }

  .rng-about-intro h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .rng-about-intro__copy {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.72;
  }

  .rng-about-authors {
    padding: 52px 0 60px;
  }

  .rng-about-authors__list {
    gap: 66px;
  }

  .rng-author-profile,
  .rng-author-profile--reverse,
  .rng-author-profile--no-photo {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 28px;
  }

  .rng-author-profile--reverse .rng-author-profile__photo,
  .rng-author-profile--reverse .rng-author-profile__content {
    order: initial;
  }

  .rng-author-profile__photo {
    max-width: 520px;
  }

  .rng-author-profile__content h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .rng-author-profile__bio {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.72;
  }

  .rng-author-profile blockquote {
    margin-top: 26px;
    font-size: 27px;
  }

  .rng-about-pillars__grid {
    grid-template-columns: 1fr;
  }

  .rng-about-pillars article {
    min-height: auto;
    padding: 34px 0 38px;
  }

  .rng-about-pillars article + article {
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }

  .rng-about-closing {
    padding: 58px 0 68px;
  }

  .rng-about-closing__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .rng-about-closing .rng-btn {
    width: 100%;
  }
}

/* =========================================================
   Página Sobre: capítulos de estrada e retrato integrado - v1.9.4
   ========================================================= */
.rng-about-chapter {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(18px, 2.4vw, 34px);
  align-items: end;
  margin: 0 0 clamp(38px, 4.6vw, 66px);
}

.rng-about-chapter__number {
  align-self: center;
  color: rgba(255,255,255,.075);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.04em;
  user-select: none;
}

.rng-about-chapter__copy {
  padding-bottom: 2px;
}

.rng-about-chapter__copy h2 {
  margin: 0;
  color: #d9a928;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(25px, 2.55vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.rng-about-chapter__copy p {
  max-width: 660px;
  margin: 11px 0 0;
  color: #aaa8a2;
  font-size: 14px;
  line-height: 1.6;
}

.rng-about-chapter__road {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  height: 14px;
  margin-top: 22px;
}

.rng-about-chapter__road::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.28) 28%, rgba(255,255,255,.12));
}

.rng-about-chapter__road span {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: clamp(86px, 12vw, 176px);
  width: clamp(52px, 6vw, 84px);
  height: 5px;
  background: var(--rng-red-bright);
  box-shadow: 0 0 18px rgba(225,25,38,.22);
}

.rng-about-authors__heading {
  margin-bottom: clamp(34px, 4vw, 56px);
}

.rng-author-profile {
  position: relative;
  border-top: 0;
}

.rng-author-profile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rng-red-bright) 0 68px, rgba(255,255,255,.19) 68px 100%);
}

.rng-author-profile__photo::before {
  background:
    linear-gradient(180deg, rgba(4,4,4,.30) 0%, rgba(4,4,4,.08) 29%, transparent 52%, rgba(4,4,4,.19) 100%),
    linear-gradient(90deg, rgba(4,4,4,.19) 0%, transparent 19%, transparent 81%, rgba(4,4,4,.17) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), inset 0 -28px 48px rgba(0,0,0,.08);
}

.rng-author-profile__photo img {
  object-position: center 58%;
  filter: saturate(.9) contrast(1.045) brightness(.92);
  transform: scale(1.045);
  transform-origin: center 58%;
}

.rng-author-profile__content {
  max-width: 700px;
}

.rng-author-profile__role {
  max-width: 660px;
  margin-top: 12px;
  line-height: 1.55;
}

.rng-author-profile__bio {
  max-width: 690px;
  line-height: 1.78;
}

.rng-about-pillars {
  padding: clamp(62px, 7vw, 102px) 0 0;
  border-top: 1px solid rgba(255,255,255,.075);
}

.rng-about-pillars__heading {
  margin-bottom: clamp(28px, 3.5vw, 46px);
}

.rng-about-pillars__grid {
  border-top: 1px solid rgba(255,255,255,.1);
}

.rng-about-pillars h3 {
  margin: 0;
  color: #f1efe9;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  letter-spacing: .035em;
}

.rng-about-pillars h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 18px;
  background: var(--rng-red-bright);
}

.rng-about-closing {
  padding-top: clamp(64px, 7vw, 104px);
}

.rng-about-closing__heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.rng-about-closing__inner {
  max-width: 1120px;
}

@media (max-width: 720px) {
  .rng-about-chapter {
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: 14px;
    margin-bottom: 34px;
  }

  .rng-about-chapter__number {
    align-self: start;
    padding-top: 2px;
    font-size: 64px;
  }

  .rng-about-chapter__copy h2 {
    font-size: 25px;
    line-height: 1.06;
  }

  .rng-about-chapter__copy p {
    margin-top: 9px;
    font-size: 13px;
  }

  .rng-about-chapter__road {
    margin-top: 18px;
  }

  .rng-about-chapter__road span {
    left: 60px;
    width: 52px;
  }

  .rng-author-profile__photo img {
    transform: scale(1.025);
  }

  .rng-about-pillars {
    padding-top: 52px;
  }

  .rng-about-pillars__grid {
    border-top: 1px solid rgba(255,255,255,.1);
  }
}


.rng-about-pillars .rng-about-chapter__copy h2::after {
  content: none;
  display: none;
}

/* =========================================================
   Cabeçalho e divisões da Home — v1.9.5
   Reforça a navegação sem transformar o topo em um segundo
   banner e torna as mudanças de bloco mais perceptíveis.
   ========================================================= */

.rng-nav a {
  letter-spacing: .005em;
}

.rng-search {
  transition: color .2s ease, transform .2s ease, background-color .2s ease;
  border-radius: 50%;
}

.rng-search:hover,
.rng-search:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.055);
  transform: translateY(-1px);
}

body.rng-portal-homepage .rng-site > main > .rng-section {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(0,0,0,.46);
}

body.rng-portal-homepage .rng-site > main > .rng-section::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: max(32px, calc((100% - var(--rng-shell)) / 2));
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, var(--rng-red-bright) 0 58%, rgba(224,58,50,.55) 78%, transparent 100%);
  box-shadow: 0 0 15px rgba(224,58,50,.14);
  pointer-events: none;
}

body.rng-portal-homepage #proximos-eventos,
body.rng-portal-homepage .rng-section--panels {
  background-image: linear-gradient(180deg, rgba(255,255,255,.014), transparent 42%);
}

@media (max-width: 1280px) {
  body.rng-portal-homepage .rng-site > main > .rng-section::before {
    left: 20px;
    width: 78px;
  }
}

@media (max-width: 1050px) {
  .rng-nav a {
    letter-spacing: 0;
  }
}

@media (max-width: 720px) {
  body.rng-portal-homepage .rng-site > main > .rng-section::before {
    left: 14px;
    width: 64px;
  }
}



/* =========================================================
   Carrossel editorial RockNGo — v1.9.8
   ========================================================= */
.rng-carousel {
  width: 100%;
  margin: clamp(28px, 4vw, 48px) 0;
}

.rng-carousel__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  background: #080809;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  touch-action: pan-y;
}

.rng-carousel__track {
  position: relative;
}

.rng-carousel__slide {
  display: none;
  margin: 0;
}

.rng-carousel__slide.is-active {
  display: block;
  animation: rngCarouselReveal .22s ease both;
}

@keyframes rngCarouselReveal {
  from { opacity: .35; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.rng-carousel__image-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 54vw, 610px);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.045), transparent 58%),
    #070708;
  color: inherit;
  cursor: zoom-in;
  text-decoration: none !important;
}

.rng-carousel__image {
  display: block;
  width: 100%;
  height: clamp(280px, 54vw, 610px);
  object-fit: contain;
}

.rng-carousel__zoom {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  background: rgba(6,6,7,.76);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.rng-carousel__image-link:hover .rng-carousel__zoom,
.rng-carousel__image-link:focus-visible .rng-carousel__zoom {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--rng-red-bright);
}

.rng-carousel__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  padding: 12px 16px 13px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  color: #d7d7d2;
  font-size: 12px;
  line-height: 1.5;
}

.rng-carousel__caption-text {
  min-width: 0;
}

.rng-carousel__credit {
  flex: 0 0 auto;
  color: #a8a8a3;
  font-size: 11px;
  white-space: nowrap;
}

.rng-carousel__nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(5,5,6,.78);
  color: #fff;
  font-family: inherit;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.rng-carousel__nav--prev { left: 12px; }
.rng-carousel__nav--next { right: 12px; }

.rng-carousel__nav:hover,
.rng-carousel__nav:focus-visible {
  border-color: var(--rng-red-bright);
  background: rgba(193,18,31,.9);
}

.rng-carousel__nav:active {
  transform: translateY(-50%) scale(.96);
}

.rng-carousel__counter {
  position: absolute;
  z-index: 4;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(5,5,6,.8);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}


.rng-carousel__thumbs {
  display: flex;
  gap: 9px;
  margin-top: 10px;
  padding: 2px 1px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.rng-carousel__thumb {
  position: relative;
  flex: 0 0 92px;
  width: 92px;
  height: 66px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 3px;
  background: #080809;
  opacity: .58;
  cursor: pointer;
  transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.rng-carousel__thumb:hover,
.rng-carousel__thumb:focus-visible {
  opacity: .88;
  transform: translateY(-1px);
}

.rng-carousel__thumb.is-active {
  border-color: var(--rng-red-bright);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}

.rng-carousel__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rng-image-lightbox__nav {
  position: fixed;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 66px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(8,8,9,.76);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.rng-image-lightbox__nav--prev { left: 18px; }
.rng-image-lightbox__nav--next { right: 18px; }

.rng-image-lightbox__nav:hover,
.rng-image-lightbox__nav:focus-visible {
  border-color: var(--rng-red-bright);
  background: rgba(193,18,31,.92);
}

.rng-image-lightbox__nav[hidden],
.rng-image-lightbox__counter[hidden] {
  display: none !important;
}

.rng-image-lightbox__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.rng-image-lightbox__counter {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

@media (prefers-reduced-motion: reduce) {
  .rng-carousel__slide.is-active {
    animation: none;
  }
}

@media (max-width: 760px) {
  .rng-carousel {
    margin: 26px 0 34px;
  }

  .rng-carousel__image-link,
  .rng-carousel__image {
    min-height: 250px;
    height: min(68vw, 430px);
  }

  .rng-carousel__nav {
    width: 40px;
    height: 50px;
    font-size: 30px;
  }

  .rng-carousel__nav--prev { left: 7px; }
  .rng-carousel__nav--next { right: 7px; }

  .rng-carousel__zoom {
    opacity: 1;
    transform: none;
    right: 10px;
    top: 10px;
  }

  .rng-carousel__caption {
    display: grid;
    gap: 4px;
    padding: 11px 12px 12px;
  }

  .rng-carousel__credit {
    white-space: normal;
  }

  .rng-carousel__thumb {
    flex-basis: 78px;
    width: 78px;
    height: 56px;
  }

  .rng-image-lightbox__nav {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    transform: none;
    border-radius: 999px;
  }

  .rng-image-lightbox__nav--prev { left: 16px; }
  .rng-image-lightbox__nav--next { right: 16px; }

  .rng-image-lightbox__bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .rng-image-lightbox__open {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   v1.10.0 - Busca unificada, filtros e descoberta
   ========================================================= */
.rng-search-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  background: rgba(5,10,20,.62);
  border: 1px solid rgba(255,255,255,.09);
}

.rng-search-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 14px;
  color: rgba(255,255,255,.72);
  border: 1px solid transparent;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .055em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.rng-search-tab span {
  display: inline-grid;
  min-width: 27px;
  min-height: 24px;
  place-items: center;
  padding: 0 6px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.09);
  font-family: Inter, sans-serif;
  font-size: 11px;
  line-height: 1;
}

.rng-search-tab:hover,
.rng-search-tab:focus-visible,
.rng-search-tab.is-active {
  color: #fff;
  background: rgba(193,18,31,.24);
  border-color: rgba(255,76,68,.55);
}

.rng-search-tab.is-active span {
  background: #c1121f;
}

.rng-search-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.rng-search-filter {
  display: grid;
  gap: 8px;
}

.rng-search-filter > span {
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.rng-search-filter select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 13px;
  color: #fff;
  background-color: rgba(5,10,20,.88);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  outline: none;
}

.rng-search-filter select:focus {
  border-color: rgba(255,76,68,.85);
  box-shadow: 0 0 0 3px rgba(193,18,31,.2);
}

.rng-search-filter-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}

.rng-search-filter-actions .rng-btn {
  min-height: 46px;
  white-space: nowrap;
}

.rng-search-clear,
.rng-search-recent__clear {
  color: #ff5c54;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.rng-search-clear:hover,
.rng-search-clear:focus-visible,
.rng-search-recent__clear:hover,
.rng-search-recent__clear:focus-visible {
  color: #fff;
}

.rng-search-filter-note {
  margin: -3px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.rng-search-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 13px 14px;
  background: rgba(193,18,31,.1);
  border-left: 3px solid #ff4a42;
}

.rng-search-active-filters > span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.rng-search-active-filters a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
}

.rng-search-active-filters a:hover,
.rng-search-active-filters a:focus-visible {
  border-color: rgba(255,76,68,.7);
  background: rgba(193,18,31,.22);
}

.rng-search-recent {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.rng-search-recent[hidden] {
  display: none !important;
}

.rng-search-recent__clear {
  width: max-content;
  padding: 0;
}

.rng-chip.is-active,
.rng-chip--recent:hover,
.rng-chip--recent:focus-visible {
  color: #fff;
  background: rgba(193,18,31,.28);
  border-color: rgba(255,76,68,.72);
}

.rng-search-results-grid mark {
  padding: 0 .08em;
  color: #fff;
  background: rgba(193,18,31,.72);
}

.rng-search-card--event {
  border-top: 2px solid rgba(255,173,51,.72);
}

.rng-search-card .rng-meta + .rng-meta {
  margin-top: 5px;
}

.rng-search-empty-wrap {
  display: grid;
  gap: 22px;
}

.rng-search-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1050px) {
  .rng-search-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rng-search-filter-actions {
    align-self: stretch;
  }
}

@media (max-width: 720px) {
  .rng-search-tabs {
    grid-template-columns: 1fr;
  }

  .rng-search-tab {
    justify-content: space-between;
  }

  .rng-search-filter-grid {
    grid-template-columns: 1fr;
  }

  .rng-search-filter-actions {
    flex-wrap: wrap;
  }

  .rng-search-filter-actions .rng-btn {
    width: 100%;
  }

  .rng-search-active-filters {
    align-items: flex-start;
  }
}

/* =========================================================
   v1.11.0 - Páginas de eventos orientadas à ação
   ========================================================= */
.rng-event-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(15,15,15,.82);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.rng-event-status.is-live,
.rng-event-status.is-today { border-color: #ff4d45; background: rgba(193,18,31,.9); }
.rng-event-status.is-upcoming { border-color: rgba(255,255,255,.32); }
.rng-event-status.is-past { color: #bcbcbc; background: rgba(25,25,25,.9); }
.rng-event-status.is-postponed { border-color: #e9b94b; background: rgba(92,61,0,.92); color: #fff3c6; }
.rng-event-status.is-cancelled { border-color: #ff5a55; background: rgba(105,11,16,.94); }
.rng-event-status.is-soldout { border-color: #e6e6e6; background: rgba(40,40,40,.95); }
.rng-event-status--compact {
  margin: 0;
  padding: 6px 9px;
  font-size: 11px;
  letter-spacing: .06em;
}
.rng-event-hero .rng-share { margin-top: 22px; }

.rng-site--event-single .rng-event-actions {
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid #3a3a3a;
  border-left: 4px solid var(--rng-red);
  background: linear-gradient(135deg, rgba(193,18,31,.12), rgba(14,14,14,.96) 38%, #0d0d0d);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.rng-event-actions__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}
.rng-event-actions__heading .rng-section-kicker { margin: 0 0 6px; }
.rng-event-actions__heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}
.rng-event-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rng-event-actions__buttons .rng-btn {
  min-height: 46px;
  justify-content: center;
}
.rng-event-actions__note {
  margin: 14px 0 0;
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1.5;
}
.rng-btn--disabled {
  cursor: not-allowed;
  opacity: .66;
  border-color: #555;
  background: #252525;
  color: #bcbcbc;
}
.rng-event-save.is-saved {
  border-color: #ff4d45;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,77,69,.25);
}

.rng-event-card__poster { position: relative; }
.rng-event-card__status {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(12,12,12,.9);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.rng-event-card__status.is-live,
.rng-event-card__status.is-today { background: rgba(193,18,31,.94); border-color: #ff4d45; }
.rng-event-card__status.is-postponed { background: rgba(92,61,0,.96); border-color: #e9b94b; color: #fff3c6; }
.rng-event-card__status.is-cancelled { background: rgba(105,11,16,.96); border-color: #ff5a55; }
.rng-event-card__status.is-soldout { background: rgba(35,35,35,.97); border-color: #d8d8d8; }
.rng-event-card__status.is-past { background: rgba(30,30,30,.93); color: #c5c5c5; }

.rng-section--saved-events {
  padding-block: 42px 10px;
  background: #0b0b0b;
}
.rng-section--saved-events[hidden] { display: none !important; }
.rng-section--saved-events .rng-section-title {
  align-items: end;
  margin-bottom: 18px;
}
.rng-section--saved-events .rng-section-title h2 { margin: 4px 0 0; }
.rng-link-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff5a52;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rng-link-button:hover,
.rng-link-button:focus-visible { color: #fff; }
.rng-saved-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rng-saved-event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #343434;
  background: linear-gradient(145deg, #171717, #101010);
}
.rng-saved-event-card > div { min-width: 0; }
.rng-saved-event-card h3 {
  margin: 0 0 7px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  line-height: 1.05;
}
.rng-saved-event-card h3 a { color: #fff; text-decoration: none; }
.rng-saved-event-card h3 a:hover { color: #ff4d45; }
.rng-saved-event-card p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
  line-height: 1.4;
}
.rng-saved-event-card__remove {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid #494949;
  background: transparent;
  color: #bbb;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.rng-saved-event-card__remove:hover,
.rng-saved-event-card__remove:focus-visible { border-color: #ff4d45; color: #fff; }

@media (max-width: 980px) {
  .rng-saved-events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .rng-site--event-single .rng-event-actions {
    margin-bottom: 28px;
    padding: 22px 18px;
  }
  .rng-event-actions__heading { display: block; }
  .rng-event-actions__buttons { display: grid; grid-template-columns: 1fr; }
  .rng-event-actions__buttons .rng-btn { width: 100%; }
  .rng-section--saved-events .rng-section-title {
    align-items: flex-start;
    gap: 12px;
  }
  .rng-saved-events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .rng-event-status { font-size: 12px; }
  .rng-saved-event-card { align-items: flex-start; }
}

/* ================================================================
   v1.12.0 - Integração entre matérias e eventos
   ================================================================ */
.rng-linked-events {
  margin: 42px 0 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--rng-red-bright);
  background:
    linear-gradient(135deg, rgba(193,18,31,.12), transparent 38%),
    linear-gradient(145deg, #171717, #101010);
  box-shadow: var(--rng-shadow);
}
.rng-linked-events__heading { max-width: 760px; margin-bottom: 22px; }
.rng-linked-events__heading h2,
.rng-event-related-stories h2 {
  margin: 5px 0 8px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}
.rng-linked-events__heading p { margin: 0; color: var(--rng-muted); }
.rng-linked-events__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.rng-linked-event-card {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #343434;
  background: #0d0d0d;
}
.rng-linked-event-card--no-image { grid-template-columns: 1fr; }
.rng-linked-event-card__image {
  min-height: 220px;
  background: #080808;
  overflow: hidden;
}
.rng-linked-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.rng-linked-event-card:hover .rng-linked-event-card__image img { transform: scale(1.035); }
.rng-linked-event-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 22px;
}
.rng-linked-event-card__content h3 {
  margin: 13px 0 10px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 1.02;
  text-transform: uppercase;
}
.rng-linked-event-card__content h3 a:hover,
.rng-linked-event-card__content h3 a:focus-visible { color: #ff5a52; }
.rng-linked-event-card__date {
  margin: 0 0 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.rng-linked-event-card__place {
  margin: 0 0 18px;
  color: var(--rng-muted);
  font-size: 13px;
}
.rng-linked-event-card__content .rng-btn { margin-top: auto; }

.rng-event-related-stories {
  margin: 38px 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.rng-event-related-stories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.rng-event-story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #343434;
  background: linear-gradient(145deg, #171717, #0f0f0f);
}
.rng-event-story-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
}
.rng-event-story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.rng-event-story-card:hover .rng-event-story-card__image img { transform: scale(1.035); }
.rng-event-story-card__content { padding: 20px; }
.rng-event-story-card__content > span {
  color: #ff5a52;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}
.rng-event-story-card__content h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  line-height: 1.04;
  text-transform: uppercase;
}
.rng-event-story-card__content h3 a:hover,
.rng-event-story-card__content h3 a:focus-visible { color: #ff5a52; }
.rng-event-story-card__content p {
  margin: 0 0 16px;
  color: var(--rng-muted);
  font-size: 13px;
  line-height: 1.6;
}
.rng-event-story-card__link {
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rng-event-story-card__link:hover,
.rng-event-story-card__link:focus-visible { color: #ff5a52 !important; }

@media (max-width: 1100px) {
  .rng-linked-events__grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .rng-linked-events { padding: 22px 18px; }
  .rng-linked-event-card { grid-template-columns: 1fr; }
  .rng-linked-event-card__image { min-height: 0; aspect-ratio: 16 / 9; }
  .rng-event-related-stories__grid { grid-template-columns: 1fr; }
}
