/* ═══════════════════════════════════════════════
   EXPOELÉTRICA 2026 — CSS GLOBAL
   Tokens, Reset, Navbar, Footer, Botões, Eyebrow,
   WhatsApp Float, Componentes Compartilhados
═══════════════════════════════════════════════ */

/* Font Awesome font-display override */
@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; }

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --navy:       #081546;
  --navy-deep:  #040d30;
  --navy-mid:   #0c1d52;
  --royal:      #0f2d97;
  --blue:       #2e52b6;
  --gold:       #de9e2b;
  --orange:     #f5a83a;
  --orange-sec: #e37b3d;

  --white:      #ffffff;
  --off-white:  #f5f4f0;
  --surface:    #fafaf8;

  --text-dark:  #1a1a1a;
  --text-muted: #5f6672;
  --text-dim:   rgba(255,255,255,0.80);
  --text-faint: rgba(255,255,255,0.42);

  --border-dark:  rgba(255,255,255,0.09);
  --border-light: #ebebeb;
  --whatsapp:     #25d366;

  --f-display: 'Oswald', sans-serif;
  --f-body:    'Merriweather', serif;
  --f-ui:      'Roboto', sans-serif;

  /* Espaçamento 8px */
  --s1:   8px;  --s2:  16px;  --s3:  24px;
  --s4:  32px;  --s5:  48px;  --s6:  64px;
  --s7:  80px;  --s8: 104px;  --s9: 128px;

  /* Raio */
  --r1: 4px;  --r2: 8px;  --r3: 12px;
  --r4: 20px; --r5: 28px;
  --pill: 999px; --circle: 50%;

  /* Sombras */
  --sh-card:   0 2px 16px rgba(0,0,0,0.07);
  --sh-card-hover: 0 8px 32px rgba(0,0,0,0.12);
  --sh-soft:   0 4px 24px rgba(0,0,0,0.06);
  --sh-float:  0 12px 40px rgba(0,0,0,0.15);
  --sh-geo:    6px 6px 0 rgba(8,21,70,0.10);
  --sh-orange: 0 4px 20px rgba(245,168,58,0.28);
  --sh-photo:  0 24px 80px rgba(0,0,0,0.25);

  --wrap:   1160px;
  --gutter:   24px;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
body {
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--white);
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────
   EYEBROW
───────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow--gold   { color: var(--gold); }
.eyebrow--royal  { color: var(--royal); }
.eyebrow--orange { color: var(--orange-sec); }
.eyebrow--muted  { color: var(--text-muted); }
.eyebrow--white  { color: rgba(255,255,255,0.60); }

/* ─────────────────────────────────────────
   BOTÕES
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--pill);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, filter 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg   { font-size: 16px; padding: 15px 38px; }
.btn--md   { font-size: 14px; padding: 12px 26px; }
.btn--sm   { font-size: 14px; padding: 9px 18px; }
.btn--full { width: 100%; }

.btn--orange {
  background: linear-gradient(135deg, #f5a738, #e8922a);
  color: var(--white);
  box-shadow: var(--sh-orange);
}
.btn--orange:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(245,168,58,0.40);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--glass {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--royal);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0C1740;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.navbar__logo { height: 40px; width: auto; display: block; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.navbar__nav a {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

/* Dropdown (Etapas Anteriores) */
.navbar__dropdown {
  position: relative;
}
.navbar__dropdown-toggle {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding-bottom: 3px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.navbar__dropdown-toggle:hover,
.navbar__dropdown.open .navbar__dropdown-toggle {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.navbar__dropdown-toggle i.fa-chevron-down {
  font-size: 14px;
  transition: transform 0.2s;
}
.navbar__dropdown.open .navbar__dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}
.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 110;
}
.navbar__dropdown.open .navbar__dropdown-menu {
  display: block;
}
.navbar__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  border-bottom: none !important;
  transition: color 0.18s, background 0.18s;
}
.navbar__dropdown-menu a:hover {
  color: var(--orange);
  background: rgba(255,255,255,0.06);
}

