/* Sobratema 2026 — escala institucional ampliada */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sb-red: #C8102E;
  --sb-red-dark: #9E0C24;
  --sb-red-light: #F5E6E9;
  --sb-gray: #6D6E71;
  --sb-gray-dark: #3C3C3C;
  --sb-gray-mid: #888;
  --sb-gray-light: #F4F4F4;
  --sb-white: #FFFFFF;
  --sb-border: #E0E0E0;
  --sb-bg: #F5F5F5;

  --ff: 'Barlow', system-ui, sans-serif;
  --ffc: 'Barlow Condensed', system-ui, sans-serif;

  /* Largura e ritmo */
  --container-max: 1440px;
  --gutter: clamp(20px, 3vw, 48px);
  --container: min(var(--container-max), 100% - var(--gutter) * 2);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --radius-sm: 4px;
  --radius-md: 6px;

  --text-base: clamp(16px, 1.05vw, 18px);
  --text-lg: clamp(18px, 1.2vw, 21px);
  --text-xl: clamp(22px, 2vw, 28px);
  --text-2xl: clamp(28px, 3vw, 36px);
  --text-hero: clamp(36px, 5.5vw, 64px);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);

  --hero-min-h: clamp(420px, 58vh, 620px);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--ff);
  background: var(--sb-bg);
  color: var(--sb-gray-dark);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--sb-red);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--sb-gray-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.topbar a:hover {
  color: #fff;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar i {
  font-size: 16px;
  vertical-align: -2px;
  margin-right: 6px;
}

/* ─── HEADER ─── */
.site-header {
  background: var(--sb-white);
  border-bottom: 4px solid var(--sb-red);
  position: relative;
  z-index: 120;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.logo-img {
  display: block;
  height: clamp(44px, 5.5vw, 68px);
  width: auto;
  max-width: min(320px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.header-slogan {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 var(--space-sm);
}

.header-slogan-img {
  display: block;
  width: auto;
  max-width: min(420px, 100%);
  height: 80px;
  object-fit: contain;
  object-position: center;
}

.header-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sb-red);
  color: #fff;
  border-color: var(--sb-red);
}

.btn-primary:hover {
  background: var(--sb-red-dark);
  border-color: var(--sb-red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--sb-gray-dark);
  border-color: var(--sb-border);
}

.btn-outline:hover {
  border-color: var(--sb-red);
  color: var(--sb-red);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  background: var(--sb-gray-dark);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 24px;
}

/* ─── NAV ─── */
.mainnav {
  background: var(--sb-gray-dark);
  position: relative;
  z-index: 150;
  overflow: visible;
}

.mainnav-inner {
  display: flex;
  overflow: visible;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
}

.nav-link,
.mainnav a.nav-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 20px;
  white-space: nowrap;
  border: none;
  transition: color 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  font-family: var(--ff);
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.nav-link::after,
.mainnav a.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: transparent;
  transition: background 0.15s;
}

.nav-link:hover,
.nav-link.active,
.mainnav a.nav-link:hover,
.mainnav a.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after,
.mainnav a.nav-link:hover::after,
.mainnav a.nav-link.active::after {
  background: var(--sb-red);
}

