:root {
  --bg: #edf6f4;
  --surface: #ffffff;
  --surface-alt: #e4f0ee;
  --surface-dark: #0a2d38;
  --surface-dark-alt: #12576d;
  --text: #16272b;
  --text-soft: #526a66;
  --text-on-dark: #f4fbf9;
  --brand: #12576d;
  --brand-strong: #0a3b4b;
  --brand-accent: #16806d;
  --brand-soft: rgba(18, 87, 109, 0.12);
  --line: rgba(18, 87, 109, 0.14);
  --success: #16806d;
  --shadow: 0 22px 48px rgba(16, 50, 47, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 92px;
  --heading-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 87, 109, 0.08), transparent 24rem),
    linear-gradient(180deg, #fbfffd 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 113, 110, 0.12);
  box-shadow: 0 12px 30px rgba(16, 50, 47, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong,
.section-heading h2,
.section-heading h3,
.hero h1,
.info-card h3,
.event-card h3,
.resource-card h3,
.certificate-card h3,
.site-footer h2 {
  font-family: var(--heading-font);
}

.brand__text strong {
  font-size: 1.05rem;
}

.brand__text span:last-child {
  color: #526a66;
  font-size: 0.82rem;
}

.nav-toggle,
.submenu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(16, 50, 47, 0.08);
}

.nav-toggle span {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin-inline: auto;
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.5rem);
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu,
.submenu,
.footer-links,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  display: grid;
  gap: 0.35rem;
}

.menu > li > a,
.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-family: var(--heading-font);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
}

.menu > li > a:hover,
.submenu-toggle:hover,
.submenu a:hover {
  background: rgba(16, 113, 110, 0.08);
  color: #073946;
}

.menu > li:last-child > a {
  background: rgba(16, 113, 110, 0.1);
  color: #073946;
}

.menu > li:last-child > a:hover {
  background: #073946;
  color: #ffffff;
}

.submenu {
  display: none;
  padding: 0.25rem 0 0.4rem 0.75rem;
}

.has-submenu.is-open .submenu {
  display: grid;
  gap: 0.25rem;
}

.submenu a,
.nav-disabled {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-soft);
}

.nav-disabled {
  color: rgba(82, 106, 102, 0.74);
  cursor: default;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  overflow: clip;
}

.shirt-hero {
  min-height: calc(100svh - var(--header-height));
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 26%, rgba(23, 137, 127, 0.12), transparent 23rem),
    radial-gradient(circle at 16% 18%, rgba(242, 201, 76, 0.16), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 54%, #eef6f2 100%);
  color: var(--text);
}

/* Modificador: hero com imagem de fundo — para reverter:
   1. Remover shirt-hero--photo da section
   2. Remover o style="background-image:..." da section
   3. Remover o div.hero__overlay do HTML */
.shirt-hero--photo {
  background-color: #0a2d38;
  background-image: url('../../images/banners/banner_audax_bento_30102025_f4.jpg');
  background-size: cover;
  background-position: center;
  color: #f4fbf9;
}

/* Desabilita camadas decorativas que cobrem a foto */
.shirt-hero--photo::before,
.shirt-hero--photo::after {
  display: none;
}

.shirt-hero--photo .shirt-hero__scene {
  display: none;
}

/* Overlay escuro para legibilidade — z-index negativo fica acima do bg da section mas abaixo do conteúdo */
.shirt-hero--photo .hero__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 41, 51, 0.25) 0%, rgba(8, 41, 51, 0.6) 100%),
    linear-gradient(90deg, rgba(8, 41, 51, 0.55) 0%, transparent 65%);
}

.shirt-hero--photo .shirt-hero__content,
.shirt-hero--photo .eyebrow,
.shirt-hero--photo .hero__lead,
.shirt-hero--photo .shirt-hero__text {
  color: #f4fbf9;
}

.shirt-hero--photo .eyebrow {
  opacity: 0.8;
}

.shirt-hero--photo .shirt-hero__product {
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.45);
}

.shirt-hero::before,
.shirt-hero::after,
.shirt-hero__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shirt-hero::before {
  content: "";
  z-index: -3;
  background:
    repeating-linear-gradient(168deg, rgba(6, 57, 70, 0.045) 0 1px, transparent 1px 4.5rem),
    linear-gradient(112deg, transparent 0 53%, rgba(16, 113, 110, 0.08) 53% 53.18%, transparent 53.18%),
    linear-gradient(118deg, transparent 0 62%, rgba(49, 163, 105, 0.12) 62% 62.28%, transparent 62.28%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 82%);
  opacity: 0.8;
}

.shirt-hero::after {
  content: "";
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(238, 246, 242, 0.88)),
    radial-gradient(ellipse at 66% 100%, rgba(15, 107, 83, 0.1), transparent 42%);
}

