:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --bg: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1360px; margin: 0 auto; padding: 0 1rem; }
.container-wide { max-width: 1440px; padding: 0 0.85rem; }
.narrow { max-width: 560px; }
.text-center { text-align: center; }

.site-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: flex-start; }
.logo { font-weight: 700; font-size: 1.1rem; color: var(--text); text-decoration: none; }
.logo span { color: var(--blue); }

.site-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.event-hero { padding: 2.75rem 0 3rem; color: #fff; }
.hero.event-hero.event-hero-themed {
  position: relative;
  overflow: hidden;
  background: var(--hero-from, #002f77);
  color: #fff;
  padding: 2.75rem 0 3rem;
}
.hero.event-hero.event-hero-themed:not(.event-hero-has-image) {
  background: linear-gradient(
    135deg,
    var(--hero-from, #002f77) 0%,
    var(--hero-to, #1d9500) 100%
  );
}
.event-hero-has-image {
  min-height: 520px;
  height: 520px;
  padding: 0;
  contain: layout;
}
.event-hero-landing.event-hero-has-image {
  display: block;
}
.event-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-from, #002f77);
}
.event-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--hero-from, #002f77);
}
.event-hero-expandible .event-hero-overlay {
  pointer-events: none;
}
.event-hero-bg-btn {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--hero-from, #002f77);
  cursor: zoom-in;
  display: block;
}
.event-hero-bg-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.event-hero-expand-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  pointer-events: none;
}
.event-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(var(--hero-r, 0), var(--hero-g, 47), var(--hero-b, 119), 0.8) 0%,
    rgba(var(--hero-r, 0), var(--hero-g, 47), var(--hero-b, 119), 0.45) 40%,
    rgba(var(--hero-r, 0), var(--hero-g, 47), var(--hero-b, 119), 0.15) 70%,
    rgba(var(--hero-r, 0), var(--hero-g, 47), var(--hero-b, 119), 0) 100%
  );
}
.event-hero-has-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--hero-from, #002f77);
  z-index: 3;
}
.event-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
  z-index: 2;
}
.event-hero-top {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  width: 100%;
}
.event-hero-title {
  font-size: clamp(1.35rem, 3.5vw, 2.2rem);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.event-hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.event-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  color: #fff;
}
.event-hero-badge i {
  font-size: 0.85em;
}
.event-hero-badge-primary { background: var(--event-primary, #002f77); }
.event-hero-badge-secondary { background: var(--event-secondary, #1d9500); }
.event-hero-badge-tertiary { background: #ff6b35; }
.event-hero-badge-quaternary { background: #7c3aed; }
.event-hero-has-image .event-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.event-hero-centered {
  text-align: center;
  margin: 0 auto;
}
.event-hero-inner { max-width: 900px; }
.event-hero h1 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .event-hero-has-image {
    min-height: 320px;
    height: 320px;
  }
  .event-hero-meta {
    flex-wrap: nowrap;
    gap: 6px;
    overflow: hidden;
  }
  .event-hero-badge {
    font-size: 0.72rem;
    padding: 5px 9px;
    gap: 5px;
    min-width: 0;
  }
  .event-hero-title {
    font-size: 1.25rem;
  }
}
.section-title-center {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--event-primary, #1e3a8a);
}

.site-header-compact {
  padding: 0.4rem 0;
}
.site-header-event-bar {
  padding: 0.45rem 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.header-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 0.65rem;
  min-height: 44px;
}
.header-bar-left {
  justify-self: start;
  min-width: 0;
}
.header-bar-center {
  justify-self: center;
  text-align: center;
  min-width: 0;
  padding: 0 0.15rem;
}
.header-bar-right {
  justify-self: end;
  min-width: 0;
}
.header-tagline {
  display: block;
  font-size: clamp(0.58rem, 1.6vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--event-primary, #002f77);
  line-height: 1.2;
  white-space: nowrap;
}
.btn-header-cta {
  background: var(--event-primary, #002f77);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
  border: none;
  box-shadow: none;
}
.btn-header-cta:hover { filter: brightness(0.92); }
.btn-cta-short { display: none; }
@media (max-width: 720px) {
  .btn-cta-long { display: none; }
  .btn-cta-short { display: inline; }
  .header-tagline {
    font-size: clamp(0.5rem, 2.2vw, 0.64rem);
    letter-spacing: 0.02em;
  }
  .site-header-event-bar {
    padding: 0.3rem 0;
  }
  .header-bar {
    gap: 0.35rem 0.4rem;
    min-height: 36px;
  }
  .event-header-logo {
    height: 26px;
    max-height: 26px;
    max-width: 80px;
  }
}
.header-inner-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}
.site-header-event {
  padding: 0.35rem 0;
  min-height: 0;
}
.event-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  text-decoration: none;
  line-height: 0;
  max-height: 32px;
  max-width: 130px;
  overflow: hidden;
}
.site-header-event img.event-header-logo,
.event-header-logo {
  display: block;
  height: 32px;
  max-height: 32px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.event-content-section { padding-top: 2rem; }
.event-content-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.content-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.content-block-highlight {
  border-left: 5px solid var(--event-primary, #002f77);
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}
.content-block-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--event-primary, #1e3a8a);
  letter-spacing: -0.02em;
}
.rich-content { font-size: 1.02rem; line-height: 1.75; color: #334155; }
.rich-content p { margin: 0 0 1rem; }
.rich-content p:last-child { margin-bottom: 0; }
.rich-content ul,
.rich-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.rich-content ul { list-style: disc; }
.rich-content ol { list-style: decimal; }
.rich-content li {
  margin-bottom: 0.4rem;
  display: list-item;
}
.rich-content li > .ql-ui { display: none; }
.rich-content li[data-list="bullet"] { list-style-type: disc; }
.rich-content h2, .rich-content h3 { color: #1e293b; margin: 1.25rem 0 0.5rem; }
.rich-content strong,
.rich-content b {
  color: #0f172a;
  font-weight: 700;
}
.rich-content em, .rich-content i { font-style: italic; }
.rich-content u { text-decoration: underline; }
.rich-content s, .rich-content strike, .rich-content del { text-decoration: line-through; }
.rich-content a { color: var(--event-primary, var(--blue)); }


.sponsors-section {
  text-align: center;
}
.sponsors-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sponsors-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--event-primary, #002f77);
  text-align: center;
  width: 100%;
}
.sponsors-title--institutional {
  margin-top: 2rem;
}
.sponsors-level {
  width: 100%;
  max-width: 920px;
  margin-bottom: 1.15rem;
}
.sponsors-level-title {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
}
.sponsors-level-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin: 0.35rem auto 0;
  background: linear-gradient(90deg, var(--event-primary, #002f77), var(--event-secondary, #1d9500));
}
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.35rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.sponsor-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsors-grid--commercial img {
  display: block;
  max-height: min(44vw, calc(72px * var(--sponsor-logo-mult, 1)));
  max-width: min(180px, calc(150px * var(--sponsor-logo-mult, 1)));
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
}
.sponsors-grid--apoio img {
  max-height: clamp(20px, 3.2vw, 28px);
  max-width: 88px;
  object-fit: contain;
}
.sponsors-grid--realizacao img,
.sponsors-grid--organizacao img {
  max-height: clamp(30px, 5.2vw, 40px);
  max-width: 110px;
  object-fit: contain;
}
.sponsors-realizacao-organizacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 920px;
}
.sponsors-realizacao-organizacao .sponsors-level {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sponsors-realizacao-organizacao {
    grid-template-columns: 1fr;
  }
}
.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: 1rem;
  width: 100%;
}
.sponsors-row img {
  display: block;
  max-height: 56px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: min(420px, 88%);
  margin: 2rem auto 0;
}
.section-divider-line {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--event-primary, #002f77) 15%, transparent) 15%,
    var(--event-primary, #002f77) 45%,
    var(--event-secondary, #1d9500) 55%,
    color-mix(in srgb, var(--event-secondary, #1d9500) 15%, transparent) 85%,
    transparent 100%
  );
}
.section-divider-gem {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--event-primary, #002f77) 0%, var(--event-secondary, #1d9500) 100%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--event-primary, #002f77) 12%, transparent);
}
.sponsors-section {
  padding-bottom: 1.25rem;
}
.cta-section-after-sponsors {
  padding-top: 1.5rem;
  border-top: none;
}

.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  padding: 4rem 0;
}
.hero-home h1 { font-size: 2.5rem; margin: 0 0 1rem; }
.hero .lead { font-size: 1.15rem; opacity: 0.92; max-width: 640px; }
.event-meta { opacity: 0.85; margin: 0; }
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-vip { background: #fbbf24; color: #78350f; }

.section { padding: 3rem 0; }
.section-alt { background: #fff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.prose { color: #334155; }
.muted { color: var(--muted); font-size: 0.9rem; }
.hint { color: var(--muted); font-size: 0.8rem; }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card.highlight { border-left: 4px solid var(--blue); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.steps-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.steps-4 .step h3 { font-size: 0.92rem; line-height: 1.3; }
.steps-4 .step p { font-size: 0.8rem; line-height: 1.45; }
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .steps-4 { grid-template-columns: 1fr; }
}

.event-list-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.event-list-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-list-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy, #0f172a);
}
.package-benefits {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.5;
}
.payment-options-list {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.payment-options-list li {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size: 0.925rem;
  color: #334155;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.payment-options-list li::before {
  content: "✓";
  display: inline-block;
  margin-right: 0.55rem;
  color: var(--green, #1d9500);
  font-weight: 700;
}
.step-num {
  display: inline-flex;
  width: 2rem; height: 2rem;
  align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  border-radius: 50%; font-weight: 700; margin-bottom: 0.5rem;
}

.packages-grid, .items-grid, .actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.package-card, .item-card, .action-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* —— Ofertas: pacotes e itens avulsos —— */
.section-offerings {
  padding: 3.25rem 0;
  position: relative;
}
.section-offerings-packages {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.section-offerings-items {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}
.section-offerings-payment {
  background: #fff;
}
.section-head-offerings {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.section-subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.5;
}
.section-divider--between {
  margin: 2.5rem auto 0;
}
.section-divider--between .section-divider-line {
  height: 2px;
}

.offering-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 0.25rem;
  perspective: 1200px;
}
.offering-grid--packages {
  gap: 1.5rem;
}
.offering-grid--packages .offering-card {
  flex: 0 0 272px;
  width: 272px;
  max-width: 100%;
}
.offering-grid--items .offering-card {
  flex: 0 0 232px;
  width: 232px;
  max-width: 100%;
}

.offering-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 22px 44px -18px rgba(15, 23, 42, 0.12);
  transform: translateY(0) translateZ(0);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.offering-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.offering-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.05),
    0 18px 40px rgba(15, 23, 42, 0.12),
    0 36px 72px -20px color-mix(in srgb, var(--event-primary, #002f77) 18%, transparent);
}
.offering-card--esgotado {
  border-color: rgba(148, 163, 184, 0.55);
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 60%, #e2e8f0 100%);
}
.offering-card--esgotado:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.04),
    0 12px 28px rgba(15, 23, 42, 0.08);
}
.offering-card--esgotado .offering-card-media img {
  filter: grayscale(0.35) opacity(0.82) drop-shadow(0 4px 10px rgba(15, 23, 42, 0.06));
}
.offering-card--esgotado .offering-card-title,
.offering-card--esgotado .offering-card-desc,
.offering-card--esgotado .offering-card-list {
  opacity: 0.82;
}
.offering-sold-out-ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  z-index: 3;
  transform: rotate(45deg);
  transform-origin: center;
  padding: 0.38rem 2.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    135deg,
    #94a3b8 0%,
    #64748b 42%,
    #475569 100%
  );
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  pointer-events: none;
  user-select: none;
}
.offering-sold-out-ribbon::before,
.offering-sold-out-ribbon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 6px;
  height: 6px;
  background: #334155;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.offering-sold-out-ribbon::before {
  left: 0;
  transform: rotate(-45deg);
}
.offering-sold-out-ribbon::after {
  right: 0;
  transform: rotate(45deg);
}
.offering-card-media {
  flex-shrink: 0;
  height: 128px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.offering-card--item .offering-card-media {
  height: 108px;
  padding: 0.55rem 0.75rem;
}
.offering-card-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.08));
}
.offering-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem 1.25rem;
  min-width: 0;
}
.offering-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--event-primary, #002f77);
  line-height: 1.25;
  text-align: center;
}
.offering-card--item .offering-card-title {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}
.offering-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
  text-align: center;
}
.offering-card-price {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(226, 232, 240, 0.95);
  text-align: center;
}
.offering-price-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--event-primary, #002f77);
  letter-spacing: -0.02em;
}
.offering-price-validity {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.offering-price-muted {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.section-gated-pricing {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.gated-welcome {
  margin: 0 auto 1.25rem;
  max-width: 720px;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.5;
}
.gated-welcome strong {
  color: var(--event-primary, #002f77);
}
.gated-welcome-copy {
  max-width: 760px;
  margin: 0 auto 0.5rem;
  text-align: left;
}
.gated-welcome-message {
  margin: 0 0 0.85rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}
.section-divider--welcome {
  margin: 1.75rem auto 2rem;
  max-width: 520px;
}
.section-head-offerings .section-title-center {
  margin-top: 0;
}
.gated-welcome-message:last-child {
  margin-bottom: 0;
}
.gated-welcome-message:first-child {
  font-size: 1.02rem;
  color: #334155;
}
.gated-info-note {
  max-width: 820px;
  margin: 1.75rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}
.gated-info-note p {
  margin: 0 0 0.65rem;
}
.gated-info-note p:last-child {
  margin-bottom: 0;
}
.gated-info-note--stands {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.gated-info-note--avulsos {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(148, 163, 184, 0.55);
  color: #334155;
  font-weight: 500;
}
.event-hero.gated .event-hero-content {
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 24px;
}
.badge-vip-hero-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 3;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 768px) {
  .badge-vip-hero-float {
    font-size: 0.72rem;
    padding: 0.28rem 0.65rem;
  }
}
.section-offerings-credentials {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.credentials-packages-panel {
  max-width: 820px;
  margin: 0 auto;
}
.credentials-packages-table-wrap {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.credentials-packages-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.credentials-packages-table thead {
  background: linear-gradient(90deg, var(--event-primary, #002f77) 0%, color-mix(in srgb, var(--event-primary, #002f77) 70%, var(--event-secondary, #1d9500)) 100%);
  color: #fff;
}
.credentials-packages-table th {
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.credentials-packages-table th.col-qty,
.credentials-packages-table th.col-value {
  text-align: center;
  width: 120px;
}
.credentials-packages-table td {
  padding: 0.9rem 1.1rem;
  border-top: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: middle;
}
.credentials-packages-table tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.65);
}
.credentials-packages-table tbody tr:hover {
  background: rgba(241, 245, 249, 0.95);
}
.credentials-name {
  font-weight: 600;
  color: var(--event-primary, #002f77);
}
.credentials-qty,
.credentials-value {
  text-align: center;
  font-weight: 700;
}
.credentials-value {
  color: var(--event-primary, #002f77);
}
.credentials-packages-cards {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.credentials-package-card {
  flex: 0 0 280px;
  width: 280px;
  max-width: 100%;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.credentials-package-card-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--event-primary, #002f77);
  text-align: center;
}
.credentials-package-card-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.credentials-package-card-meta div {
  text-align: center;
  padding: 0.55rem 0.4rem;
  background: #f8fafc;
  border-radius: 8px;
}
.credentials-package-card-meta dt {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
}
.credentials-package-card-meta dd {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--event-primary, #002f77);
}
@media (max-width: 640px) {
  .credentials-packages-table-wrap { display: none; }
  .credentials-packages-cards { display: flex; }
}

.section-gated-actions {
  background: #f1f5f9;
  padding-bottom: 3rem;
}
.container-gated-actions {
  text-align: center;
  max-width: 1120px;
}
.section-subtitle--center {
  margin-left: auto;
  margin-right: auto;
}
.actions-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  margin: 1.5rem auto 0;
  max-width: 100%;
}
.actions-grid--centered .action-card {
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  text-align: center;
}
.actions-grid--centered .action-card h3,
.actions-grid--centered .action-card p {
  text-align: center;
}
.action-card--media-kit-featured {
  position: relative;
  overflow: hidden;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 240px;
  padding: 1.35rem 1.25rem 1.15rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--event-primary, #002f77) 88%, #ffffff 12%),
    color-mix(in srgb, var(--event-secondary, #1d9500) 72%, #001433 28%)
  );
  box-shadow:
    0 14px 36px color-mix(in srgb, var(--event-primary, #002f77) 38%, transparent),
    0 5px 0 color-mix(in srgb, var(--event-primary, #002f77) 55%, #000000 45%),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: perspective(900px) rotateX(3deg) translateY(-6px);
  animation: media-kit-card-float 5s ease-in-out infinite;
}
.action-card--media-kit-featured::before {
  content: '';
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 58%
  );
  transform: translateX(-120%);
  animation: media-kit-shine 6s ease-in-out infinite;
  pointer-events: none;
}
.action-card--media-kit-featured:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-10px) scale(1.02);
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--event-primary, #002f77) 45%, transparent),
    0 6px 0 color-mix(in srgb, var(--event-primary, #002f77) 50%, #000000 50%),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.action-card--media-kit-featured h3,
.action-card--media-kit-featured p {
  color: #fff;
  position: relative;
  z-index: 1;
}
.action-card--media-kit-featured h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.action-card--media-kit-featured p {
  opacity: 0.92;
  font-size: 0.84rem;
  margin-bottom: 0.75rem;
}
.action-card-featured-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--event-primary, #002f77);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.action-icon--pdf {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.75rem;
  margin: 0 auto 0.65rem;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  animation: media-kit-pdf-tilt 4s ease-in-out infinite;
}
.action-icon-pdf-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.action-card-featured-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  backdrop-filter: blur(4px);
}
.action-card-featured-cta::after {
  content: '↓';
  font-size: 0.85rem;
  animation: media-kit-bounce-arrow 1.8s ease-in-out infinite;
}
@keyframes media-kit-card-float {
  0%, 100% { transform: perspective(900px) rotateX(3deg) translateY(-6px); }
  50% { transform: perspective(900px) rotateX(3deg) translateY(-11px); }
}
@keyframes media-kit-shine {
  0%, 72%, 100% { transform: translateX(-120%); }
  28% { transform: translateX(120%); }
}
@keyframes media-kit-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes media-kit-pdf-tilt {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-3px); }
}
@keyframes media-kit-bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .action-card--media-kit-featured,
  .action-card--media-kit-featured::before,
  .action-icon--pdf,
  .action-card-featured-cta::after {
    animation: none;
  }
  .action-card--media-kit-featured {
    transform: translateY(-4px);
  }
}
.payment-options-list--centered {
  align-items: center;
}
.payment-options-list--centered li {
  width: 100%;
  text-align: center;
}
.gated-contact-static.action-card {
  margin: 0;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.gated-contact-static.action-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}
.gated-contact-static-title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--event-primary, #002f77);
}
.gated-contact-static-line {
  margin: 0.25rem 0;
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.45;
  width: 100%;
}
.gated-contact-label {
  display: block;
  font-weight: 600;
  color: #64748b;
  font-size: 0.75rem;
  margin-bottom: 0.1rem;
}
.gated-contact-value {
  display: block;
  user-select: text;
  cursor: text;
  word-break: break-word;
}
.hero-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.hero-lightbox[hidden] {
  display: none;
}
.hero-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.88);
  cursor: zoom-out;
}
.hero-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.hero-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.hero-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.offering-card-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.55;
}
.offering-card-list li {
  margin-bottom: 0.35rem;
}
.offering-card-list li:last-child {
  margin-bottom: 0;
}
.offering-card:not(:has(.offering-card-media)) .offering-card-body {
  padding-top: 1.35rem;
}

@media (max-width: 900px) {
  .offering-grid--packages .offering-card {
    flex: 0 0 252px;
    width: 252px;
  }
  .offering-grid--items .offering-card {
    flex: 0 0 220px;
    width: 220px;
  }
}
@media (max-width: 640px) {
  .section-offerings { padding: 2.5rem 0; }
  .offering-grid--packages .offering-card,
  .offering-grid--items .offering-card {
    flex: 1 1 280px;
    width: auto;
    max-width: 420px;
  }
  .offering-card-media { height: 112px; }
  .offering-card:hover {
    transform: translateY(-4px);
  }
}

/* Compat: gated e legado */
.package-card:not(.offering-card),
.item-card:not(.offering-card) {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.package-card img,
.item-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}
.action-card {
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.action-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(15,23,42,0.12); }
.action-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.benefits { padding-left: 1.2rem; margin: 0.75rem 0; }
.benefits li { margin-bottom: 0.35rem; }
.price { font-size: 1.5rem; font-weight: 700; color: var(--blue); margin: 0.5rem 0 0; }

.cta-section { background: #fff; }
.cta-section-lead {
  max-width: 640px;
  margin: 0.5rem auto 0;
  line-height: 1.55;
}
.cta-access-list {
  list-style: none;
  margin: 0.85rem auto 1.25rem;
  padding: 0;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cta-access-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
}
.cta-access-list li::before {
  content: "✓";
  color: var(--event-secondary, #1d9500);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.btn-primary {
  background: var(--event-primary, var(--blue));
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.92); }
.btn-secondary { background: #e2e8f0; color: var(--text); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

@media (max-width: 720px) {
  .site-header-event-bar .btn.btn-header-cta {
    font-size: 0.75rem;
    padding: 8px 12px;
    line-height: 1.2;
    border-radius: 999px;
    font-weight: 700;
    min-height: 0;
  }
}

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,0.5); }
.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal-dialog-lead {
  max-width: 640px;
  padding: 1.25rem 1.35rem 1.1rem;
}
.modal-lead-title {
  margin: 0 2rem 0.35rem 0;
  font-size: 1.15rem;
  line-height: 1.3;
}
.modal-lead-intro {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}
.lead-modal-switch {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: #475569;
  text-align: center;
}
.lead-modal-switch-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--event-primary, #002f77);
  font-weight: 700;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lead-modal-switch-link:hover { filter: brightness(0.85); }
.form-info {
  background: #eff6ff;
  color: #1e40af;
}
.modal-close {
  position: absolute; top: 0.5rem; right: 0.65rem;
  background: none; border: none; font-size: 1.35rem; cursor: pointer; color: var(--muted);
}

.lead-form-compact .lead-field-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.45rem 0.65rem;
  align-items: center;
  margin-bottom: 0.45rem;
}
.lead-form-compact .lead-field-row[hidden] {
  display: none !important;
}
.lead-form-compact .lead-field-row label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: #334155;
  white-space: nowrap;
}
.field-required {
  color: #dc2626;
  font-weight: 700;
  margin-left: 0.12em;
}
.lead-form-compact .lead-field-control {
  min-width: 0;
}
.lead-form-compact input,
.lead-form-compact select {
  width: 100%;
  padding: 0.42rem 0.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
}
.hint-inline {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  line-height: 1.3;
}
.consent-compact {
  background: #f8fafc;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  margin: 0.5rem 0 0.65rem;
}
.checkbox-label-compact {
  gap: 0.4rem;
  align-items: flex-start;
}
.checkbox-label-compact .lgpd-text {
  font-size: 0.68rem;
  line-height: 1.35;
  color: #64748b;
}
.checkbox-label-compact input {
  width: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.btn-submit-compact {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}
@media (max-width: 520px) {
  .lead-form-compact .lead-field-row {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0.35rem 0.45rem;
  }
  .lead-form-compact .lead-field-row label {
    font-size: 0.72rem;
  }
  .modal-dialog-lead {
    padding: 1rem 1rem 0.85rem;
  }
}

.lead-form .form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.lead-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.9rem; }
.lead-form input, .lead-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.lead-form input:focus, .lead-form select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.checkbox-label { display: flex; gap: 0.5rem; align-items: flex-start; font-weight: 400; font-size: 0.85rem; }
.checkbox-label input { width: auto; margin-top: 0.2rem; }
.consent { background: #f8fafc; padding: 1rem; border-radius: 8px; }
.form-errors { background: #fef2f2; color: #991b1b; padding: 0.75rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.9rem; }
.form-success { background: #ecfdf5; color: #065f46; padding: 0.75rem; border-radius: 8px; margin-bottom: 1rem; }
.lead-success-box { margin-bottom: 0.75rem; }
.lead-magic-link-label {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
}
.lead-magic-link-wrap {
  margin: 0 0 0.75rem;
  text-align: center;
}
.lead-magic-link {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--event-primary, #002f77);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.lead-magic-link:hover { filter: brightness(0.92); }
.lead-magic-hint {
  text-align: center;
  margin: 0 0 1rem;
  font-size: 0.8rem;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.icon-mail { font-size: 3rem; margin-bottom: 1rem; }

/* Accordion — Local do evento / O evento */
.event-accordion-wrap {
  margin-top: 0.25rem;
}
.event-accordion {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--event-primary, #002f77) 22%, #e2e8f0);
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}
.event-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: none;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--event-primary, #002f77) 12%, #fff),
    color-mix(in srgb, var(--event-secondary, #1d9500) 8%, #fff)
  );
  color: var(--event-primary, #002f77);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.event-accordion-trigger:hover {
  filter: brightness(0.98);
}
.event-accordion-trigger-text {
  flex: 1 1 auto;
}
.event-accordion-chevron {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--event-secondary, #1d9500);
  border-bottom: 2px solid var(--event-secondary, #1d9500);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.15rem;
}
.event-accordion.is-open .event-accordion-chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}
.event-accordion-panel-inner {
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid #e2e8f0;
}
.event-accordion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.85rem;
}
.event-accordion-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--event-primary, #002f77) 10%, #f8fafc);
  color: var(--event-primary, #002f77);
  font-size: 0.82rem;
  font-weight: 600;
}
.event-accordion-intro {
  margin-bottom: 0.85rem;
}
.venue-info {
  margin-bottom: 0.85rem;
}
.venue-info--with-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 148px);
  gap: 1rem;
  align-items: start;
}
.venue-info-text {
  min-width: 0;
}
.venue-info-name {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}
.venue-info-address {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}
.venue-info-map {
  margin: 0.45rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.venue-info-map a,
.venue-map-link {
  color: var(--event-primary, #002f77);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.venue-map-link-sep {
  color: #94a3b8;
}
.venue-map-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.venue-map-thumb:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--event-primary, #002f77) 35%, #e2e8f0);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.venue-map-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.venue-map-thumb-badge {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--event-primary, #002f77);
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}
.venue-map-expanded {
  margin: 0 0 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}
.venue-map-expanded iframe {
  display: block;
  width: 100%;
  height: min(320px, 52vw);
  min-height: 220px;
  border: 0;
}
@media (max-width: 640px) {
  .venue-info--with-map {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .venue-info-text {
    width: 100%;
  }
  .venue-info-map {
    justify-content: center;
  }
  .venue-map-thumb {
    width: min(220px, 100%);
    max-width: 220px;
    margin-inline: auto;
  }
}
.venue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.55rem;
}
.venue-gallery-thumb {
  display: block;
  padding: 0;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  cursor: zoom-in;
  aspect-ratio: 1;
}
.venue-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.venue-gallery-all-btn {
  margin-top: 0.75rem;
}
.venue-lightbox,
.venue-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
}
.venue-lightbox[hidden],
.venue-gallery-modal[hidden] {
  display: none;
}
.venue-lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.venue-lightbox-backdrop,
.venue-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.88);
  cursor: zoom-out;
}
.venue-lightbox-close,
.venue-gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.venue-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: min(960px, 100%);
  max-height: min(85vh, 100%);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.venue-gallery-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.venue-gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 100%);
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}
.venue-gallery-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
}
.venue-gallery-modal-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--event-primary, #002f77);
}
.venue-gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.65rem;
  padding: 1rem 1.15rem 1.15rem;
}
.venue-gallery-modal-grid .venue-gallery-thumb {
  aspect-ratio: 1;
}