/* Hamburger (mobile) */
.navbar__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  border: none;
  background: none;
}

/* Mobile menu overlay */
.navbar__mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4,13,48,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.navbar__mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.navbar__mobile-menu a,
.navbar__mobile-menu button {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s;
}
.navbar__mobile-menu.open a,
.navbar__mobile-menu.open button {
  transform: translateY(0);
  opacity: 1;
}
.navbar__mobile-menu.open > :nth-child(1) { transition-delay: 0.05s; }
.navbar__mobile-menu.open > :nth-child(2) { transition-delay: 0.10s; }
.navbar__mobile-menu.open > :nth-child(3) { transition-delay: 0.15s; }
.navbar__mobile-menu.open > :nth-child(4) { transition-delay: 0.20s; }
.navbar__mobile-menu.open > :nth-child(5) { transition-delay: 0.25s; }
.navbar__mobile-menu.open > :nth-child(6) { transition-delay: 0.30s; }
.navbar__mobile-menu.open > :nth-child(7) { transition-delay: 0.35s; }
.navbar__mobile-menu.open > :nth-child(8) { transition-delay: 0.40s; }
.navbar__mobile-menu.open > :nth-child(9) { transition-delay: 0.45s; }
.navbar__mobile-menu a {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.navbar__mobile-menu a:hover {
  color: var(--orange);
}
/* Mobile dropdown accordion */
.navbar__mobile-dropdown-toggle {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.navbar__mobile-dropdown-toggle:hover {
  color: var(--orange);
}
.navbar__mobile-dropdown-toggle i.fa-chevron-down {
  font-size: 14px;
  transition: transform 0.2s;
}
.navbar__mobile-dropdown-toggle.open i.fa-chevron-down {
  transform: rotate(180deg);
}
.navbar__mobile-sub {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.navbar__mobile-sub.open {
  display: flex;
}
.navbar__mobile-sub a {
  font-size: 17px !important;
  color: rgba(255,255,255,0.60) !important;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
}
.navbar__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─────────────────────────────────────────
   HERO (base — comum a todas as páginas)
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    134.65deg,
    rgba(8,21,70,0.97) 8.49%,
    rgba(8,21,70,0.84) 50%,
    rgba(15,45,151,0.50) 91.51%
  );
}
.hero__ring {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: var(--circle);
  border: 1px solid rgba(245,168,58,0.07);
  pointer-events: none;
}
.hero__ring::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: var(--circle);
  border: 1px solid rgba(245,168,58,0.04);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s6);
  align-items: stretch;
  width: 100%;
}
.hero__col-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: var(--s7) 0;
}
.hero__col-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: var(--s7) 0;
}
.hero__bento {
  flex: 1;
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1.27fr 1fr;
  gap: 10px;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.55));
}
.hero__bento-cell {
  overflow: hidden;
  border-radius: 10px;
}
.hero__bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero__bento-cell:hover img { transform: scale(1.06); }
.hero__bento-cell--a { grid-row: span 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--white);
}
.hero__title em { font-style: normal; color: var(--orange); }
.hero__sub {
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}
.hero__meta-item i { font-size: 14px; opacity: 0.80; width: 14px; text-align: center; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.hero__trust-label {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}
.hero__trust-logo { height: 32px; width: auto; opacity: 0.50; }

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: var(--s5) 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 3px solid var(--orange);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: var(--s3) var(--s4);
}
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.08); }
.stat__n {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__l {
  font-family: var(--f-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.46);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   SECTION HEADERS (padrão reutilizável)
───────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: var(--s6);
}
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center .eyebrow { justify-content: center; }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin-bottom: var(--s2);
}
.section-title--light { color: var(--white); }
.section-title--dark  { color: var(--navy); }
.section-desc {
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
}
.section-desc--light { color: rgba(255,255,255,0.68); }

