:root {
  --color-black: #101010;
  --color-graphite: #1b1b1b;
  --color-charcoal: #252525;
  --color-gray-900: #333333;
  --color-gray-700: #646464;
  --color-gray-500: #9a9a9a;
  --color-gray-200: #eeeeee;
  --color-gray-100: #f7f7f7;
  --color-white: #ffffff;
  --color-green: #008c45;
  --color-green-dark: #005c3a;
  --color-yellow: #ffd000;
  --color-blue: #285ea8;
  --color-line: rgba(16, 16, 16, 0.1);
  --shadow-soft: 0 18px 54px rgba(16, 16, 16, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
  --section-space: clamp(56px, 6vw, 88px);
  --focus-ring: 0 0 0 3px rgba(255, 208, 0, 0.38);
  font-family:
    "Barlow Condensed", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

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

.skip-link:focus {
  z-index: 100;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 20px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100vw - 32px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 22px;
  color: var(--color-white);
  background: rgba(16, 16, 16, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  transition:
    top 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  background: rgba(42, 42, 42, 0.97);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
}

.brand img {
  width: clamp(118px, 12vw, 154px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .site-nav__cta {
  margin-left: 8px;
  color: var(--color-black);
  background: var(--color-white);
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus-visible {
  color: var(--color-black);
  background: var(--color-yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-white);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-toggle__bar::before {
  transform: translateY(-7px);
}

.nav-toggle__bar::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-2px) rotate(90deg);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-green-dark);
}

.hero__image,
.hero__shade,
.hero__energy {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroBackgroundDrift 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 50, 33, 0.88) 0%, rgba(0, 83, 49, 0.7) 42%, rgba(13, 88, 66, 0.26) 100%),
    linear-gradient(0deg, rgba(16, 16, 16, 0.36), rgba(16, 16, 16, 0.06) 42%);
}

.hero__energy {
  z-index: 2;
  overflow: hidden;
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(255, 208, 0, 0.22) 22.2%, transparent 22.8% 48%, rgba(255, 255, 255, 0.13) 48.2%, transparent 48.8%),
    repeating-linear-gradient(118deg, transparent 0 92px, rgba(255, 255, 255, 0.08) 94px, transparent 96px);
  background-size:
    180% 180%,
    220px 220px;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroEnergyDrift 18s linear infinite;
}

.hero__energy::before,
.hero__energy::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero__energy::before {
  background:
    linear-gradient(100deg, transparent 0 58%, rgba(255, 208, 0, 0.2) 58.4%, transparent 61%),
    linear-gradient(128deg, transparent 0 68%, rgba(255, 255, 255, 0.14) 68.4%, transparent 70%);
  background-size:
    160% 100%,
    190% 100%;
  opacity: 0.7;
  animation: heroTraceSweep 9.5s ease-in-out infinite;
}

.hero__energy::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 208, 0, 0.2) 54%, rgba(255, 255, 255, 0.08) 64%, transparent 76%);
  opacity: 0.65;
  transform: translateX(-64%) skewX(-12deg);
  animation: heroPulse 6.2s ease-in-out infinite;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 112px 0 46px;
}

.hero__copy {
  max-width: 670px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -2px 0 18px;
}

.hero__meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero__meta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--color-yellow);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__copy h1 {
  margin: 0 0 22px;
  font-size: 4.08rem;
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero__copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.48;
}

.hero__logo-card {
  display: grid;
  justify-items: center;
  position: relative;
}

.hero__logo-card img {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.26));
  animation: heroLogoFloat 5.8s ease-in-out infinite;
  will-change: transform, filter;
}

.hero__logo-card::after {
  position: absolute;
  inset: 12% -8%;
  background: linear-gradient(112deg, transparent 36%, rgba(255, 255, 255, 0.42) 48%, transparent 60%);
  content: "";
  opacity: 0;
  transform: translateX(-36%) skewX(-10deg);
  animation: heroLogoSweep 6.8s ease-in-out infinite;
  pointer-events: none;
}

.hero__actions,
.map-callout,
.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button span {
  position: relative;
  z-index: 1;
}

.button::after {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
  content: "";
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.button--yellow::before {
  position: absolute;
  inset: 1px;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.55) 46%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  animation: buttonSheen 3.8s ease-in-out infinite;
  pointer-events: none;
}

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