.nav-item--has-submenu {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link--toggle {
  align-self: stretch;
}

.nav-link--toggle .nav-chevron {
  font-size: 14px;
  transition: transform 0.2s;
}

.nav-item--has-submenu.is-open .nav-link--toggle,
.nav-item--has-submenu:hover .nav-link--toggle,
.nav-item--has-submenu:focus-within .nav-link--toggle {
  color: #fff;
}

.nav-item--has-submenu.is-open .nav-link--toggle::after,
.nav-item--has-submenu:hover .nav-link--toggle::after,
.nav-item--has-submenu:focus-within .nav-link--toggle::after {
  background: var(--sb-red);
}

.nav-item--has-submenu.is-open .nav-chevron {
  transform: rotate(180deg);
}

/* Submenus (dropdown no item — ex.: Parcerias) */
.nav-item--has-submenu > .nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 300;
  min-width: min(560px, 94vw);
  max-width: min(720px, 96vw);
  background: var(--sb-red);
  padding: 22px 26px 26px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.nav-item--has-submenu.is-open > .nav-submenu,
.nav-item--has-submenu:hover > .nav-submenu,
.nav-item--has-submenu:focus-within > .nav-submenu {
  display: block;
}

@media (min-width: 769px) {
  .nav-submenu--institucional {
    left: 0;
    right: auto;
    min-width: min(560px, 94vw);
    max-width: min(720px, 96vw);
  }

  .nav-submenu--programas {
    left: 0;
    right: auto;
    min-width: min(340px, 94vw);
    max-width: min(400px, 96vw);
    padding: 18px 22px 22px;
  }

  .nav-submenu-list--programas {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-submenu--programas .nav-submenu-group {
    width: 100%;
  }

  .nav-submenu--programas .nav-submenu-items a {
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
  }

  .nav-submenu--parcerias {
    left: 0;
    right: auto;
    min-width: 220px;
    max-width: 280px;
    width: max-content;
    padding: 14px 18px 18px;
  }

  .nav-submenu--parcerias .nav-submenu-list--flat {
    padding: 0;
  }

  .nav-submenu--parcerias .nav-submenu-list--flat a {
    color: rgba(255, 255, 255, 0.92);
    padding: 10px 12px;
  }

  .nav-submenu--parcerias .nav-submenu-list--flat a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }
}

.nav-submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 18px 28px;
}

.nav-submenu-group {
  margin: 0;
  padding: 0;
}

.nav-submenu-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}

.nav-submenu-heading::before {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.nav-submenu-heading--link {
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-submenu-heading--link:hover {
  opacity: 0.85;
}

.nav-submenu-items {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 19px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-submenu-items a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  transition: color 0.15s;
}

.nav-submenu-list--flat {
  display: grid;
  gap: 4px;
  padding: 8px 0;
}

.nav-submenu-list--flat a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-gray-dark);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.nav-submenu-list--flat a:hover {
  background: var(--sb-red-light);
  color: var(--sb-red);
}

.nav-submenu-items a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ─── HERO / BANNER ─── */
.banner-wrap {
  position: relative;
  background: var(--sb-gray-dark);
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  min-height: var(--hero-min-h);
  display: flex;
  align-items: stretch;
}

.slide .container {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: var(--hero-min-h);
}

.slide-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: var(--hero-min-h);
  padding: clamp(48px, 7vh, 88px) 0 clamp(80px, 12vh, 112px);
  position: relative;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 921px) {
  /* Slide 1 (ANALOC) — texto do lado direito */
  .slide-1 .slide-inner {
    align-items: flex-end;
  }

  .slide-1.slide-has-bg .slide-content {
    margin-left: auto;
  }
}