/* ─────────────────────────────────────────
   WHY CARDS (grid 2x2)
───────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
.why-card {
  background: #ededed;
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  padding: var(--s5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}
.why-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--sh-geo);
}
.why-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}
.why-card--dark:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r2);
  background: rgba(245,168,58,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 21px;
  margin-bottom: var(--s3);
  transition: background 0.2s;
}
.why-card:hover .why-card__icon { background: rgba(245,168,58,0.16); }
.why-card__title {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.why-card--dark .why-card__title { color: var(--white); }
.why-card__text {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}
.why-card--dark .why-card__text { color: rgba(255,255,255,0.70); }

/* ─────────────────────────────────────────
   SPONSORS / LOGO TILES
───────────────────────────────────────── */
.tier-block {
  padding-bottom: var(--s6);
  margin-bottom: var(--s6);
  border-bottom: 1px solid var(--border-light);
}
.tier-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.tier-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s4);
}
.tier-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--circle);
  flex-shrink: 0;
}
.tier-dot--titanio  { background: #7BAAB8; }
.tier-dot--diamante { background: #9BB8D0; }
.tier-dot--platina  { background: #ABABAB; }
.tier-dot--safira   { background: #4A8FCA; }
.tier-dot--ouro     { background: var(--gold); }
.tier-dot--prata    { background: #999; }
.tier-dot--apoio    { background: #5A9E7A; }
.tier-name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: center;
}
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r2);
  padding: 10px 18px;
  height: 68px;
  min-width: 110px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.logo-tile:hover {
  border-color: #ccc;
  box-shadow: 4px 4px 0 rgba(8,21,70,0.07);
  transform: translate(-2px, -2px);
}
.logo-tile--lg { height: 78px; min-width: 130px; padding: 10px 22px; }
.logo-tile img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-tile--lg img { max-height: 52px; max-width: 160px; }
.logo-tile__name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #555;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   CAROUSEL
───────────────────────────────────────── */
.carousel {
  position: relative;
}
.carousel__viewport {
  position: relative;
  border-radius: var(--r4);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border-light);
  background: #fff;
}
.carousel__track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel__slide { flex: 0 0 100%; }
.carousel__slide img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  background: #fff;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--circle);
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 10;
}
.carousel__btn:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.20);
}
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--circle);
  background: var(--border-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel__dot--active,
.carousel__dot:hover {
  background: var(--royal);
  transform: scale(1.25);
}

/* ─────────────────────────────────────────
   VIDEO CONTAINER (responsivo 16:9)
───────────────────────────────────────── */
.video-container {
  max-width: 820px;
  margin: 0 auto;
}
.video-container__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.video-container__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─────────────────────────────────────────
   FEATURE CARDS (ícone + título + texto + link)
───────────────────────────────────────── */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  padding: var(--s5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--sh-geo);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r2);
  background: rgba(15,45,151,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: 22px;
  margin-bottom: var(--s3);
}
.feature-card__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.feature-card__text {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.feature-card__link {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--royal);
  transition: color 0.2s;
}
.feature-card__link:hover { color: var(--orange); }
.feature-card__link i { margin-left: 6px; font-size: 14px; }