.button--yellow {
  color: var(--color-black);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 1px rgba(255, 208, 0, 0.2), 0 12px 30px rgba(255, 208, 0, 0.16);
}

.button--yellow:hover {
  background: #ffe15c;
}

.button--glass {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--blue {
  color: var(--color-white);
  background: #439ad5;
  border-color: #439ad5;
  box-shadow: 0 12px 30px rgba(67, 154, 213, 0.2);
}

.button--blue:hover {
  background: #2f85c2;
  border-color: #2f85c2;
}

.button--dark {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
}

.button--dark:hover {
  background: var(--color-gray-900);
}

.button--light {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button--light:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

@keyframes heroBackgroundDrift {
  0% {
    transform: scale(1.04) translate3d(-0.8%, -0.4%, 0);
  }

  100% {
    transform: scale(1.08) translate3d(1.1%, 0.7%, 0);
  }
}

@keyframes heroEnergyDrift {
  0% {
    background-position:
      0% 50%,
      0 0;
  }

  100% {
    background-position:
      100% 50%,
      220px 0;
  }
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-64%) skewX(-12deg);
  }

  50% {
    opacity: 0.68;
    transform: translateX(54%) skewX(-12deg);
  }
}

@keyframes heroTraceSweep {
  0%,
  34% {
    background-position:
      -120% 0,
      -150% 0;
  }

  72%,
  100% {
    background-position:
      120% 0,
      150% 0;
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.26));
    transform: translate3d(0, 0, 0);
  }

  50% {
    filter:
      drop-shadow(0 28px 48px rgba(0, 0, 0, 0.32))
      drop-shadow(0 0 22px rgba(255, 208, 0, 0.2));
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes heroLogoSweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-38%) skewX(-10deg);
  }

  68% {
    opacity: 0.58;
  }

  82%,
  100% {
    opacity: 0;
    transform: translateX(38%) skewX(-10deg);
  }
}

@keyframes buttonSheen {
  0%,
  48% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

.section {
  padding: var(--section-space) 0;
}

.section--summary {
  padding-top: 48px;
  padding-bottom: clamp(36px, 4vw, 52px);
  background: var(--color-white);
}

.section--summary + .section {
  padding-top: clamp(36px, 4vw, 52px);
}

.section--muted {
  background: var(--color-gray-100);
}

.section--dark {
  color: var(--color-white);
  background: var(--color-black);
}

.section--contact {
  background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

.workshop-callout {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  font-family: "Montserrat", Arial, sans-serif;
  background:
    radial-gradient(circle at 62% 4%, rgba(162, 215, 245, 0.42), transparent 34%),
    linear-gradient(135deg, #1d5379 0%, #439ad5 34%, #244d66 62%, #081923 100%);
}

.workshop-callout::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.62), rgba(16, 16, 16, 0.22) 54%, rgba(16, 16, 16, 0.48)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    100% 100%,
    68px 68px,
    68px 68px;
  content: "";
  pointer-events: none;
}

.workshop-callout__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "logo content cta"
    "logo meta cta";
  grid-template-columns: minmax(330px, 0.58fr) minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 24px) clamp(28px, 4vw, 52px);
  align-items: center;
}

.workshop-callout__content {
  grid-area: content;
  max-width: 620px;
}

.workshop-callout__logo {
  grid-area: logo;
  width: min(390px, 100%);
  height: auto;
  justify-self: center;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  transform: scale(1.08);
  transform-origin: center;
}

.workshop-callout h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.95rem, 2.35vw, 2.55rem);
  font-style: normal;
  line-height: 1.12;
}

.workshop-callout__content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.62;
}

.workshop-callout__meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

.workshop-callout__meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.workshop-callout__meta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #8dcff4;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.workshop-callout .eyebrow {
  margin-bottom: 14px;
  color: #8dcff4;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.workshop-callout .button {
  min-height: 48px;
  gap: 12px;
  padding: 0 22px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
}

.workshop-callout__cta {
  grid-area: cta;
  justify-self: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-green);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--color-yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: 3.45rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.section-heading p:not(.eyebrow),
.summary-grid p,
.map-callout p,
.venue-layout p {
  color: var(--color-gray-700);
  font-weight: 400;
  line-height: 1.58;
}