.slide-1 {
  background: linear-gradient(125deg, #141414 0%, #2C0A10 55%, #4A1020 100%);
}

.slide-2 {
  background: linear-gradient(125deg, #0A1824 0%, #1A3A4A 60%, #1E5068 100%);
}

.slide-3 {
  background: linear-gradient(125deg, #181818 0%, #2A2A2A 50%, #3A3A3A 100%);
}

.slide-4 {
  background: linear-gradient(125deg, #0d1020 0%, #1a2540 55%, #243058 100%);
}

.slide-5 {
  background: linear-gradient(125deg, #1a0a0a 0%, #4a1018 50%, #6b1828 100%);
}

.slide-6 {
  background: linear-gradient(125deg, #141414 0%, #2a1818 55%, #3d2020 100%);
}

.slide-7 {
  background: linear-gradient(125deg, #1a1408 0%, #3d2a10 55%, #5c3d18 100%);
}

.slide-8 {
  background: linear-gradient(125deg, #0a1820 0%, #124858 55%, #1a6070 100%);
}

.slide-9 {
  background: linear-gradient(125deg, #0a1a0e 0%, #143828 55%, #1e5038 100%);
}

.slide-10 {
  background: linear-gradient(125deg, #1a1600 0%, #3d3200 50%, #5c4a00 100%);
}

.slide-has-bg {
  background-color: var(--sb-gray-dark);
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-has-bg::after {
  display: none;
}

.slide-has-bg .slide-content {
  max-width: min(56rem, 100%);
  padding: clamp(20px, 3.2vw, 32px) clamp(22px, 3.5vw, 40px);
  border-radius: var(--radius-md);
  background: rgba(12, 12, 14, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Slide 4 (Tendências) e slide 8 (Monteli) — sem box de fundo */
.slide-4.slide-has-bg .slide-content,
.slide-8.slide-has-bg .slide-content {
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}

.slide-has-bg .slide-title {
  text-shadow: none;
}

.slide-has-bg .slide-text {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
}

.slide-image-only {
  padding: 0;
}

.slide-image-only .slide-only-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
}

.slide-image-only .slide-only-link:focus-visible {
  outline: 3px solid var(--sb-red);
  outline-offset: -4px;
}

.slide-image-only.slide-has-bg {
  background-position: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Textura sutil no hero (apenas slides sem imagem de fundo) */
.slide:not(.slide-has-bg)::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(200, 16, 46, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sb-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin: 0 0 20px;
}

.slide-badge i {
  font-size: 16px;
}

.slide-title {
  font-family: var(--ffc);
  font-size: var(--text-hero);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  max-width: 16em;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.4);
}

.slide-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-lg);
  max-width: 36em;
  margin: 0 0 28px;
  line-height: 1.6;
  text-wrap: pretty;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
  justify-content: flex-start;
}

.slide-btns .btn-primary {
  padding: 16px 32px;
  font-size: 15px;
}

.slide-deco {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  font-family: var(--ffc);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-align: right;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s, transform 0.15s;
}

.arr:hover {
  background: var(--sb-red);
  transform: translateY(-50%) scale(1.05);
}

.arr-l {
  left: clamp(12px, 2vw, 28px);
}

.arr-r {
  right: clamp(12px, 2vw, 28px);
}

.banner-controls {
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 3;
  width: var(--container);
  max-width: calc(100% - var(--gutter) * 2);
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .banner-controls {
    left: max(var(--gutter), calc((100% - var(--container-max)) / 2 + var(--gutter)));
    transform: none;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.25s;
}

.dot.active {
  background: var(--sb-red);
  width: 32px;
  border-radius: 6px;
}

/* ─── STATS ─── */
.stats-bar {
  background: var(--sb-red);
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: clamp(28px, 4vw, 40px) 20px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--ffc);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 600;
}

/* ─── SEÇÕES GERAIS ─── */
.section {
  padding: var(--space-2xl) 0;
  background: var(--sb-white);
}

.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--sb-border);
  flex-wrap: wrap;
}

.sec-header h2 {
  font-family: var(--ffc);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--sb-gray-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.sec-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sb-red);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.sec-link:hover {
  border-bottom-color: var(--sb-red);
}

.sec-link::after {
  content: ' →';
}

.sec-link-light {
  color: rgba(255, 255, 255, 0.6);
}

.sec-link-light:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.sec-header-dark {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sec-header-dark h2 {
  color: #fff;
}

/* ─── NOTÍCIAS ─── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.news-main {
  grid-column: 1 / -1;
  background: var(--sb-gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.2s;
  min-height: 320px;
}

.news-main:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.news-img {
  background: linear-gradient(145deg, var(--sb-gray-dark), var(--sb-red-dark));
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.news-img--photo i {
  display: none;
}

.news-img--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
}

.news-img i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
}

.news-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--sb-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.news-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  font-size: 13px;
  color: var(--sb-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.news-body h3 {
  font-family: var(--ffc);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--sb-gray-dark);
  margin-bottom: 12px;
}

.news-body p {
  font-size: var(--text-base);
  color: var(--sb-gray);
  line-height: 1.6;
}

.news-card {
  background: var(--sb-white);
  border: 1px solid var(--sb-border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 28px);
  border-top: 4px solid var(--sb-red);
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-height: 200px;
}

.news-card:hover {
  border-color: var(--sb-red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.news-card .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sb-red);
  margin-bottom: 10px;
}

.news-card h3 {
  font-family: var(--ffc);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--sb-gray-dark);
  margin-bottom: 10px;
}

.news-card p {
  font-size: var(--text-base);
  color: var(--sb-gray-mid);
  line-height: 1.55;
}

.news-card .date {
  font-size: 13px;
  color: #aaa;
  margin-top: 16px;
}

/* Home: 5 notícias em 2 linhas (destaque + lateral | 3 cards) */
.news-grid--five {
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}

.news-grid > *,
.news-main > * {
  min-width: 0;
}

.news-grid--five .news-main {
  grid-column: 1 / 5;
  grid-row: 1;
  min-height: 300px;
}

.news-grid--five .news-card--side {
  grid-column: 5 / 7;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  min-height: 0;
}

.news-grid--five .news-card--side .news-card-thumb {
  flex: 0 0 42%;
  min-height: 120px;
  background: linear-gradient(145deg, var(--sb-gray-dark), var(--sb-red-dark)) center / cover no-repeat;
}

.news-grid--five .news-card--side .news-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2vw, 22px);
}

.news-grid--five .news-card--side h3 {
  font-size: clamp(16px, 1.5vw, 19px);
}

.news-grid--five .news-card--side p {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-grid--five .news-card--side .date {
  margin-top: auto;
  padding-top: 10px;
}

.news-grid--five .news-card:not(.news-card--side) {
  grid-row: 2;
  min-height: 180px;
}

.news-grid--five .news-card:not(.news-card--side):nth-child(3) {
  grid-column: 1 / 3;
}

.news-grid--five .news-card:not(.news-card--side):nth-child(4) {
  grid-column: 3 / 5;
}

.news-grid--five .news-card:not(.news-card--side):nth-child(5) {
  grid-column: 5 / 7;
}

.news-grid--five .news-card:not(.news-card--side) h3 {
  font-size: clamp(16px, 1.4vw, 19px);
}

.news-grid--five .news-card:not(.news-card--side) p {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9375rem;
}

.news-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ─── PROGRAMAS ─── */
.prog-section {
  background: var(--sb-gray-dark);
  padding: var(--space-2xl) 0;
}

.prog-section .sec-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.prog-section .sec-header h2 {
  color: #fff;
}

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

.prog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 28px);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 160px;
}

.prog-card:hover {
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.prog-icon {
  width: 125px;
  height: 125px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 50px;
  color: var(--sb-red);
}

.prog-icon--logo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px;
  overflow: hidden;
}

.prog-icon--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.prog-card h3 {
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.prog-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ─── PUBLICAÇÕES ─── */
.rev-strip {
  background: var(--sb-red);
  padding: var(--space-lg) 0;
}

.rev-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.rev-strip-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.rev-items {
  display: flex;
  gap: 14px;
  flex: 1;
  flex-wrap: wrap;
}

.rev-item {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex: 1;
  min-width: 180px;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
}

.rev-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.rev-item i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: -2px;
}

/* ─── YOUTUBE EM DESTAQUE ─── */
.youtube-featured {
  padding: var(--space-xl) 0;
  background: var(--sb-white);
  border-top: 1px solid var(--sb-border);
}

.youtube-featured-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.youtube-featured-header h2 {
  font-family: var(--ffc);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--sb-gray-dark);
  margin: 0 0 10px;
  line-height: 1.15;
}

.youtube-featured-header .text-accent {
  color: var(--sb-red);
}

.youtube-featured-lead {
  margin: 0;
  font-size: 16px;
  font-style: italic;
  color: var(--sb-gray);
  line-height: 1.55;
}

.youtube-featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: 0;
  border: 1px solid var(--sb-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #1a1a1a;
}

.youtube-featured-player-wrap {
  position: relative;
  background: #000;
}

.youtube-featured-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.youtube-featured-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-channel-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--sb-gray-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.youtube-channel-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.youtube-channel-badge img {
  height: 28px;
  width: auto;
  display: block;
}

.youtube-channel-badge-text {
  white-space: nowrap;
}

.youtube-channel-badge .ti-brand-youtube {
  color: var(--sb-red);
  font-size: 20px;
}

.youtube-playlist {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #2b2b2b;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-playlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--sb-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.youtube-playlist-count {
  font-weight: 600;
  opacity: 0.92;
  white-space: nowrap;
}

.youtube-playlist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  max-height: min(52vh, 420px);
  flex: 1;
}

.youtube-playlist-item {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff);
  transition: background 0.15s;
}

.youtube-playlist-item:hover,
.youtube-playlist-item.is-active {
  background: rgba(200, 16, 46, 0.35);
}

.youtube-playlist-item.is-active {
  box-shadow: inset 4px 0 0 var(--sb-red);
}

.youtube-playlist-thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.youtube-playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-playlist-meta {
  min-width: 0;
}

.youtube-playlist-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.youtube-playlist-play {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.youtube-playlist-item.is-active .youtube-playlist-play {
  color: #fff;
}

.youtube-featured-cta {
  text-align: center;
  margin: var(--space-lg) 0 0;
}

.btn-youtube-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
}

.btn-youtube-all .ti-brand-youtube {
  font-size: 22px;
}

/* ─── INSTAGRAM ─── */
.instagram-strip {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 45%, #e1306c 70%, #f77737 100%);
  padding: var(--space-lg) 0;
}

.instagram-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.instagram-strip-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.instagram-strip-title {
  font-family: var(--ffc);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.instagram-items {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.instagram-item {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex: 1;
  min-width: 160px;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.instagram-item:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.instagram-item i {
  font-size: 22px;
}

.instagram-item-handle {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* ─── PÁGINAS INSTITUCIONAIS ─── */
.page-institucional {
  padding: var(--space-lg) 0 var(--space-xl);
}

.pagina-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--sb-red);
}

.pagina-header h1 {
  font-family: var(--ffc);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--sb-red);
  margin: 0;
}

.pagina-video {
  margin-bottom: var(--space-lg);
}

.pagina-video-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pagina-video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pagina-conteudo {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--sb-gray-dark);
}

.pagina-conteudo p {
  margin: 0 0 1.1em;
}

.pagina-conteudo h2,
.pagina-conteudo h3 {
  font-family: var(--ffc);
  color: var(--sb-red);
  margin: 1.75em 0 0.6em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pagina-conteudo h2.pagina-subtitulo {
  margin-top: 0;
  font-size: 22px;
}

.pagina-conteudo h3 {
  font-size: 18px;
}

.pagina-conteudo ul {
  margin: 0 0 1.25em 1.25em;
  padding: 0;
}

.pagina-conteudo li {
  margin-bottom: 0.35em;
}

.pagina-conteudo a {
  color: var(--sb-red);
  font-weight: 600;
}

.pagina-conteudo a:hover {
  text-decoration: underline;
}

/* ─── AGENDA SETORIAL (página) ─── */
.page-agenda-setorial {
  padding: var(--space-lg) 0 var(--space-xl);
}

.agenda-page-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.agenda-page-header h1 {
  font-family: var(--ffc);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--sb-red);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.agenda-page-intro {
  margin: 0;
  color: var(--sb-gray);
  font-size: 17px;
}

.agenda-nav-rapida {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0 0 var(--space-xl);
  padding: 16px 18px;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  border: 1px solid var(--sb-border);
  border-radius: var(--radius-sm);
}

.agenda-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sb-red);
  background: #fff;
  border: 2px solid var(--sb-red);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.agenda-nav-btn:hover {
  background: var(--sb-red);
  color: #fff;
  transform: translateY(-1px);
}

.agenda-nav-btn .ti {
  font-size: 16px;
}

.agenda-vazia {
  text-align: center;
  padding: var(--space-xl);
  color: var(--sb-gray);
}

.agenda-bloco {
  margin-bottom: var(--space-xl);
  scroll-margin-top: 24px;
}

.agenda-bloco-titulo {
  font-family: var(--ffc);
  font-size: 22px;
  font-weight: 800;
  color: var(--sb-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-md);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--sb-red);
}

.agenda-mes-bloco {
  margin-bottom: var(--space-lg);
}

.agenda-mes-separador {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 18px;
  background: var(--sb-gray-dark);
  color: #fff;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid var(--sb-gray-dark);
  border-bottom: none;
}

.agenda-mes-separador::before {
  content: '';
  flex: 0 0 4px;
  align-self: stretch;
  min-height: 28px;
  background: var(--sb-red);
  border-radius: 2px;
}

.agenda-mes-titulo {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  font-family: var(--ffc);
  line-height: 1.2;
}

.agenda-mes-nome {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.agenda-mes-ano {
  font-size: 15px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.agenda-lista {
  margin-bottom: 0;
  border: 1px solid var(--sb-border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.agenda-evento {
  padding: 16px 18px;
  border-bottom: 1px solid var(--sb-border);
}

.agenda-evento:last-child {
  border-bottom: none;
}

.agenda-evento:nth-child(even) {
  background: #f9f9f9;
}

.agenda-evento-linha {
  display: grid;
  grid-template-columns: minmax(120px, 150px) 1fr;
  gap: 8px 16px;
  align-items: baseline;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.agenda-evento-linha:last-child {
  margin-bottom: 0;
}

.agenda-evento-data {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.agenda-evento-data strong {
  font-family: var(--ffc);
  font-size: 26px;
  font-weight: 800;
  color: var(--sb-red);
  text-transform: none;
  letter-spacing: 0;
}

.agenda-evento-titulo {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--sb-gray-dark);
}

.agenda-evento-titulo a {
  color: inherit;
  text-decoration: none;
}

.agenda-evento-titulo a:hover {
  color: var(--sb-red);
  text-decoration: underline;
}

.agenda-evento-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sb-red);
}

.agenda-evento-label::after {
  content: ':';
}

.agenda-evento-valor {
  color: var(--sb-gray-dark);
}

.agenda-evento-acoes {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--sb-border);
}

.agenda-evento-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.agenda-evento-site .ti {
  font-size: 16px;
}

@media (max-width: 640px) {
  .agenda-evento-linha {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .agenda-evento {
    padding: 14px 16px;
  }
}

.admin-hint {
  font-size: 14px;
  color: var(--sb-gray);
  margin-bottom: 1rem;
}

.agenda-home-vazia,
.assoc-home-vazia {
  font-size: 14px;
  color: var(--sb-gray);
  margin: 0;
  padding: 8px 0;
}

.agenda-home-vazia a {
  color: var(--sb-red);
  font-weight: 600;
}

/* ─── AGENDA + ASSOCIADOS ─── */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-top: 1px solid var(--sb-border);
}

.col-agenda {
  background: var(--sb-white);
}

.col-assoc {
  background: #FAFAFA;
}

.col-inner {
  padding: var(--space-2xl) clamp(24px, 4vw, 56px);
  max-width: 720px;
}

.col-agenda .col-inner {
  margin-left: auto;
}

.col-assoc .col-inner {
  margin-right: auto;
}

.evento {
  padding: 18px 0;
  border-bottom: 1px solid #EEE;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, padding-left 0.15s;
}

.evento:hover {
  background: rgba(200, 16, 46, 0.04);
  padding-left: 8px;
}

.evento:last-child {
  border-bottom: none;
}

.ev-data {
  text-align: center;
  background: var(--sb-red);
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  min-width: 64px;
}

.ev-dia {
  font-family: var(--ffc);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ev-mes {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.ev-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sb-gray-dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.ev-info p {
  font-size: 15px;
  color: var(--sb-gray-mid);
  line-height: 1.45;
}

.assoc-search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.assoc-search input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--sb-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff);
  font-size: 16px;
  transition: border-color 0.15s;
}

.assoc-search input:focus {
  outline: none;
  border-color: var(--sb-red);
}

.assoc-search button {
  background: var(--sb-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.15s;
}

.assoc-search button:hover {
  background: var(--sb-red-dark);
}

.assoc-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--sb-border);
}

.assoc-tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-gray-mid);
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
}

.assoc-tab.active,
.assoc-tab:hover {
  color: var(--sb-red);
  border-bottom-color: var(--sb-red);
}

.assoc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assoc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--sb-border);
  border-radius: var(--radius-md);
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.assoc-item:hover {
  border-color: var(--sb-red);
  box-shadow: var(--shadow-sm);
}