.shirt-hero__scene {
  z-index: -1;
  background:
    linear-gradient(165deg, transparent 0 60%, rgba(7, 57, 70, 0.08) 60% 60.16%, transparent 60.16%),
    radial-gradient(ellipse at 78% 72%, rgba(10, 61, 72, 0.08), transparent 28rem);
}

.shirt-hero__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(2.8rem, 8vw, 6.4rem);
}

.shirt-hero__product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: auto;
  padding: clamp(0.55rem, 1.4vw, 0.85rem);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 2rem 4rem rgba(16, 50, 47, 0.12);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 0.18s ease-out;
}

.shirt-hero__card {
  display: block;
  width: min(100%, 45rem);
}

.shirt-hero__card img {
  width: 100%;
  height: auto;
  border-radius: 0.45rem;
}

@media (max-width: 520px) {
  .shirt-hero__product {
    padding: 0.45rem;
  }
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-color: #2c181c;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(18, 87, 109, 0.38), rgba(8, 41, 51, 0.82)),
    linear-gradient(120deg, rgba(8, 41, 51, 0.2), rgba(8, 41, 51, 0.74));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  color: var(--text-on-dark);
}

.shirt-hero__content {
  padding: 0;
  max-width: 42rem;
  color: var(--text);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.8;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.7rem, 9vw, 5.8rem);
  line-height: 0.94;
}

.hero__lead,
.section-heading p {
  max-width: 65ch;
}

.hero__lead {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.shirt-hero__text {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
}

.hero__actions,
.certificate-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.shirt-hero .hero__actions {
  margin-top: 1.8rem;
}

.shirt-hero .button--ghost {
  background: #ffffff;
  color: var(--brand);
  border-color: rgba(18, 87, 109, 0.16);
  box-shadow: 0 12px 24px rgba(16, 50, 47, 0.08);
}

.hero-event-links {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-event-card {
  display: grid;
  gap: 0.25rem;
  min-height: 8.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.13);
  color: #f4fbf9;
  box-shadow: 0 18px 34px rgba(8, 41, 51, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-event-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-event-card__label {
  color: rgba(244, 251, 249, 0.72);
  font-family: var(--heading-font);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-event-card strong {
  font-family: var(--heading-font);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.1;
}

.hero-event-card span:last-child {
  color: rgba(244, 251, 249, 0.84);
  font-size: 0.94rem;
  line-height: 1.35;
}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.2rem 0 1.5rem;
}

.certificate-emitter-wrap > summary {
  list-style: none;
}

.certificate-emitter-wrap > summary::-webkit-details-marker {
  display: none;
}

.certificate-emitter-wrap > summary {
  cursor: pointer;
}

.certificate-emitter {
  overflow: hidden;
  margin-top: 1.25rem;
}

#certificado-emissor {
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.certificate-jump {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 28px rgba(18, 87, 109, 0.26);
}

.button--primary:hover {
  background: var(--brand-strong);
}

.button--highlight {
  background: var(--brand-accent);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(22, 128, 109, 0.25);
}

.button--highlight:hover {
  background: #0f6f5f;
}

.button--ghost,
.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button--secondary {
  color: var(--brand);
  background: var(--surface-alt);
  border-color: rgba(18, 87, 109, 0.14);
}

.section {
  position: relative;
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.embed-section {
  padding-top: 3rem;
}

.pricing-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid rgba(18, 87, 109, 0.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pricing-card__header {
  padding: 1.5rem 2rem 1.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card__header-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.pricing-card__header-text .eyebrow {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.2rem;
}

.pricing-card__header-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-card__items {
  padding: 0.5rem 0;
}

.pricing-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  transition: background 0.15s ease;
}

.pricing-card__item:not(:last-child) {
  border-bottom: 1px solid rgba(18, 87, 109, 0.07);
}

.pricing-card__item:hover {
  background: rgba(18, 87, 109, 0.03);
}

.pricing-card__name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--brand-strong);
}

.pricing-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted, #6b7f82);
  margin-top: 0.1rem;
}

.pricing-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-accent);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.pricing-card__footer {
  padding: 0.85rem 2rem;
  background: rgba(18, 87, 109, 0.04);
  border-top: 1px solid rgba(18, 87, 109, 0.08);
  font-size: 0.8rem;
  color: var(--text-muted, #6b7f82);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 87, 109, 0.12);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.embed-frame {
  width: 100%;
  border: 0;
  display: block;
  background: #ffffff;
  min-height: min(78svh, 980px);
}

@media (max-width: 699px) {
  .embed-section {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }

  .embed-section > .container {
    width: min(100% - 1rem, 1180px);
  }

  .embed-section .section-heading {
    margin-bottom: 0.8rem;
  }

  .embed-section .section-heading h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .embed-wrap {
    border-radius: 8px;
    margin-inline: -0.15rem;
  }

  .embed-frame {
    min-height: 82svh;
  }
}

.section--light {
  background: transparent;
}

.reservation-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 87, 109, 0.08), transparent 18rem),
    linear-gradient(180deg, #fbfffd 0%, #edf6f4 100%);
}

