/* ============================================
   INNRF 2027 — Innovation for Resilient Futures
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}
a { color: #2D5BDB; text-decoration: none; transition: color 0.2s; }
a:hover { color: #131B6B; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Design Tokens ---------- */
:root {
  --navy: #131B6B;
  --blue: #2D5BDB;
  --green: #3B8C4E;
  --dark-footer: #0e1347;
  --light-bg: #f7f8fb;
  --body-text: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #777;
  --text-light: #888;
  --border: #eef0f5;
  --max-width: 1120px;
  --header-max: 1280px;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Layout Helpers ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.container-header { max-width: var(--header-max); margin: 0 auto; padding: 0 40px; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19,27,107,0.08);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.header-inner {
  height: 100px; display: flex; align-items: center; justify-content: space-between;
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.site-header.scrolled .header-inner { height: 72px; }
.header-brand { display: flex; align-items: center; }
.header-brand img { height: 56px; width: auto; transition: height 0.4s cubic-bezier(0.4,0,0.2,1); }
.site-header.scrolled .header-brand img { height: 42px; }

.header-nav { display: flex; align-items: center; gap: 24px; white-space: nowrap; }
.nav-link {
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; color: #444; text-decoration: none; transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--navy); font-weight: 600; }
.nav-register {
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: #fff; background: var(--navy); padding: 10px 20px; border-radius: 6px;
  text-decoration: none; transition: all 0.3s;
}
.nav-register:hover { background: var(--blue); color: #fff; }

/* Nav dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > .nav-link::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; transition: transform 0.2s;
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(-135deg); }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 200px; padding: 12px 0; margin-top: 12px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(19,27,107,0.12), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* invisible bridge so mouse can travel from link to menu */
.nav-dropdown__menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown__menu a {
  display: block; padding: 10px 24px;
  font-size: 13px; font-weight: 500; color: #444;
  text-decoration: none; text-transform: none; letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown__menu a:hover { background: #f0f4ff; color: var(--navy); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #444; margin: 5px 0; transition: 0.3s; }

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.section-label .line { width: 32px; height: 2px; }
.section-label span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.section-label--center { justify-content: center; width: 100%; }

/* ---------- SECTION HEADING ---------- */
.section-heading {
  font-size: 38px; font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 8px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
}
.btn--primary   { padding: 14px 32px; background: var(--navy); color: #fff; font-size: 14px; }
.btn--primary:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn--white     { padding: 14px 32px; background: #fff; color: var(--navy); font-size: 14px; }
.btn--white:hover   { background: #f0f4ff; color: var(--navy); transform: translateY(-2px); }
.btn--outline   { padding: 14px 32px; background: transparent; color: #fff; font-size: 14px; font-weight: 500; border: 1px solid rgba(255,255,255,0.4); }
.btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }
.btn--outline-dark { padding: 12px 28px; border: 1px solid var(--navy); color: var(--navy); font-size: 14px; background: transparent; }
.btn--outline-dark:hover { background: var(--navy); color: #fff; }
.btn--lg { padding: 16px 40px; font-size: 15px; }

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: #1a2a6c url('../images/webdoor.webp') center/cover no-repeat;
  animation: kenBurns 25s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1)   translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1.5%, -1%); }
  100% { transform: scale(1.06) translate(1%, -0.5%); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(19,27,107,0.82) 0%, rgba(45,91,219,0.72) 50%, rgba(59,140,78,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: 160px 40px 80px; max-width: 960px;
  animation: fadeUp 1s ease-out;
}
.hero__pill {
  display: inline-block; padding: 6px 20px;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 100px; margin-bottom: 32px;
}
.hero__pill span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
}
.hero__logo { margin-bottom: 40px; }
.hero__logo img { width: 100%; max-width: 520px; height: auto; margin: 0 auto; }
.hero__subtitle {
  font-size: 20px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 48px;
}
.hero__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5));
}

/* ---------- COUNTDOWN ---------- */
.countdown { display: flex; justify-content: center; gap: 24px; margin-bottom: 48px; }
.countdown__box {
  padding: 20px 28px; min-width: 100px; text-align: center;
}
.countdown__number { font-size: 40px; font-weight: 700; color: #fff; line-height: 1; }
.countdown__label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px;
}

/* ---------- ABOUT ---------- */
.about { padding: 120px 0; background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__text p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px; }
.about__text p:last-of-type { margin-bottom: 32px; }
.about__stats { display: flex; gap: 40px; }
.about__stat-value { font-size: 36px; font-weight: 800; }
.about__stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* Track cards */
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.track-card {
  border-radius: 16px; padding: 32px 24px;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 200px;
}
.track-card--stagger { margin-top: 32px; }
.track-card__num {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.track-card__title { font-size: 17px; font-weight: 600; color: #fff; line-height: 1.3; }
.track-card__desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-top: 12px; }

/* ---------- SPEAKERS ---------- */
.speakers { padding: 120px 0; background: var(--light-bg); }
.speakers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.speaker-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(19,27,107,0.1);
}
.speaker-card__photo {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.speaker-card__info { padding: 20px; }
.speaker-card__name { font-size: 16px; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
.speaker-card__institution { font-size: 13px; color: var(--text-light); }
.speaker-card__track { font-size: 12px; font-weight: 500; margin-top: 8px; }
.speakers__note { text-align: center; margin-top: 48px; font-size: 14px; color: var(--text-light); font-style: italic; }

/* ---------- PROGRAM ---------- */
.program { padding: 120px 0; background: #fff; }
.program__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.day-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.day-card__header { padding: 28px 28px 24px; }
.day-card__weekday {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.day-card__date { font-size: 28px; font-weight: 700; color: #fff; margin-top: 4px; }
.day-card__desc { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.day-card__events { padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.event { display: flex; gap: 12px; align-items: baseline; }
.event__time { font-size: 12px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.event__title { font-size: 14px; color: #444; }

/* ---------- CALL FOR PAPERS ---------- */
.cfp {
  padding: 120px 0; position: relative;
  background: linear-gradient(135deg, #131B6B 0%, #2D5BDB 50%, #3B8C4E 100%);
}
.cfp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cfp__text h2 { font-size: 38px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 24px; }
.cfp__text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cfp__dates { display: flex; flex-direction: column; gap: 16px; }
.cfp__date-card { padding: 24px 28px; }
.cfp__date-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.cfp__date-value { font-size: 20px; font-weight: 700; color: #fff; }

/* ---------- VENUE ---------- */
.venue { padding: 120px 0; background: #fff; }
.venue__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.venue__image {
  border-radius: 16px; overflow: hidden; aspect-ratio: 16/10;
  background: #e0e5ed url('https://images.unsplash.com/photo-1611606063065-ee7946f0787a?w=800&q=80') center/cover no-repeat;
}
.venue__info { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.venue__info-item { display: flex; gap: 16px; align-items: flex-start; }
.venue__icon {
  width: 44px; height: 44px; background: #f0f4ff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.venue__info-title { font-size: 15px; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
.venue__info-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.venue__map { border-radius: 16px; overflow: hidden; height: 320px; border: 1px solid var(--border); }
.venue__map iframe { border: 0; width: 100%; height: 100%; }

/* ---------- REGISTRATION ---------- */
.registration { padding: 100px 0; background: var(--light-bg); }
.registration__content { max-width: 800px; margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pricing-grid--4 .pricing-card { padding: 30px 20px; }
.pricing-card--cib { border-color: rgba(59,140,78,0.45); }
.pricing-card--cib .pricing-card__badge { background: var(--green); }
.pricing-card {
  background: #fff; border: 2px solid var(--border); border-radius: 16px;
  padding: 32px 24px; position: relative; transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--blue); }
.pricing-card--featured { border-color: var(--blue); }
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
}
.pricing-card__tier {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 12px;
}
.pricing-card__type { font-size: 14px; color: #aaa; margin-bottom: 4px; }
.pricing-card__price { font-size: 32px; font-weight: 800; color: var(--navy); }
.pricing-card__benefit { font-size: 13px; color: #aaa; margin-top: 12px; }

/* ---------- SPONSORS ---------- */
.sponsors { padding: 100px 0; background: #fff; }
.sponsors__logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; margin-bottom: 64px; padding: 40px;
}
.sponsors__logos img:first-child { height: 56px; width: auto; }
.sponsors__logos .divider { width: 1px; height: 48px; background: #dde2ea; }
.sponsors__logos img:last-child { height: 52px; width: auto; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 152px 40px 80px; text-align: center;
}
.page-hero--navy { background: linear-gradient(135deg, #131B6B 0%, #2D5BDB 100%); }
.page-hero--green { background: linear-gradient(135deg, #3B8C4E 0%, #2D5BDB 100%); }
.page-hero h1 { font-size: 44px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark-footer); padding: 64px 40px 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
/* height fixo + max-width:100% do reset esmagava a logo (proporção 6.3:1).
   max-height preserva a proporção em qualquer largura de coluna. */
.footer__brand img { max-height: 64px; width: auto; max-width: 100%; height: auto; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer__cobranding { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.footer__cobranding img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; }
.footer__cobranding span { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__social { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.footer__social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.footer__social-icon svg { fill: rgba(255,255,255,0.6); transition: fill 0.25s ease; }
.footer__social-icon:hover {
  background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.footer__social-icon:hover svg { fill: #fff; }
.footer__social-label { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__social:hover .footer__social-label { color: rgba(255,255,255,0.85); }

.footer__col-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s;
}
.footer__link:hover { color: #fff; }
.footer__contact-text { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom span { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ---------- TEXT SECTION (generic) ---------- */
.text-section { padding: 100px 0; }
.text-section--alt { background: var(--light-bg); }
.text-section__body { max-width: 800px; margin: 0 auto; }
.text-section__body p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px; }
.text-section__body a { color: var(--blue); }

/* ============================================
   CONTENT COMPONENTS
   ============================================ */

/* ---------- Section head (centered) ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .section-heading { margin-bottom: 18px; }
.section-head p { font-size: 17px; line-height: 1.75; color: var(--text-secondary); }

/* ---------- Generic section paddings ---------- */
.section { padding: 120px 0; background: #fff; }
.section--alt { background: var(--light-bg); }
.section--tight { padding: 96px 0; }

/* ---------- Icon chip ---------- */
.icon-chip {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 22px;
}
.icon-chip--navy  { background: rgba(19,27,107,0.08); }
.icon-chip--blue  { background: rgba(45,91,219,0.10); }
.icon-chip--green { background: rgba(59,140,78,0.10); }
.icon-chip--light { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.18); }

/* ---------- Feature cards (Why Attend) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px); border-color: rgba(45,91,219,0.25);
  box-shadow: 0 16px 40px rgba(19,27,107,0.09);
}
.feature-card__title { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-card__desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* ---------- Theme cards (5 streams) ---------- */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.theme-card {
  position: relative; overflow: hidden;
  border-radius: 18px; padding: 36px 32px 34px; color: #fff;
  min-height: 268px; display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}
.theme-card::after {
  content: ''; position: absolute; right: -60px; bottom: -70px;
  width: 190px; height: 190px; border-radius: 50%;
  background: rgba(255,255,255,0.07); transition: transform 0.5s ease;
}
.theme-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(19,27,107,0.22); }
.theme-card:hover::after { transform: scale(1.25); }
.theme-card__num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.theme-card__title { font-size: 21px; font-weight: 700; line-height: 1.28; margin-bottom: 14px; position: relative; z-index: 1; }
.theme-card__desc { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.82); position: relative; z-index: 1; }
.theme-card__tags { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.theme-card__tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
}
.theme-card .icon-chip { margin-bottom: 20px; position: relative; z-index: 1; }

/* ---------- Format cards ---------- */
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.format-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 26px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.format-card:hover {
  transform: translateY(-4px); border-color: rgba(59,140,78,0.28);
  box-shadow: 0 16px 40px rgba(19,27,107,0.08);
}
.format-card .icon-chip { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px; }
.format-card__title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.format-card__desc { font-size: 13.5px; line-height: 1.68; color: var(--text-muted); }
.format-card--wide { grid-column: span 2; }

/* ---------- Award highlight ---------- */
.highlight-band {
  margin-top: 40px; border-radius: 18px; padding: 34px 40px;
  background: linear-gradient(120deg, rgba(19,27,107,0.05), rgba(59,140,78,0.07));
  border: 1px solid rgba(19,27,107,0.08);
  display: flex; align-items: center; gap: 28px;
}
.highlight-band .icon-chip { margin-bottom: 0; background: #fff; box-shadow: 0 4px 16px rgba(19,27,107,0.08); }
.highlight-band__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.highlight-band__desc { font-size: 14.5px; line-height: 1.7; color: var(--text-secondary); max-width: 760px; }

/* ---------- Horizontal timeline (Event Dynamics) ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.flow::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--green));
  opacity: 0.25;
}
.flow__step { text-align: center; padding: 0 24px; position: relative; }
.flow__dot {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(19,27,107,0.18);
}
.flow__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 8px;
}
.flow__title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.flow__desc { font-size: 14.5px; line-height: 1.72; color: var(--text-muted); max-width: 300px; margin: 0 auto 20px; }
.flow__items { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.flow__item {
  font-size: 12.5px; font-weight: 500; color: var(--text-secondary);
  background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 7px 18px;
}
.flow-closing {
  margin-top: 56px; text-align: center;
  border-radius: 16px; padding: 28px 32px;
  background: linear-gradient(135deg, #131B6B, #2D5BDB);
}
.flow-closing__title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.flow-closing__desc { font-size: 14.5px; color: rgba(255,255,255,0.75); }

/* ---------- Outcome cards ---------- */
.outcome-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.outcome-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 30px 24px; backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.outcome-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.11); }
.outcome-card__num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.outcome-card__title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.outcome-card__desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.7); }

/* ---------- Dates timeline ---------- */
.dates-rail { position: relative; max-width: 860px; margin: 0 auto; padding-left: 34px; }
.dates-rail::before {
  content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--navy), var(--blue), var(--green));
  opacity: 0.22;
}
.date-row {
  position: relative; display: flex; align-items: baseline; gap: 28px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.date-row:last-child { border-bottom: none; }
.date-row::before {
  content: ''; position: absolute; left: -34px; top: 27px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue);
}
.date-row--key::before { background: var(--green); border-color: var(--green); }
.date-row__date {
  font-size: 15px; font-weight: 700; color: var(--navy);
  min-width: 190px; flex-shrink: 0;
}
.date-row__title { font-size: 15.5px; color: var(--text-secondary); }
.date-row--key .date-row__date { color: var(--green); }
.date-row--key .date-row__title { color: var(--navy); font-weight: 600; }

/* ---------- Dates: high-emphasis variants ---------- */
/* Next deadline hero band */
.deadline-band {
  border-radius: 20px; padding: 40px 48px; margin-bottom: 56px;
  background: linear-gradient(120deg, #131B6B 0%, #2D5BDB 100%);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.deadline-band::after {
  content: ''; position: absolute; right: -80px; top: -90px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.deadline-band__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 12px;
}
.deadline-band__date { font-size: 38px; font-weight: 800; color: #fff; line-height: 1.1; }
.deadline-band__title { font-size: 16px; color: rgba(255,255,255,0.82); margin-top: 8px; }
.deadline-band__side { position: relative; z-index: 1; text-align: right; }
.deadline-band__count { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.deadline-band__count-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px;
}
.deadline-band__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px; padding: 9px 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.deadline-band__link:hover {
  background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4);
  color: #fff; transform: translateY(-2px);
}

/* Emphasised dates rail */
.dates-rail--lg { max-width: 940px; padding-left: 46px; }
.dates-rail--lg::before { left: 7px; width: 3px; opacity: 0.3; }
.dates-rail--lg .date-row {
  padding: 26px 28px; margin-bottom: 12px; gap: 32px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.dates-rail--lg .date-row:last-child { margin-bottom: 0; }
.dates-rail--lg .date-row:hover {
  transform: translateX(4px); border-color: rgba(45,91,219,0.28);
  box-shadow: 0 12px 32px rgba(19,27,107,0.08);
}
.dates-rail--lg .date-row::before {
  left: -46px; top: 50%; margin-top: -8px;
  width: 16px; height: 16px; border-width: 3px;
}
.dates-rail--lg .date-row__date { font-size: 18px; min-width: 210px; }
.dates-rail--lg .date-row__title { font-size: 16px; }
.dates-rail--lg .date-row--key {
  background: linear-gradient(120deg, rgba(59,140,78,0.07), rgba(45,91,219,0.05));
  border-color: rgba(59,140,78,0.28);
}
.dates-rail--lg .date-row--next {
  border-color: var(--blue); border-width: 2px;
  box-shadow: 0 12px 36px rgba(45,91,219,0.14);
}
.date-row__flag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--blue); border-radius: 100px;
  padding: 4px 12px; margin-left: auto; white-space: nowrap;
}
.date-row--key .date-row__flag { background: var(--green); }

/* ---------- Venue ---------- */
.venue-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.venue-split p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px; }
.venue-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 56px rgba(19,27,107,0.16); }
.venue-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 16px;
}
.gallery figure { position: relative; border-radius: 14px; overflow: hidden; margin: 0; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px;
  font-size: 12.5px; font-weight: 500; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(10,14,45,0.72));
}
.gallery figure.span-2 { grid-column: span 2; }
.gallery figure.row-2 { grid-row: span 2; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-grid--5 .why-card { padding: 26px 20px; }
.why-grid--5 .why-card__title { font-size: 15px; }
.why-grid--5 .why-card__desc { font-size: 13px; }
.why-grid--3 { grid-template-columns: repeat(3, 1fr); }
.why-card {
  border-radius: 16px; padding: 28px 24px; background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(19,27,107,0.09); }
.why-card__title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.why-card__desc { font-size: 13.5px; line-height: 1.68; color: var(--text-muted); }

/* ---------- Organizers ---------- */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.person-card:hover { border-color: rgba(45,91,219,0.25); box-shadow: 0 12px 32px rgba(19,27,107,0.07); transform: translateY(-2px); }
.person-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.02em;
}
.person-card__name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; line-height: 1.35; }
.person-card__affil { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.person-card__country { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* People with photos — centred flex so uneven last rows still look intentional */
.people-flex {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.person {
  flex: 0 1 208px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.person__photo {
  width: 132px; height: 132px; border-radius: 50%;
  overflow: hidden; margin-bottom: 18px; position: relative;
  background: var(--light-bg);
  box-shadow: 0 8px 24px rgba(19,27,107,0.10);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}
.person__photo::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid #fff; box-shadow: inset 0 0 0 1px rgba(19,27,107,0.10);
}
.person:hover .person__photo {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(19,27,107,0.18);
}
.person__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92); transition: filter 0.3s ease, transform 0.5s ease;
}
.person:hover .person__photo img { filter: saturate(1.05); transform: scale(1.04); }
/* fallback: iniciais enquanto não há foto */
.person__photo--initials {
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 700; color: #fff; letter-spacing: 0.02em;
}
.person__name {
  font-size: 15px; font-weight: 600; color: var(--navy);
  line-height: 1.35; margin-bottom: 5px;
}
.person__affil { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.person__country {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-top: 8px;
}
.person__pending {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); margin-top: 8px;
}

.group-title {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.group-title h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.group-title .count {
  font-size: 12px; font-weight: 600; color: var(--text-light);
  background: var(--light-bg); border-radius: 100px; padding: 4px 12px;
}

/* ---------- Partner organizations ---------- */
.partner-block + .partner-block { margin-top: 56px; }
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 22px; text-align: center; min-height: 118px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-card:hover { border-color: rgba(45,91,219,0.28); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(19,27,107,0.08); }
.partner-card__name { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.partner-card__meta { font-size: 12px; color: var(--text-light); }
/* logos normalizadas na mesma tela 440x150 -> altura única garante peso óptico igual */
.partner-card img {
  height: 62px; width: 100%; max-width: 200px; object-fit: contain;
  filter: grayscale(1); opacity: 0.65; transition: filter 0.35s ease, opacity 0.35s ease;
}
.partner-card:hover img { filter: grayscale(0); opacity: 1; }
.partner-card--logo { min-height: 148px; gap: 10px; padding: 22px 18px; }
/* enquanto a logo não existe, o nome em texto assume o lugar */
.partner-card--logo .partner-card__name { display: none; }
.partner-card--logo.no-logo .partner-card__name { display: block; }

/* ---------- CIB cluster commission cards ---------- */
.cluster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.cluster-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 24px; text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cluster-card:hover {
  border-color: rgba(45,91,219,0.28); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(19,27,107,0.08);
}
.cluster-card__code {
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em; color: #fff;
  background: var(--navy); border-radius: 8px; padding: 8px 12px;
  flex-shrink: 0; min-width: 62px; text-align: center;
}
.cluster-card--tg .cluster-card__code { background: var(--green); }
.cluster-card__title { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.45; }
.cluster-card__link {
  font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 6px;
  display: inline-flex; align-items: center; gap: 5px;
}
.partner-note { text-align: center; font-size: 13.5px; color: var(--text-light); margin-top: 28px; }

/* ---------- Cluster pills ---------- */
.cluster-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.cluster-pill {
  font-size: 13px; font-weight: 500; color: var(--navy);
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 18px;
}
.cluster-pill strong { font-weight: 700; }

/* ---------- LinkedIn: canal oficial de novidades ---------- */
.linkedin-band {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  border-radius: 20px; padding: 40px 48px;
  background: linear-gradient(120deg, #0e1347 0%, #131B6B 45%, #2D5BDB 100%);
  position: relative; overflow: hidden;
}
.linkedin-band::after {
  content: ''; position: absolute; right: -70px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.linkedin-band__icon {
  width: 68px; height: 68px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  position: relative; z-index: 1;
}
.linkedin-band__body { flex: 1 1 320px; position: relative; z-index: 1; }
.linkedin-band__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 10px;
}
.linkedin-band__title { font-size: 24px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.linkedin-band__desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 520px; }
.linkedin-band__cta { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- Final CTA ---------- */
.cta-final {
  padding: 130px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #131B6B 0%, #2D5BDB 55%, #3B8C4E 100%);
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 45%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 22px; }
.cta-final p { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.82); max-width: 680px; margin: 0 auto 40px; }

/* ---------- Resource / download cards ---------- */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.resource-card {
  display: flex; gap: 22px; align-items: flex-start; text-align: left;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.resource-card:hover {
  transform: translateY(-4px); border-color: rgba(45,91,219,0.28);
  box-shadow: 0 16px 40px rgba(19,27,107,0.09);
}
.resource-card--accent {
  background: linear-gradient(120deg, rgba(19,27,107,0.04), rgba(59,140,78,0.06));
  border-color: rgba(19,27,107,0.12);
}
.resource-card .icon-chip { margin-bottom: 0; }
.resource-card__body { flex: 1; }
.resource-card__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.resource-card__desc { font-size: 14.5px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.resource-card__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 16px; font-size: 12px; color: var(--text-light);
}
.file-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--light-bg);
  border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px;
}

/* ---------- Placeholder block ---------- */
.placeholder-block {
  border: 1px dashed rgba(19,27,107,0.18); border-radius: 16px;
  padding: 56px 40px; text-align: center; background: var(--light-bg);
}
.placeholder-block__title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.placeholder-block__desc { font-size: 14.5px; color: var(--text-muted); }

/* ---------- Program matrix (tabela) ---------- */
.matrix-wrap {
  border-radius: 16px; border: 1px solid var(--border);
  overflow-x: auto; background: #fff;
  -webkit-overflow-scrolling: touch;
}
.matrix-table {
  width: 100%; min-width: 720px;
  border-collapse: separate; border-spacing: 0;
  font-size: 14px;
}
.matrix-table th, .matrix-table td {
  padding: 18px 20px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.matrix-table tr:last-child th, .matrix-table tr:last-child td { border-bottom: none; }

/* cabeçalho */
.matrix-table thead th {
  background: var(--navy); color: #fff; border-bottom: none;
  font-size: 13px; font-weight: 600; line-height: 1.4;
  position: sticky; top: 0;
}
.matrix-table thead th:first-child {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 700;
}
.matrix-table thead th .day {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 5px;
}

/* coluna dos temas */
.matrix-table tbody th {
  width: 25%; font-weight: 600; color: #fff; line-height: 1.4;
  font-size: 13.5px; border-bottom: 2px solid #fff;
}
.matrix-table tbody th small {
  display: block; font-weight: 500; font-size: 12px;
  color: rgba(255,255,255,0.72); margin-top: 4px;
}

/* células de atividade */
.matrix-table td { color: var(--text-secondary); line-height: 1.6; background: #fbfcfe; }
.matrix-table tbody tr:nth-child(even) td { background: #f5f7fb; }
.matrix-table td strong {
  display: block; font-weight: 600; color: var(--navy);
  font-size: 13.5px; margin-bottom: 3px;
}
.matrix-table td span { font-size: 12.5px; color: var(--text-muted); }

/* coluna vertical de encerramento */
.matrix-table .matrix-closing {
  background: linear-gradient(180deg, #131B6B, #2D5BDB);
  color: #fff; text-align: center; width: 58px; padding: 20px 8px;
  border-bottom: none;
}
.matrix-table .matrix-closing span {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  color: #fff; white-space: nowrap;
}
.matrix-hint {
  display: none; font-size: 12px; color: var(--text-light);
  text-align: center; margin-top: 12px;
}

/* ---------- Crédito do rodapé ---------- */
.footer__credit { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__credit a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.2s;
}
.footer__credit a:hover { color: rgba(255,255,255,0.8); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .cfp__grid { grid-template-columns: 1fr; gap: 48px; }
  .venue__grid { grid-template-columns: 1fr; gap: 32px; }
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
  .program__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-heading { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }

  .feature-grid, .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .format-card--wide { grid-column: span 2; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .why-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .venue-split { grid-template-columns: 1fr; gap: 40px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery figure.span-2 { grid-column: span 2; }
  .gallery figure.row-2 { grid-row: span 1; }
  .flow { grid-template-columns: 1fr; gap: 48px; }
  .flow::before { display: none; }
  .cta-final h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .container, .container-header { padding: 0 20px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px); padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid rgba(19,27,107,0.08);
  }
  .nav-toggle { display: block; }
  .nav-dropdown__menu {
    position: static; transform: none; box-shadow: none; border-radius: 0;
    margin-top: 0; padding: 0 0 0 16px; opacity: 1; visibility: visible;
    pointer-events: auto; background: transparent;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown__menu { max-height: 200px; }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown__menu a { padding: 8px 0; font-size: 13px; color: #666; }
  .nav-dropdown__menu a:hover { background: transparent; color: var(--navy); }
  .hero__content { padding: 140px 20px 60px; }
  .hero__subtitle { font-size: 16px; }
  .countdown { gap: 12px; }
  .countdown__box { padding: 14px 16px; min-width: 70px; }
  .countdown__number { font-size: 28px; }
  .about__stats { gap: 24px; flex-wrap: wrap; }
  .tracks-grid { grid-template-columns: 1fr; }
  .track-card--stagger { margin-top: 0; }
  .speakers__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sponsors__logos { flex-direction: column; gap: 24px; }
  .sponsors__logos .divider { width: 48px; height: 1px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-heading { font-size: 26px; }
  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: 30px; }
  .cfp { padding: 80px 0; }
  .about, .speakers, .program, .venue { padding: 80px 0; }

  .section, .section--tight { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: 15.5px; }
  .feature-grid, .feature-grid--3, .theme-grid, .format-grid, .outcome-grid,
  .why-grid, .people-grid { grid-template-columns: 1fr; }
  .people-flex { gap: 20px 16px; }
  .person { flex: 0 1 140px; }
  .person__photo { width: 104px; height: 104px; margin-bottom: 14px; }
  .person__photo--initials { font-size: 27px; }
  .person__name { font-size: 13.5px; }
  .person__affil { font-size: 12px; }
  .format-card--wide { grid-column: span 1; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .cluster-grid { grid-template-columns: 1fr; }
  .why-grid--5, .why-grid--3 { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { flex-direction: column; gap: 18px; padding: 26px 24px; }
  .theme-card { min-height: 0; padding: 30px 26px; }
  .highlight-band { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px 26px; }
  .dates-rail { padding-left: 26px; }
  .date-row { flex-direction: column; gap: 6px; padding: 16px 0; }
  .date-row::before { top: 22px; left: -26px; width: 10px; height: 10px; }
  .date-row__date { min-width: 0; }
  .dates-rail--lg { padding-left: 26px; }
  .dates-rail--lg .date-row { padding: 20px 20px; gap: 8px; align-items: flex-start; }
  .dates-rail--lg .date-row::before { top: 26px; margin-top: 0; left: -26px; width: 12px; height: 12px; }
  .dates-rail--lg .date-row__date { font-size: 16px; }
  .dates-rail--lg .date-row__title { font-size: 14.5px; }
  .date-row__flag { margin-left: 0; }
  .deadline-band { padding: 28px 26px; gap: 24px; margin-bottom: 40px; }
  .deadline-band__date { font-size: 28px; }
  .deadline-band__side { text-align: left; }
  .deadline-band__count { font-size: 40px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery figure.span-2 { grid-column: span 1; }
  .matrix-table { font-size: 13px; }
  .matrix-table th, .matrix-table td { padding: 14px 14px; }
  .matrix-hint { display: block; }
  .footer__bottom { gap: 10px; }
  .linkedin-band { padding: 30px 26px; gap: 22px; }
  .linkedin-band__icon { width: 56px; height: 56px; border-radius: 15px; }
  .linkedin-band__title { font-size: 20px; }
  .linkedin-band__desc { font-size: 14.5px; }
  .linkedin-band__cta { width: 100%; }
  .linkedin-band__cta .btn { width: 100%; justify-content: center; }
  .cta-final { padding: 88px 0; }
  .cta-final h2 { font-size: 27px; }
  .cta-final p { font-size: 16px; }
  .venue-split { gap: 32px; }
}


/* ===== Cookie consent (LGPD) ===== */
.cookie-consent{position:fixed;left:24px;bottom:24px;z-index:9999;max-width:360px;width:calc(100% - 48px);background:#fff;border:1px solid rgba(19,27,107,.1);border-radius:16px;box-shadow:0 12px 40px rgba(19,27,107,.18);padding:20px 22px;transform:translateY(24px);opacity:0;visibility:hidden;transition:transform .45s cubic-bezier(.16,1,.3,1),opacity .45s ease,visibility .45s;}
.cookie-consent.is-visible{transform:translateY(0);opacity:1;visibility:visible;}
.cookie-consent__icon{font-size:22px;line-height:1;margin-bottom:10px;}
.cookie-consent__title{font-size:15px;font-weight:700;color:#131B6B;margin:0 0 6px;}
.cookie-consent__text{font-size:13px;line-height:1.5;color:#4a4f6a;margin:0 0 16px;}
.cookie-consent__text a{color:#131B6B;text-decoration:underline;}
.cookie-consent__actions{display:flex;gap:10px;}
.cookie-consent__btn{flex:1;border:0;border-radius:10px;padding:10px 14px;font-size:13px;font-weight:600;cursor:pointer;font-family:inherit;transition:background .2s,color .2s,border-color .2s;}
.cookie-consent__btn--accept{background:#131B6B;color:#fff;}
.cookie-consent__btn--accept:hover{background:#0d1450;}
.cookie-consent__btn--decline{background:transparent;color:#131B6B;border:1px solid rgba(19,27,107,.25);}
.cookie-consent__btn--decline:hover{border-color:#131B6B;background:rgba(19,27,107,.04);}
@media (max-width:480px){.cookie-consent{left:12px;right:12px;bottom:12px;width:auto;max-width:none;}}