.assoc-avatar {
  width: 48px;
  height: 48px;
  background: var(--sb-gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--sb-gray);
  flex-shrink: 0;
  border: 1px solid var(--sb-border);
}

.assoc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--sb-gray-dark);
}

.assoc-seg {
  font-size: 14px;
  color: var(--sb-gray-mid);
  margin-top: 2px;
}

.assoc-badge {
  margin-left: auto;
  background: var(--sb-red-light);
  color: var(--sb-red);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── PARCEIROS ─── */
.parceiros-section {
  padding: var(--space-2xl) 0;
  background: var(--sb-white);
}

.parc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}

.parc-item {
  border: 2px solid var(--sb-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 130px;
  justify-content: center;
}

.parc-item:hover {
  border-color: var(--sb-red);
  background: var(--sb-red-light);
  transform: translateY(-3px);
}

.parc-logo {
  width: 52px;
  height: 52px;
  background: var(--sb-gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--sb-gray);
}

.parc-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--sb-gray-mid);
  text-align: center;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.parc-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--sb-gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: var(--space-lg) 0 var(--space-md);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--sb-border);
}

/* ─── ACESSO RÁPIDO ─── */
.quick-section {
  background: var(--sb-gray-dark);
  padding: var(--space-2xl) 0;
}

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