.reservation-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.reservation-showcase {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(0.55rem, 1.8vw, 0.85rem);
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(18, 87, 109, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reservation-showcase__card {
  display: block;
  width: min(100%, 31rem);
}

.reservation-showcase__card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.reservation-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 87, 109, 0.12);
  box-shadow: var(--shadow);
}

.reservation-heading {
  margin-bottom: 1.3rem;
}

.reservation-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.reservation-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
}

.reservation-alert--success {
  background: rgba(22, 128, 109, 0.12);
  color: #0f6f5f;
}

.reservation-alert--error {
  background: rgba(170, 45, 45, 0.1);
  color: #8b1e1e;
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid--compact {
  grid-template-columns: minmax(0, 1fr) 8rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-field label {
  color: #0a3b4b;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.9rem;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(18, 87, 109, 0.18);
  border-radius: 0.9rem;
  background: #ffffff;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(18, 87, 109, 0.12);
}

.reservation-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(22, 128, 109, 0.22), transparent 20rem),
    linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-dark-alt) 100%);
  color: var(--text-on-dark);
}

#hotel-parceiro {
  background:
    linear-gradient(180deg, rgba(8, 33, 41, 0.62), rgba(8, 33, 41, 0.84)),
    linear-gradient(120deg, rgba(18, 87, 109, 0.48), rgba(8, 33, 41, 0.52)),
    url("/images/hospedagem/hotel-bem-te-vi.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section--highlight {
  background:
    linear-gradient(135deg, rgba(18, 87, 109, 0.96), rgba(22, 128, 109, 0.94)),
    var(--brand);
  color: #fff;
}

#calendario {
  background:
    radial-gradient(circle at top right, rgba(39, 153, 131, 0.24), transparent 22rem),
    linear-gradient(180deg, #12576d 0%, #0a3b4b 100%);
}

.section--event {
  background:
    radial-gradient(circle at 16% 12%, rgba(104, 211, 189, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 32%, rgba(242, 201, 76, 0.14), transparent 18rem),
    linear-gradient(180deg, #16806d 0%, #0a3b4b 100%);
  color: var(--text-on-dark);
}

#brm200-10102026 {
  background:
    radial-gradient(circle at top right, rgba(93, 184, 165, 0.18), transparent 24rem),
    linear-gradient(180deg, #12576d 0%, #082933 100%);
}

.section--challenge {
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 201, 76, 0.18), transparent 19rem),
    radial-gradient(circle at 88% 18%, rgba(104, 211, 189, 0.22), transparent 22rem),
    linear-gradient(180deg, #0f6f5f 0%, #0a2d38 100%);
}

#participacao-detalhes {
  background:
    radial-gradient(circle at center top, rgba(39, 153, 131, 0.2), transparent 22rem),
    linear-gradient(180deg, #0f4a5d 0%, #082933 100%);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
}

.section-heading h3 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.quick-grid,
.cards-grid,
.supporters-grid,
.hotel-layout,
.footer-grid,
.split {
  display: grid;
  gap: 1.25rem;
}

.panel,
.event-card,
.info-card,
.resource-card,
.certificate-card,
.price-card,
.supporter-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.panel--accent {
  background: linear-gradient(160deg, rgba(18, 87, 109, 0.98), rgba(22, 128, 109, 0.94));
  color: #fff;
}

.panel--link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 10rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.panel--link:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
}

.panel__kicker,
.text-link {
  color: var(--brand);
  font-weight: 700;
}

.cards-grid--3,
.supporters-grid {
  grid-template-columns: 1fr;
}

.event-card,
.resource-card,
.price-card {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card--completed {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 244, 0.96));
  border: 1px solid rgba(18, 87, 109, 0.14);
}

.event-card--completed::after {
  content: attr(data-status-label);
  position: absolute;
  top: 1.2rem;
  right: -3.25rem;
  z-index: 1;
  min-width: 13.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #12576d, #16806d);
  color: #f4fbf9;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(18, 87, 109, 0.22);
  transform: rotate(34deg);
  transform-origin: center;
  white-space: nowrap;
  pointer-events: none;
}

.event-card--completed .event-card__date {
  color: var(--brand);
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
}

.badge--muted {
  background: rgba(18, 87, 109, 0.1);
}

.badge--success {
  background: rgba(36, 112, 74, 0.16);
  color: var(--success);
}