/* ─────────────────────────────────────────
   VENUE SECTION (local + mapa)
───────────────────────────────────────── */
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: center;
  margin-top: var(--s5);
}
.venue__info {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.venue__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.80);
}
.venue__item i {
  color: var(--orange);
  font-size: 18px;
  margin-top: 2px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.venue__item strong { color: var(--white); font-weight: 600; }
.venue__map {
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.venue__map iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

/* ─────────────────────────────────────────
   CTA BANNER (seção final full-width)
───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  padding: var(--s8) 0;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.10;
  margin-bottom: var(--s2);
}
.cta-banner__sub {
  font-family: var(--f-ui);
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto var(--s5);
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s3);
}

/* ─────────────────────────────────────────
   STEPS (timeline horizontal 1-2-3)
───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 72px;
  height: 72px;
  border-radius: var(--circle);
  background: var(--white);
  border: 3px solid var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--royal);
  margin: 0 auto var(--s3);
}
.step__title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step__text {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 260px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   FEATURE GRID 6 (2x3 com ícones)
───────────────────────────────────────── */
.feature-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 6px 16px;
  align-items: start;
}
.feature-item__icon { grid-row: 1 / -1; align-self: start; }
.feature-item__title { grid-column: 2; }
.feature-item__text { grid-column: 2; }
.feature-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r2);
  background: rgba(245,168,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 19px;
  flex-shrink: 0;
}
.feature-item__title {
  font-family: var(--f-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.feature-item__text {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.60);
}
.feature-item__text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────
   PILLAR CARDS (3 pilares)
───────────────────────────────────────── */
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  padding: var(--s5);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}
.pillar-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--circle);
  background: rgba(15,45,151,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: 24px;
  margin: 0 auto var(--s3);
}
.pillar-card__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar-card__text {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   TOPIC CARDS (eixos temáticos)
───────────────────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
  justify-items: center;
}
.topic-grid--center {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
}
.topic-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r3);
  padding: var(--s3) var(--s3);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
}
.topic-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.topic-card__number {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.topic-card__text {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.80);
}

/* ─────────────────────────────────────────
   SPEAKER CARDS
───────────────────────────────────────── */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}
.speaker-card {
  text-align: center;
  padding: var(--s4);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.speaker-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-card);
}
.speaker-card__photo {
  width: 100px;
  height: 100px;
  border-radius: var(--circle);
  object-fit: cover;
  margin: 0 auto var(--s2);
  border: 3px solid var(--border-light);
}
.speaker-card__name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.speaker-card__role {
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ─────────────────────────────────────────
   SCHEDULE TABS + TIMELINE
───────────────────────────────────────── */
.schedule-tabs {
  display: flex;
  gap: var(--s2);
  margin-bottom: var(--s4);
  justify-content: center;
}
.schedule-tab {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  padding: 10px 28px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--pill);
  cursor: pointer;
  transition: all 0.2s;
}
.schedule-tab.active,
.schedule-tab:hover {
  color: var(--white);
  border-color: var(--orange);
  background: rgba(245,168,58,0.10);
}
.schedule-panel { display: none; }
.schedule-panel.active { display: block; }
.schedule-item {
  display: flex;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item__time {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  min-width: 80px;
  flex-shrink: 0;
}
.schedule-item__info { flex: 1; }
.schedule-item__title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.schedule-item__speaker {
  font-family: var(--f-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.60);
}

/* ─────────────────────────────────────────
   TIMELINE VERTICAL (trajetória)
───────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.12);
}
.timeline__item {
  position: relative;
  padding-bottom: var(--s6);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: var(--circle);
  background: var(--orange);
  border: 3px solid var(--navy);
}
.timeline__item--current .timeline__dot {
  width: 18px;
  height: 18px;
  left: -35px;
  box-shadow: 0 0 0 4px rgba(245,168,58,0.25);
}
.timeline__year {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.timeline__label {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 8px;
}
.timeline__stats {
  font-family: var(--f-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.timeline__desc {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.80);
}

/* ─────────────────────────────────────────
   ORG CARDS (quem faz)
───────────────────────────────────────── */
.org-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.org-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r3);
  padding: var(--s5);
  text-align: center;
  transition: transform 0.2s;
}
.org-card:hover { transform: translateY(-3px); }
.org-card__logo {
  height: 40px;
  width: auto;
  margin: 0 auto var(--s3);
  opacity: 0.80;
}
.org-card__name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.org-card__role {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--s2);
}
.org-card__text {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────────
   GALLERY GRID
───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--r2);
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: var(--s6) 0 var(--s4);
}
.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: var(--s6);
  align-items: start;
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--s4);
}
.footer__main-logo { height: 50px; width: auto; display: block; }
.footer__col-label {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
  margin-bottom: var(--s3);
}
.footer__partner-img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.70;
  transition: opacity 0.2s;
}
.footer__partner-img:hover { opacity: 1; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer__copy {
  font-family: var(--f-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.22);
}
.footer__socials { display: flex; gap: var(--s2); }
.footer__soc-link {
  width: 36px;
  height: 36px;
  border-radius: var(--circle);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.44);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__soc-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,168,58,0.08);
}

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: var(--circle);
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 25px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.09);
  box-shadow: 0 7px 26px rgba(37,211,102,0.42);
}