.quick-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  min-height: 140px;
  justify-content: center;
}

.quick-item:hover {
  background: rgba(200, 16, 46, 0.18);
  border-color: rgba(200, 16, 46, 0.45);
  transform: translateY(-4px);
}

.quick-item i {
  font-size: 32px;
  color: var(--sb-red);
}

.quick-item span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.35;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #141414;
  padding: var(--space-2xl) 0 var(--space-lg);
  color: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  display: block;
  height: clamp(64px, 8vw, 96px);
  width: auto;
  max-width: 220px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left top;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.55;
}

.footer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sb-red);
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer ul a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer ul a:hover {
  color: var(--sb-red);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 18px;
  transition: border-color 0.15s, color 0.15s;
}

.social a:hover {
  border-color: var(--sb-red);
  color: var(--sb-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--sb-red);
}

/* ─── RESPONSIVO ─── */
@media (max-width: 1200px) {
  .col-inner {
    max-width: none;
    margin: 0;
  }

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

@media (max-width: 1024px) {
  :root {
    --space-2xl: 72px;
    --hero-min-h: clamp(380px, 50vh, 520px);
  }

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

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

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

  .two-col {
    grid-template-columns: 1fr;
  }

  /* Espaço Sobratema: grid 6 colunas quebra em tablet — empilha como no mobile */
  .news-grid--five {
    grid-template-columns: 1fr;
  }

  .news-grid--five .news-main,
  .news-grid--five .news-card--side,
  .news-grid--five .news-card:not(.news-card--side),
  .news-grid--five .news-card:not(.news-card--side):nth-child(3),
  .news-grid--five .news-card:not(.news-card--side):nth-child(4),
  .news-grid--five .news-card:not(.news-card--side):nth-child(5) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .news-grid--five .news-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-grid--five .news-card--side {
    display: block;
    padding: clamp(20px, 2.5vw, 28px);
  }

  .news-grid--five .news-card--side .news-card-thumb {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 56px;
    --hero-min-h: clamp(360px, 65vh, 480px);
  }

  .topbar-right {
    display: none;
  }

  .header-slogan {
    display: none;
  }

  .header-btns .btn-outline span {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mainnav {
    display: none;
  }

  .mainnav.is-open {
    display: block;
  }

  .mainnav-inner {
    flex-direction: column;
  }

  .nav-link,
  .mainnav a.nav-link {
    width: 100%;
    justify-content: space-between;
    border-left: 4px solid transparent;
    padding: 16px 20px;
  }

  .nav-link::after,
  .mainnav a.nav-link::after {
    display: none;
  }

  .nav-link.active,
  .mainnav a.nav-link.active {
    border-left-color: var(--sb-red);
  }

  .nav-item--has-submenu.is-open .nav-link--toggle,
  .nav-item--has-submenu:hover .nav-link--toggle {
    border-left-color: var(--sb-red);
  }

  .nav-item--has-submenu {
    flex-direction: column;
    width: 100%;
  }

  .nav-item--has-submenu > .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item--has-submenu.is-open > .nav-submenu {
    display: block;
  }

  .nav-item--has-submenu:hover > .nav-submenu,
  .nav-item--has-submenu:focus-within > .nav-submenu {
    display: none;
  }

  .nav-item--has-submenu.is-open:hover > .nav-submenu,
  .nav-item--has-submenu.is-open:focus-within > .nav-submenu {
    display: block;
  }

  .nav-submenu-list {
    grid-template-columns: 1fr;
  }

  .instagram-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .instagram-items {
    width: 100%;
  }

  .youtube-featured-layout {
    grid-template-columns: 1fr;
  }

  .youtube-playlist {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .youtube-playlist-list {
    max-height: 320px;
  }

  .youtube-channel-badge {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
  }

  .youtube-channel-badge-text {
    display: none;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .news-grid,
  .news-grid--five {
    grid-template-columns: 1fr;
  }

  .news-grid--five .news-main,
  .news-grid--five .news-card--side,
  .news-grid--five .news-card:not(.news-card--side),
  .news-grid--five .news-card:not(.news-card--side):nth-child(3),
  .news-grid--five .news-card:not(.news-card--side):nth-child(4),
  .news-grid--five .news-card:not(.news-card--side):nth-child(5) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .news-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-img {
    min-height: 220px;
  }

  .news-grid--five .news-card--side {
    display: block;
    padding: clamp(20px, 2.5vw, 28px);
  }

  .news-grid--five .news-card--side .news-card-thumb {
    display: none;
  }

  .news-card {
    min-height: 0;
  }

  .news-body h3,
  .news-card h3 {
    overflow-wrap: anywhere;
  }

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

  .rev-items {
    flex-direction: column;
  }

  .rev-item {
    min-width: 0;
  }

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

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

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

  .slide-inner {
    padding-bottom: 96px;
  }

  .banner-controls {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    justify-content: center;
  }

  .slide-title {
    max-width: none;
  }

  .slide-deco {
    font-size: clamp(56px, 20vw, 100px);
  }

  .arr {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
  }

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

  .header-btns .btn {
    font-size: 12px;
    padding: 12px 14px;
  }

  .slide-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slides,
  .btn,
  .news-main,
  .prog-card,
  .quick-item,
  .parc-item {
    transition: none;
  }
}