.section--dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

#cronograma .section-heading {
  position: sticky;
  top: 118px;
}

.summary-grid,
.section-grid,
.venue-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.section--contact .contact-layout {
  grid-template-columns: 1fr;
  gap: 36px;
}

.section--contact .section-heading {
  max-width: 780px;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5vw, 54px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 26% 0%, rgba(0, 140, 69, 0.44), transparent 34%),
    linear-gradient(90deg, rgba(16, 16, 16, 0.9), rgba(37, 37, 37, 0.76) 52%, rgba(16, 16, 16, 0.96)),
    var(--color-black);
  border-radius: var(--radius);
  box-shadow: 0 28px 84px rgba(16, 16, 16, 0.18);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  pointer-events: none;
}

.contact-panel__copy,
.contact-panel .button {
  position: relative;
  z-index: 1;
}

.contact-panel .eyebrow {
  color: var(--color-yellow);
}

.contact-panel h2 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.contact-panel p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 400;
  line-height: 1.58;
}

.button--whatsapp {
  min-width: 238px;
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
  box-shadow: 0 12px 30px rgba(0, 140, 69, 0.24);
  white-space: nowrap;
}

.button--whatsapp::after {
  display: none;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.whatsapp-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.summary-grid {
  align-items: end;
}

.summary-grid p {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 1.22rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-gray-200);
  box-shadow: var(--shadow-soft);
}

.info-strip__item {
  position: relative;
  min-height: 120px;
  padding: 24px 22px;
  background: var(--color-white);
}

.info-strip__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-green);
  background: rgba(0, 140, 69, 0.08);
  border: 1px solid rgba(0, 140, 69, 0.16);
  border-radius: var(--radius);
}

.info-strip__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.info-strip dt {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
  color: var(--color-black);
  font-size: 2.28rem;
  font-style: italic;
  line-height: 1;
}

.info-strip dd {
  margin: 0 0 0 54px;
  color: var(--color-gray-700);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.42;
}

.stacked-cards,
.timeline,
.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list {
  max-width: 520px;
  grid-template-columns: 1fr;
}

.schedule-card,
.notice-card,
.hotel-card,
.contact-card,
.timeline-item {
  border-radius: var(--radius);
}

.schedule-card,
.notice-card,
.hotel-card,
.contact-card {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.schedule-card:hover,
.notice-card:hover,
.hotel-card:hover,
.contact-card:hover {
  border-color: rgba(0, 140, 69, 0.24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.schedule-card span,
.notice-card span,
.contact-card__label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-green);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-card p,
.notice-card p,
.hotel-card p,
.contact-card p,
.timeline-item p {
  margin-bottom: 0;
  color: var(--color-gray-700);
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-item time {
  color: var(--color-yellow);
  font-size: 0.96rem;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.7);
}

.event-schedule {
  display: grid;
  gap: 16px;
}

.agenda-day {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.agenda-day--featured {
  background:
    linear-gradient(135deg, rgba(0, 140, 69, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 208, 0, 0.28);
}

.agenda-day__header {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.agenda-day__header > time {
  color: var(--color-yellow);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.agenda-day__header span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.agenda-day__header h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 1.34rem;
}

.agenda-list {
  display: grid;
  margin: 0;
  padding: 8px 22px 20px;
  list-style: none;
}

.agenda-list li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-list li:first-child {
  border-top: 0;
}

.agenda-list time {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.agenda-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}

.route-highlight {
  margin-top: clamp(48px, 6vw, 82px);
}

.route-preview {
  position: relative;
  display: grid;
  min-height: clamp(250px, 26vw, 360px);
  width: 100%;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 60px);
  color: var(--color-white);
  text-align: left;
  background: #123f31;
  border: 1px solid rgba(255, 208, 0, 0.28);
  border-radius: var(--radius);
  cursor: zoom-in;
  isolation: isolate;
}

.route-preview__background,
.route-preview__veil {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.route-preview__background {
  z-index: -2;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.04);
  transition: filter 220ms ease, transform 220ms ease;
}

.route-preview__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 56, 36, 0.92), rgba(0, 56, 36, 0.64) 56%, rgba(0, 56, 36, 0.34));
}

.route-preview__content {
  display: grid;
  max-width: 700px;
  gap: 14px;
}

.route-preview__content .eyebrow {
  margin: 0;
}

.route-preview__title {
  max-width: 650px;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.12;
}

.route-preview__hint {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.route-preview:hover .route-preview__background,
.route-preview:focus-visible .route-preview__background {
  filter: blur(1px);
  transform: scale(1.07);
}

.route-preview:focus-visible {
  outline: 3px solid rgba(255, 208, 0, 0.78);
  outline-offset: 4px;
}

.schedule-card p,
.notice-card p,
.hotel-card p,
.contact-card p,
.timeline-item p {
  font-weight: 400;
  line-height: 1.58;
}

.map-callout {
  justify-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
}

.map-callout {
  background: var(--color-gray-100);
  border: 1px solid var(--color-line);
}

.map-callout div {
  max-width: 720px;
}

.map-callout h2 {
  margin-bottom: 12px;
}

.map-callout p {
  margin-bottom: 0;
}

.venue-rooms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.venue-room-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.venue-room-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.venue-room-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0), rgba(16, 16, 16, 0.86));
  content: "";
}