.event-card__date {
  margin: 0.2rem 0 0.8rem;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.text-link--disabled {
  color: #7a7276;
}

.split {
  align-items: start;
}

.event-layout {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: start;
}

.event-main,
.event-side {
  min-width: 0;
}

.event-facts {
  display: grid;
  gap: 0.85rem;
  margin: 1.7rem 0;
}

.event-facts div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.event-facts span,
.event-hotel .eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(244, 251, 249, 0.72);
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-facts strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.25;
}

.event-included-card {
  margin: 1.7rem 0;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(22, 128, 109, 0.18));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  color: rgba(244, 251, 249, 0.9);
}

.event-included-card__heading {
  margin-bottom: 0.75rem;
}

.event-included-card .eyebrow {
  color: rgba(244, 251, 249, 0.72);
  margin-bottom: 0.25rem;
}

.event-included-card h3 {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.1;
}

.event-included-card p {
  margin: 0;
}

.event-included-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.event-included-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.event-included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.12);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.event-hotel {
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.event-hotel__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.event-hotel__content {
  padding: 1.35rem;
}

.event-hotel .eyebrow {
  color: var(--brand);
}

.event-hotel address {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--text-soft);
}

.route-block {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.route-heading {
  margin-bottom: 1rem;
}

.route-embed {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.route-embed iframe {
  display: block;
  width: 100%;
  height: min(72svh, 700px);
  min-height: 520px;
  border: 0;
}

.info-card {
  padding: 1.6rem;
  background: var(--surface);
  color: var(--text);
}

.info-card--dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--brand);
}

.section--dark .check-list li::before,
.section--highlight .check-list li::before {
  background: #68d3bd;
}

.check-list--spaced {
  margin-top: 1.5rem;
}

.eligibility,
.certificate-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.note-block,
.note-inline {
  border-radius: 1rem;
}

.note-block {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
}

.note-inline {
  display: inline-block;
  margin: 0;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
}

.hotel-layout table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

#hotel-parceiro .hotel-layout {
  grid-template-columns: 1fr;
}

#hotel-parceiro .info-card {
  max-width: 38rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hotel-layout th,
.hotel-layout td {
  padding: 0.85rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(18, 87, 109, 0.14);
}

.hotel-layout th {
  color: var(--brand);
}

.certificate {
  display: grid;
  gap: 1.5rem;
}

.certificate-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.certificate-card__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.8rem;
}

.supporters-grid {
  gap: 1rem;
}

.supporter-card {
  display: grid;
  place-items: center;
  gap: 0.9rem;
  min-height: 8.5rem;
  padding: 1.2rem;
  text-align: center;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(228, 240, 238, 0.95));
  border: 1px solid rgba(18, 87, 109, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supporter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(16, 50, 47, 0.16);
}

.supporter-card span {
  font-family: var(--heading-font);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.1;
  color: var(--brand);
}

.supporter-card__logo {
  display: block;
  width: 100%;
  max-width: 10rem;
  max-height: 4.5rem;
  object-fit: contain;
}

.site-footer {
  padding: 3rem 0;
  background:
    radial-gradient(circle at top left, rgba(39, 153, 131, 0.18), transparent 18rem),
    linear-gradient(180deg, #12576d 0%, #082933 100%);
  color: #f4fbf9;
  font-family: var(--heading-font);
}

.footer-grid section {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.site-footer p,
.footer-links li {
  margin: 0 0 0.55rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover {
  color: #8ee7d3;
}

.footer-note {
  color: rgba(244, 251, 249, 0.72);
}

.fade-in {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .shirt-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
  }

  .shirt-hero__content {
    order: 1;
  }

  .shirt-hero__product {
    order: 2;
  }

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

@media (min-width: 700px) {
  .quick-grid,
  .hotel-layout,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-grid--compact {
    grid-template-columns: minmax(0, 1fr) 8rem;
  }

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

  .event-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .menu > li {
    position: relative;
  }

  .menu > li > a,
  .submenu-toggle {
    width: auto;
    padding: 0.75rem 1rem;
  }

  .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 15rem;
    padding: 1rem 0.5rem 0.5rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(16, 50, 47, 0.12);
    border: 1px solid rgba(16, 113, 110, 0.12);
  }

  .has-submenu:hover .submenu,
  .has-submenu.is-open .submenu {
    display: grid;
  }

  .quick-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .reservation-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(26rem, 1.05fr);
  }

  .quick-grid .panel:first-child {
    grid-row: span 2;
  }

  .cards-grid--3,
  .supporters-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .event-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  }

  .certificate-card {
    grid-template-columns: auto 1fr auto;
  }

  .supporters-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .shirt-hero__product {
    transform: none;
  }
}