/* ─────────────────────────────────────────
   "COMING SOON" PLACEHOLDER
───────────────────────────────────────── */
.coming-soon {
  text-align: center;
  padding: var(--s6);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: var(--r3);
}
.coming-soon--light {
  border-color: var(--border-light);
}
.coming-soon__icon {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: var(--s2);
}
.coming-soon__text {
  font-family: var(--f-ui);
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.coming-soon--light .coming-soon__text { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Navbar → hamburger */
  .navbar__nav          { display: none; }
  .navbar__hamburger    { display: flex; }
  .navbar .btn--orange.btn--md { display: none; }

  .feature-cards         { grid-template-columns: 1fr; }
  .venue__grid           { grid-template-columns: 1fr; }
  .footer__top           { grid-template-columns: 1fr 1fr; }
  .why__grid             { grid-template-columns: 1fr 1fr; }
  .org-cards             { grid-template-columns: 1fr; }
  .pillar-cards          { grid-template-columns: 1fr; }
  .topic-grid            { grid-template-columns: repeat(2, 1fr); }
  .speaker-grid          { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-6        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner        { grid-template-columns: 1fr; gap: var(--s4); }
  .hero__col-text     { padding: var(--s5) 0 0; }
  .hero__col-visual   { padding: 0 0 var(--s5); }
  .hero__bento {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 160px;
    max-width: 100%;
  }
  .hero__bento-cell--a { grid-row: span 1; }
}

@media (max-width: 768px) {
  :root { --s7: 56px; --s8: 64px; --gutter: 18px; }

  /* Seções: padding reduzido */
  .section-header { margin-bottom: var(--s4); }
  .tier-block { padding-bottom: var(--s4); margin-bottom: var(--s4); }
  .cta-banner { padding: var(--s6) 0; }

  /* Navbar mobile — já ativado em 1024px */

  .hero__actions        { gap: var(--s2); }

  .stats                { padding: var(--s4) 0; }
  .stats__grid          { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat         { border-left: none; }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat                 { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(3),
  .stat:nth-child(4)    { border-bottom: none; }

  .why__grid            { grid-template-columns: 1fr; }
  .why-card             { padding: var(--s4); }

  .logos-row            { display: grid; grid-template-columns: 1fr 1fr; }
  .logo-tile, .logo-tile--lg { min-width: 0; height: 62px; padding: 8px 12px; }
  .logo-tile--lg img    { max-height: 38px; max-width: 100%; }
  .logo-tile img        { max-height: 34px; max-width: 100%; }

  .feature-cards        { grid-template-columns: 1fr; }
  .feature-grid-6       { grid-template-columns: 1fr; }
  .steps                { grid-template-columns: 1fr; gap: var(--s5); }
  .steps::before        { display: none; }
  .pillar-cards         { grid-template-columns: 1fr; }
  .topic-grid           { grid-template-columns: 1fr; }
  .speaker-grid         { grid-template-columns: 1fr 1fr; }
  .org-cards            { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: 1fr 1fr; }
  .gallery-grid img     { height: 160px; }

  .footer__top          { grid-template-columns: 1fr; gap: var(--s4); }

  .venue__map iframe    { height: 280px; }
}

@media (max-width: 640px) {
  .hero__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px;
  }
  .hero__bento-cell--a { display: none; }
  .speaker-grid        { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.revealed > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > :nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > :nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.revealed > :nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.revealed > :nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.revealed > :nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.revealed > :nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