.venue-room-card div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.venue-room-card span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--color-yellow);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.venue-room-card h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 1.9rem;
}

.venue-room-card:hover img {
  transform: scale(1.035);
}

.venue-gallery {
  margin-top: clamp(28px, 5vw, 48px);
}

.venue-gallery__heading {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  margin-bottom: 20px;
}

.venue-gallery__heading h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
}

.venue-gallery__grid {
  display: grid;
  grid-auto-rows: minmax(178px, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.venue-gallery__item {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  padding: 0;
  color: var(--color-white);
  background: var(--color-black);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.venue-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.venue-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.venue-gallery__item::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0), rgba(16, 16, 16, 0.8));
  content: "";
}

.venue-gallery__caption,
.venue-gallery__zoom {
  position: absolute;
  z-index: 1;
}

.venue-gallery__caption {
  right: 16px;
  bottom: 14px;
  left: 16px;
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1;
}

.venue-gallery__zoom {
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.venue-gallery__zoom svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.venue-gallery__item:hover img,
.venue-gallery__item:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.04);
}

.venue-gallery__item:hover .venue-gallery__zoom,
.venue-gallery__item:focus-visible .venue-gallery__zoom {
  opacity: 1;
  transform: translateY(0);
}

.notice-grid,
.hotel-grid {
  display: grid;
  gap: 16px;
}

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

.section-heading--center {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

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

.venue-layout .hotel-grid {
  margin-top: 24px;
}

.hotel-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 700;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  background: var(--color-gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.34rem;
  font-style: italic;
}

.contact-card--whatsapp {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding-right: 76px;
}

.contact-card__icon {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 50%;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-card--whatsapp:hover .contact-card__icon,
.contact-card--whatsapp:focus-visible .contact-card__icon {
  background: var(--color-green-dark);
  transform: translateX(2px);
}

.contact-card--whatsapp p {
  padding-right: 0;
}

.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(12px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__figure {
  width: min(1080px, 100%);
  margin: 0;
}

.gallery-lightbox__figure img {
  width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
  background: var(--color-black);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox__figure figcaption {
  margin-top: 14px;
  color: var(--color-white);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: fixed;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.gallery-lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 56px;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: 20px;
}

.gallery-lightbox__nav--next {
  right: 20px;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  color: var(--color-black);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  transform: translateY(-50%) scale(1.03);
}

.gallery-lightbox svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer {
  padding: 38px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--color-black);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.footer-layout p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--color-white);
  font-style: italic;
  font-weight: 900;
}

.footer-brand img {
  width: clamp(130px, 14vw, 176px);
  height: auto;
}

.footer-event {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-event img {
  width: clamp(52px, 6vw, 76px);
  height: auto;
  flex: 0 0 auto;
}

.footer-event p {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-group {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-group span {
  color: rgba(255, 255, 255, 0.58);
  width: clamp(118px, 12vw, 158px);
  font-size: 0.82rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-group img {
  width: clamp(118px, 12vw, 158px);
  height: auto;
  max-height: 48px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--color-black);
  background: #d9d9d9;
  border-color: #d9d9d9;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-social a:first-child svg,
.footer-social a:nth-child(4) .icon-youtube__shape {
  fill: currentColor;
  stroke: none;
}

.footer-social .icon-youtube__play {
  fill: var(--color-black);
  stroke: none;
}

.footer-social a:nth-child(4):hover .icon-youtube__play,
.footer-social a:nth-child(4):focus-visible .icon-youtube__play {
  fill: #d9d9d9;
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 8px;
    visibility: hidden;
    background: rgba(16, 16, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

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

  .site-nav a,
  .site-nav .site-nav__cta {
    margin-left: 0;
    padding: 13px 12px;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid,
  .summary-grid,
  .section-grid,
  .venue-layout,
  .contact-layout,
  .contact-panel,
  .workshop-callout__inner {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
    padding: 132px 0 68px;
  }

  .hero__copy h1 {
    font-size: 3.9rem;
  }

  .hero__logo-card {
    justify-items: start;
  }

  .hero__logo-card img {
    width: min(320px, 78vw);
  }

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

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

  #cronograma .section-heading {
    position: static;
  }

  .workshop-callout__inner {
    grid-template-areas:
      "logo cta"
      "content content"
      "meta meta";
    grid-template-columns: minmax(180px, 1fr) auto;
    gap: 22px 28px;
  }

  .workshop-callout__cta {
    align-self: center;
  }

  .contact-panel .button {
    justify-self: start;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-group {
    justify-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1160px);
    --section-space: 52px;
  }

  .site-header {
    width: calc(100vw - 24px);
    min-height: 60px;
    padding: 9px 10px 9px 14px;
  }

  .brand img {
    width: 120px;
    max-height: 42px;
  }

  .hero__grid {
    gap: 24px;
    padding: 96px 0 32px;
  }

  .hero__copy h1 {
    margin-bottom: 16px;
    font-size: 2.34rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero__copy p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero__logo-card {
    justify-items: center;
  }

  .hero__logo-card img {
    width: min(220px, 68vw);
  }

  .hero__energy {
    opacity: 0.3;
  }

  .hero__actions,
  .map-callout,
  .workshop-callout__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-panel .button {
    justify-self: stretch;
  }

  .workshop-callout__inner {
    grid-template-areas:
      "logo"
      "content"
      "cta"
      "meta";
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workshop-callout__logo {
    width: min(320px, 88vw);
    justify-self: center;
  }

  .workshop-callout__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .workshop-callout__cta {
    width: 100%;
  }

  .info-strip,
  .venue-rooms,
  .venue-gallery__grid,
  .hotel-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .venue-gallery__item--large {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-gallery__item {
    min-height: 240px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .agenda-day__header,
  .agenda-list li {
    grid-template-columns: 1fr;
  }

  .agenda-day__header {
    gap: 8px;
    padding: 18px;
  }

  .agenda-list {
    padding: 6px 18px 18px;
  }

  .agenda-list li {
    gap: 5px;
    padding: 11px 0;
  }

  .route-preview {
    min-height: 300px;
  }

  .route-preview__veil {
    background: linear-gradient(90deg, rgba(0, 56, 36, 0.9), rgba(0, 56, 36, 0.62));
  }

  .agenda-list time {
    white-space: normal;
  }

  .map-callout {
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .section-heading--center {
    text-align: left;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-event {
    flex-direction: column;
  }

  .gallery-lightbox {
    padding: 58px 14px 74px;
  }

  .gallery-lightbox__figure img {
    max-height: 68vh;
  }

  .gallery-lightbox__figure figcaption {
    font-size: 1.1rem;
  }

  .gallery-lightbox__close {
    top: 12px;
    right: 12px;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 12px;
    width: calc(50vw - 22px);
    height: 46px;
    transform: none;
  }

  .gallery-lightbox__nav--prev {
    left: 14px;
  }

  .gallery-lightbox__nav--next {
    right: 14px;
  }

  .gallery-lightbox__nav:hover,
  .gallery-lightbox__nav:focus-visible {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero__image,
  .hero__energy::before,
  .hero__energy::after,
  .hero__logo-card img,
  .hero__logo-card::after,
  .button--yellow::before {
    animation: none !important;
    transform: none !important;
  }

  .hero__logo-card::after,
  .hero__energy::before,
  .hero__energy::after,
  .button--yellow::before {
    opacity: 0 !important;
  }
}
