:root {
  --color-wine-950: #2f0800;
  --color-wine-900: #3a0703;
  --color-wine-800: #540a05;
  --color-red-700: #460f0d;
  --color-red-600: #c33125;
  --color-orange-500: #f26a1b;
  --color-gold-500: #ffc20d;
  --color-gold-600: #f0a500;
  --color-cream: #fff0ca;
  --color-peach: #ffd6bd;
  --color-white: #ffffff;
  --color-black: #020100;
  --font-main: "Montserrat", Arial, sans-serif;
  --container: 1080px;
  --section-space: 60px;
  --section-space-compact: 40px;
  --fs-h1: clamp(2.4rem, 5vw, 4.2rem);
  --fs-h2: clamp(2rem, 3.6vw, 2.2rem);
  --fs-h3: clamp(1.18rem, 2vw, 1.55rem);
  --fs-body: 19px;
  --fs-body-md: 18px;
  --fs-body-sm: 17px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-feature: 30px 8px 30px 8px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.24);
  --motion-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-distance: 22px;
  --reveal-duration: 560ms;
  --site-header-height: 88px;
}

* {
  box-sizing: border-box;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition:
    opacity var(--reveal-duration) var(--motion-soft),
    transform var(--reveal-duration) var(--motion-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="fade"].is-revealed {
  transform: none;
}

[data-reveal="slide-left"] {
  transform: translateX(calc(var(--reveal-distance) * -1.1));
}

[data-reveal="slide-left"].is-revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal="scale"].is-revealed {
  transform: scale(1);
}

@media (max-width: 759px) {
  :root {
    --reveal-distance: 16px;
    --reveal-duration: 480ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-wine-900);
  color: var(--color-white);
  font-family: var(--font-main);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.3em;
  margin-bottom: 15px;
}

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

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

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

button,
summary {
  font: inherit;
}

.container {
  width: min(100% - 60px, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 60px, var(--container));
  margin-inline: auto;
}

.section-dark {
  background: var(--color-wine-950);
}

.section-red {
  background: var(--color-red-700);
}

.section-black {
  background: #030100;
}

.section-gold {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 194, 13, 0.95) 0 18%, transparent 19%),
    linear-gradient(115deg, #fff7df 0%, #ffe7ad 48%, #ffc20d 100%);
  color: var(--color-wine-950);
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--color-wine-950);
  background: var(--color-gold-500);
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(148, 22, 22, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% - 0px);
  left: 0;
  right: 0;
  display: none;
  padding: 18px;
  border-radius: 0 0 14px 14px;
  background: rgba(58, 7, 3, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.nav-menu.is-open {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.nav-menu a:not(.nav-cta) {
  display: block;
  padding: 6px 0;
  text-align: center;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  cursor: pointer;
  transition: background 280ms var(--motion-soft), transform 280ms var(--motion-soft);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.035);
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: clamp(240px, 65vw, 360px);
  min-height: 42px;
  border: 0;
  text-align: center;
  color: var(--color-wine-950);
  background: linear-gradient(180deg, var(--color-gold-500), var(--color-gold-600));
  border-radius: 999px;
  padding: 10px 22px;
  white-space: normal;
  font-size: calc(1em + 2px);
  line-height: 1.05;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 280ms var(--motion-soft), box-shadow 280ms var(--motion-soft), filter 280ms var(--motion-soft);
}

.nav-cta:hover {
  transform: scale(1.035);
  filter: brightness(1.12);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("../img/background_hero_jornada2027.webp");
  background-size: cover;
  background-position: center top;
}

.hero-video {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #2b0904;
  background-image: url("../img/background_hero_jornada2027.webp");
  background-size: cover;
  background-position: center center;
  padding-block: 40px;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.02) brightness(0.66);
  pointer-events: none;
  backface-visibility: hidden;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 5, 2, 0.62) 0%, rgba(72, 10, 4, 0.28) 22%, rgba(56, 7, 3, 0.16) 50%, rgba(52, 7, 3, 0.28) 78%, rgba(24, 3, 2, 0.66) 100%),
    radial-gradient(circle at center, rgba(109, 17, 6, 0.08) 0%, rgba(54, 8, 4, 0.34) 52%, rgba(12, 1, 1, 0.74) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(75, 8, 2, 0.14), rgba(28, 2, 0, 0.72));
}

.hero-content {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 30px;
  padding: 54px 0 60px;
  text-align: center;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 0;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 360px;
  margin-bottom: 10px;
}

.program-hero .hero-overlay {
  background:
    radial-gradient(circle at center, rgba(255, 194, 13, 0.1), transparent 0 26%),
    linear-gradient(90deg, rgba(32, 4, 2, 0.82) 0%, rgba(78, 9, 3, 0.58) 48%, rgba(26, 2, 1, 0.86) 100%);
}

.program-hero-content {
  gap: 12px;
  padding: 60px 0px;
}

.program-hero-logo {
  max-width: min(100%, 260px);
  margin-bottom: 4px;
}

.program-hero-title {
  position: relative;
  margin: 0;
  color: var(--color-gold-500);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 8vw, 2rem);
  font-weight: 900;
  line-height: 1.3em;
}

.program-hero-title::after {
  content: "";
  display: block;
  width: min(160px, 42vw);
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #b53d2c 0%, #ffc20d 48%, #d3782f 100%);
}

.program-hero-subtitle {
  max-width: 720px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.hero-video-logo {
  width: 100%;
  max-width: min(100%, 260px);
  margin-bottom: 0px;
}

.hero-video-alert {
  width: min(100%, 480px);
}

.hero-video-intro {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
}

.event-date {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.3em;
  margin-bottom: 20px;
}

.hero-video-date {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.3em;
  margin-bottom: 10px;
}

.event-date span {
  display: block;
  color: var(--color-orange-500);
}

.hero-video-date span {
  display: block;
  color: var(--color-orange-500);
}

.hero-video-signature {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.hero-video-signature p {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero-video-signature-logo {
  width: min(100%, 140px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-media {
    display: none;
  }

  .hero-video-overlay {
    background:
      linear-gradient(90deg, rgba(35, 5, 2, 0.72) 0%, rgba(72, 10, 4, 0.34) 22%, rgba(56, 7, 3, 0.24) 50%, rgba(52, 7, 3, 0.34) 78%, rgba(24, 3, 2, 0.78) 100%),
      radial-gradient(circle at center, rgba(109, 17, 6, 0.1) 0%, rgba(54, 8, 4, 0.38) 52%, rgba(12, 1, 1, 0.8) 100%);
  }
}

.launch-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 60px;
  background: #a70202;
}

.launch-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  gap: 40px;
  padding: 0 27px;
  animation: launch-ticker-scroll 20s linear infinite;
  will-change: transform;
}

.launch-ticker-track span {
  flex: 0 0 auto;
  color: #fff4cf;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.launch-ticker-track strong {
  color: #ffd14c;
}

@keyframes launch-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 27px));
  }
}

.button,
.speaker-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: clamp(240px, 65vw, 520px);
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  text-align: center;
  white-space: normal;
  text-transform: uppercase;
  font-size: calc(1.1em - 2px);
  font-weight: 900;
  line-height: 1.05;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 280ms var(--motion-soft), box-shadow 280ms var(--motion-soft), filter 280ms var(--motion-soft);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.035);
  filter: brightness(1.12);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.button-primary {
  color: var(--color-wine-950);
  background: linear-gradient(180deg, var(--color-gold-500), var(--color-gold-600));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.button-red {
  color: var(--color-gold-500);
  background: linear-gradient(180deg, #b21620, #8d1016);
}

.button-black {
  color: var(--color-gold-500);
  background: var(--color-black);
}

.button-small {
  min-height: 42px;
  padding: 10px 22px;
  font-size: calc(1.1em - 2px);
}

.speakers,
.city-video {
  padding: var(--section-space) 0;
}

.black-experiences {
  overflow: hidden;
}

.speakers h2 {
  max-width: 1080px;
  margin: 0 auto 24px;
  margin-bottom: 45px;
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 900;
}

.black-experiences h2 {
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 900;
}

.city-video h2 {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
  font-size: var(--fs-h2);
  line-height: 1.2em;
  font-weight: 900;
}

.speakers h2 {
  max-width: 940px;
}

.speakers h2 span{
  color: #ffc20d;
}

.black-experiences h2 span {
  color: #ecbd30;
}

.carousel {
  position: relative;
}

.showcase-carousel {
  width: calc(100vw - max(16px, (100vw - var(--container)) / 2));
  max-width: none;
}

.black-experiences .showcase-carousel {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.black-experiences-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 960px;
  margin-inline: auto;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(236px, 291px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 0 0 12px;
  cursor: grab;
  touch-action: pan-y;
}

.carousel-track.is-looping,
.carousel-track.is-auto-playing,
.carousel-track.is-dragging {
  scroll-snap-type: none;
}

.carousel-track.is-dragging {
  cursor: grabbing;
}

.carousel-track.is-dragging .image-card {
  user-select: none;
}

.black-experiences .carousel-track {
  padding-right: 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.image-card {
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius-feature);
  background: linear-gradient(90deg, #d93925, #f47b1a);
  box-shadow: var(--shadow-soft);
  transition: transform 300ms var(--motion-soft), filter 300ms var(--motion-soft), box-shadow 300ms var(--motion-soft), border-color 300ms var(--motion-soft);
}

.black-experiences .image-card {
  height: 100%;
  border: 1px solid #d3782f;
  border-radius: 60px 6px 30px 6px;
  background: transparent;
  box-shadow: none;
}

.black-experiences .experience-card {
  position: relative;
  min-height: 100%;
  aspect-ratio: 3 / 4;
  isolation: isolate;
  border-radius: 30px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #100d0c;
  box-shadow: none;
}

.black-experiences .experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 44%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(64, 10, 4, 0.18), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.image-card:hover,
.image-card:focus-within {
  transform: translateY(-6px);
  filter: brightness(1.06);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.black-experiences .image-card:hover,
.black-experiences .image-card:focus-within {
  border-color: var(--color-gold-500);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.image-card img {
  width: 100%;
  aspect-ratio: 291 / 285;
  object-fit: cover;
  -webkit-user-drag: none;
}

.black-experiences .experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
  transition: transform 420ms var(--motion-soft), filter 420ms var(--motion-soft);
}

.black-experiences .experience-card:hover img,
.black-experiences .experience-card:focus-within img {
  transform: scale(1.07);
  filter: saturate(0.98) contrast(1.06) brightness(0.82);
}

.image-card h3 {
  margin: 0;
  padding: 18px 18px 6px;
  color: var(--color-white);
  text-align: center;
  font-size: 1em;
  line-height: 1.12;
  font-weight: 900;
}

.image-card p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--color-white);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.2;
}

.black-experiences .image-card h3 {
  padding: 0;
  background: transparent;
  color: var(--color-white);
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 1.25rem);
  line-height: 1.2em;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.black-experiences .image-card p {
  display: block;
  min-height: 40px;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.34;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.experience-card-copy {
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.experience-card-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 10px;
  color: #3a0703;
  background: #ffc20d;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

@media (min-width: 680px) {
  .black-experiences-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .black-experiences-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.carousel-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.carousel-btn {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0 0 3px;
  color: var(--color-wine-950);
  background: var(--color-white);
  font-size: 1.9rem;
  line-height: 0.8;
  cursor: pointer;
  transition: transform 280ms var(--motion-soft), opacity 280ms var(--motion-soft), filter 280ms var(--motion-soft), box-shadow 280ms var(--motion-soft);
}

.carousel-btn:not(:disabled):hover,
.carousel-btn:not(:disabled):focus-visible {
  transform: translateY(-3px) scale(1.035);
  filter: brightness(1.12);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.speaker-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.speaker-card {
  flex: 0 1 100%;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px 12px 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-feature);
  background: rgba(81, 7, 5, 0.55);
  transition: transform 320ms var(--motion-soft), border-color 320ms var(--motion-soft), background 320ms var(--motion-soft), box-shadow 320ms var(--motion-soft), filter 320ms var(--motion-soft);
}

.speaker-card.is-clickable {
  cursor: pointer;
}

.speaker-card:hover,
.speaker-card:focus-within {
  transform: translateY(-7px);
  border-color: var(--color-gold-500);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 194, 13, 0.16), transparent 44%),
    rgba(96, 8, 6, 0.72);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
  filter: brightness(1.04);
}

.speaker-card:focus-within {
  outline: 2px solid var(--color-gold-500);
  outline-offset: 4px;
}

.speaker-card > img {
  width: min(100%, 150px);
  aspect-ratio: 173 / 194;
  object-fit: contain;
  border-radius: 50px 20px;
  transition: transform 320ms var(--motion-soft), box-shadow 320ms var(--motion-soft);
}

.speaker-card:hover > img,
.speaker-card:focus-within > img {
  transform: scale(1.035);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.speaker-card h3 {
  margin: 0;
  color: var(--color-gold-500);
  text-transform: uppercase;
  font-size: 0.86rem;
  line-height: 1.3em;
  font-weight: 900;
}

.speaker-card p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.speaker-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.speaker-country img {
  width: 28px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
  background: transparent;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.speaker-card button {
  color: var(--color-wine-950);
  background: linear-gradient(180deg, var(--color-gold-500), var(--color-gold-600));
}

.speaker-card .speaker-button {
  width: 100%;
  max-width: 200px;
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid #d3782f;
  border-radius: 999px;
  color: #d3782f;
  background: transparent;
  box-shadow: none;
  filter: none;
  text-transform: uppercase;
  font-size: calc(0.95rem - 2px);
  font-weight: 500;
  letter-spacing: 0;
  transition: background-color 340ms var(--motion-soft), color 340ms var(--motion-soft), border-color 340ms var(--motion-soft);
}

.speaker-card:hover .speaker-button,
.speaker-card:focus-within .speaker-button,
.speaker-card .speaker-button:hover,
.speaker-card .speaker-button:focus-visible {
  background: #d3782f;
  color: #fff;
  transform: none;
  filter: none;
  box-shadow: none;
}

.speaker-card .speaker-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.speakers .button {
  display: flex;
  width: max-content;
  margin: 28px auto 0;
}

.city-video {
  text-align: center;
}

.city-video p {
  margin: 0 auto;
  margin-bottom: 35px;
  color: var(--color-orange-500);
  font-size: 22px;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-soft);
}

.video-frame iframe,
.video-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background:
    linear-gradient(rgba(47, 8, 0, 0.18), rgba(47, 8, 0, 0.5)),
    url("../img/thumbnail_video_jornada_sul-americana_2026.jpg") center / cover;
}

.video-placeholder::after {
  content: "Assistir vídeo";
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.video-play {
  width: clamp(76px, 17vw, 96px);
  aspect-ratio: 1.42;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ff0000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  transition: transform 280ms var(--motion-soft), background-color 280ms var(--motion-soft), filter 280ms var(--motion-soft);
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--color-white);
}

.video-placeholder:hover .video-play,
.video-placeholder:focus-visible .video-play {
  transform: translateY(-3px) scale(1.035);
  background: #cc0000;
  filter: brightness(1.12);
}

.pricing h2,
.faq h2 {
  margin: 0;
  text-align: center;
  color: var(--color-red-600);
  font-size: var(--fs-h2);
  line-height: 1.02;
  font-weight: 900;
}

.section-location {
  padding: var(--section-space) 0;
  background: url("../img/background-hotel-serrano-jornada2027.webp");
  background-size: cover;
  background-position: center;
}

.venue-grid {
  display: grid;
  gap: 25px;
}

.venue-photo {
  width: min(100%, 420px);
  margin-inline: auto;
}

.venue-copy {
  align-self: center;
  text-align: center;
}

.venue-copy h2 {
  margin: 0 0 12px;
  font-size: var(--fs-h2);
  line-height: 1.2em;
  font-weight: 900;
}

.venue-copy h2 span,
.accent {
  color: var(--color-orange-500);
}

.venue-copy p {
  margin: 0 auto 14px;
  max-width: 450px;
  font-size: var(--fs-body);
}

.venue-copy .button {
  display: flex;
  width: max-content;
  line-height: 1.2em;
  margin-inline: auto;
}

.transfer-combo {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

.experience {
  padding: var(--section-space) 0;
  background: url("../img/background_planos_jornada_2027.webp");
  background-size: cover;
  background-position: center;
}

.experience h2 {
  margin: 0 0 24px;
  text-align: center;
  color: #ecbd30;
  font-size: var(--fs-h2);
  font-weight: 900;
}

.mobile-plan-comparison {
  display: none;
}

.comparison {
  max-width: 960px;
  margin-inline: auto;
  display: grid;
  gap: 8px;
  background: transparent;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  column-gap: 8px;
}

.comparison-head > *,
.comparison-row > * {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
}

.comparison-head {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2em;
}

.comparison-head span {
  grid-column: 1 / -1;
  color: var(--color-gold-500);
  background: rgba(42, 0, 0, 0.42);
  border-radius: 18px;
}

.comparison-head strong {
  background: linear-gradient(135deg, #ba1f20, #f47420);
  border: 1px solid rgba(204, 49, 39, 0.76);
  border-bottom: 0;
  border-radius: 60px 10px 0 0;
}

.comparison-head .black {
  background: linear-gradient(135deg, #000, #ab1719);
}

.comparison-head em {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2em;
}

.comparison-row {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(35, 2, 0, 0.62);
}

.comparison-row:nth-child(odd) {
  background: rgba(126, 13, 15, 0.42);
}

.comparison-row span {
  grid-column: 1 / -1;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  font-weight: 800;
}

.comparison-row b {
  border-top: 1px solid rgba(176, 28, 30, 0.5);
  color: var(--color-white);
  background: rgba(34, 0, 0, 0.38);
  font-weight: 500;
}

.comparison-row .comparison-check {
  color: var(--color-gold-500);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 900;
}

.comparison-row:nth-child(2) b {
  margin: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--color-white);
  background: #b62328;
  font-size: 1.32rem;
  font-weight: 900;
}

.comparison-row:nth-child(2) b:last-child {
  background: var(--color-black);
}

.comparison-row small {
  display: block;
  margin-top: 3px;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 759px) {
  .comparison-desktop {
    display: none;
  }

  .mobile-plan-comparison {
    display: block;
    max-width: 430px;
    margin-inline: auto;
  }

  .plan-tabs {
    --plan-tab-pad: 5px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: var(--plan-tab-pad);
    border-radius: 999px;
    background: linear-gradient(180deg, #120302 0%, #080100 100%);
    box-shadow:
      inset 0 4px 14px rgba(0, 0, 0, 0.72),
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 1px rgba(0, 0, 0, 0.55);
    isolation: isolate;
  }

  .plan-tabs-thumb {
    position: absolute;
    top: var(--plan-tab-pad);
    left: var(--plan-tab-pad);
    z-index: 0;
    width: calc((100% - var(--plan-tab-pad) * 2) / 2);
    height: calc(100% - var(--plan-tab-pad) * 2);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc04a 0%, #ff9228 38%, #ef6f18 72%, #d45510 100%);
    box-shadow:
      0 0 22px rgba(255, 130, 45, 0.72),
      0 0 8px rgba(255, 170, 70, 0.45),
      0 5px 16px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 360ms var(--motion-soft);
    pointer-events: none;
  }

  .plan-tabs[data-active="black"] .plan-tabs-thumb {
    transform: translateX(100%);
  }

  @media (prefers-reduced-motion: reduce) {
    .plan-tabs-thumb {
      transition: none;
    }
  }

  .plan-tab {
    position: relative;
    z-index: 1;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 12px 10px;
    color: rgba(210, 210, 210, 0.62);
    background: transparent;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 320ms var(--motion-soft), text-shadow 320ms var(--motion-soft);
  }

  .plan-tab.is-active {
    color: var(--color-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  .plan-tab:focus-visible {
    outline: 2px solid var(--color-gold-500);
    outline-offset: 2px;
  }

  .plan-panel {
    margin-top: 18px;
  }

  .plan-panel[hidden] {
    display: none;
  }

  .plan-card {
    overflow: hidden;
    border: 1px solid rgba(204, 49, 39, 0.55);
    border-radius: 28px 8px 28px 8px;
    background: rgba(35, 2, 0, 0.72);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    transition: transform 300ms var(--motion-soft), border-color 300ms var(--motion-soft), box-shadow 300ms var(--motion-soft), filter 300ms var(--motion-soft);
  }

  .plan-card:hover,
  .plan-card:focus-within {
    transform: translateY(-5px);
    border-color: var(--color-gold-500);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
    filter: brightness(1.04);
  }

  .plan-card-header {
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 18px 16px 14px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white);
  }

  .plan-card-pass .plan-card-header {
    background: linear-gradient(135deg, #ba1f20, #f47420);
  }

  .plan-card-black .plan-card-header {
    background: linear-gradient(135deg, #000, #ab1719);
  }

  .plan-card-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .plan-card-name {
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
  }

  .plan-card-name em {
    font-style: italic;
  }

  .plan-card-vagas {
    margin: 0;
    padding: 12px 16px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-wine-950);
    background: var(--color-white);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.02em;
  }

  .plan-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .plan-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 12px 16px;
    border-top: 1px solid rgba(176, 28, 30, 0.42);
    color: var(--color-white);
    font-size: 0.92rem;
    line-height: 1.25;
    font-weight: 600;
  }

  .plan-feature > span:first-child {
    flex: 1 1 auto;
    text-align: left;
  }

  .plan-note {
    display: block;
    margin-top: 4px;
    color: var(--color-gold-500);
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
  }

  .plan-status-check {
    flex: 0 0 auto;
    color: var(--color-gold-500);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 900;
  }

  .plan-status-no {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
  }

  .plan-value {
    flex: 0 0 auto;
    color: var(--color-gold-500);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: capitalize;
  }

  .plan-feature-excluded {
    color: rgba(255, 255, 255, 0.42);
  }

  .plan-feature-excluded .plan-status-no {
    color: rgba(255, 255, 255, 0.32);
  }
}

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

.black-experiences > .container > p {
  max-width: 680px;
  margin: 0px auto 45px;
  color: var(--color-orange-500);
  text-align: center;
  font-size: var(--fs-body-md);
  line-height: 1.5em;
}

.black-alert {
  margin: 40px auto 0 !important;
  color: var(--color-gold-500) !important;
  font-size: clamp(1.5rem, 5vw, 2rem) !important;
  line-height: 1.3em !important;
  font-weight: 700;
}

.pricing {
  position: relative;
  overflow: hidden;
  padding: var(--section-space) 0;
  text-align: center;
  background: url("../img/background_alerta_lote.webp");
  background-position: center;
  background-size: cover;
}

.pricing h2 {
  color: #b6222c;
  text-transform: uppercase;
}

.pricing > .container > p {
  max-width: 620px;
  margin: 10px auto 40px;
  font-size: var(--fs-body);
  font-weight: 800;
  line-height: 1.5em;
}

.price-grid {
  display: grid;
  gap: 22px;
  max-width: 820px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(120, 20, 15, 0.6);
  border-radius: 60px 6px 30px 6px;
  background: var(--color-cream);
  box-shadow: var(--shadow-soft);
  transition: transform 320ms var(--motion-soft), box-shadow 320ms var(--motion-soft), filter 320ms var(--motion-soft);
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.3);
  filter: brightness(1.03);
}

.price-card h3 {
  margin: 0;
  padding: 18px 14px;
  border-radius: 58px 5px 0 0;
  color: var(--color-white);
  background: linear-gradient(135deg, #b81d24, #f4781d);
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2em;
}

.price-card-black h3 {
  background: linear-gradient(135deg, #000, #b21620);
}

.price-card h3 em {
  display: block;
  font-size: 1.8rem;
}

.price-from {
  margin: 22px 0 0;
  color: rgba(45, 13, 0, 0.72);
  font-size: clamp(1rem, 4vw, 1.18rem);
  line-height: 1.2;
}

.price-from s {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(45, 13, 0, 0.78);
}

.price-card p {
  margin: 10px 0 0;
  color: #a91b22;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.price-card small {
  color: var(--color-wine-950);
  font-size: 0.56em;
}

.price-card span {
  display: block;
  margin: 6px 0 20px;
  font-size: 1.18rem;
}

.price-card .button {
  margin: 0 18px 22px;
  line-height: 1.2em;
  font-weight: 700;
}

.price-card-black .price-seal {
  position: absolute;
  z-index: 2;
  top: -40px;
  right: -50px;
  width: clamp(86px, 20vw, 140px);
  height: auto;
  pointer-events: none;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  max-width: 820px;
  margin: 36px auto 0;
  padding: 18px 26px;
  border-radius: 999px;
  background: rgba(255, 240, 202, 0.92);
  border: 1px solid rgba(120, 20, 15, 0.22);
  box-shadow: 0 14px 32px rgba(70, 15, 13, 0.18);
  backdrop-filter: blur(4px);
}

.payment-methods-label {
  color: var(--color-red-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.payment-methods-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b81d24, #f4781d);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(70, 15, 13, 0.25);
  transition: transform 280ms var(--motion-soft), box-shadow 280ms var(--motion-soft), filter 280ms var(--motion-soft);
}

.payment-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(70, 15, 13, 0.3);
  filter: brightness(1.05);
}

.payment-chip:nth-child(2) {
  background: linear-gradient(135deg, #2f0800, #6a1410);
}

.payment-chip:nth-child(3) {
  background: linear-gradient(135deg, #00a47a, #00d18f);
  color: #06231b;
}

.payment-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 559px) {
  .payment-methods {
    border-radius: 28px;
    padding: 16px 18px;
    gap: 10px;
  }

  .payment-methods-label {
    width: 100%;
    text-align: center;
  }

  .payment-chip {
    padding: 7px 14px;
    font-size: 0.88rem;
  }
}

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

.container-faq {
  width: 100%;
  max-width: 860px;
}

.faq h2 {
  margin-bottom: 35px;
}

.faq-list {
  display: grid;
}

details {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 194, 13, 0.7);
}

summary {
  position: relative;
  list-style: none;
  padding: 14px 32px 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--color-gold-500);
  font-size: 1.2rem;
  font-style: normal;
}

details[open] summary::after {
  content: "-";
}

.faq details[open] > :not(summary) {
  animation: faqContentIn 240ms ease both;
}

.faq details.is-closing > :not(summary) {
  animation: faqContentOut 180ms ease both;
}

details p {
  margin: 0;
  padding: 0 0 16px;
  font-size: 16px;
  line-height: 1.5em;
}

.faq a {
  color: #ffc20d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@keyframes faqContentIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqContentOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq details[open] > :not(summary),
  .faq details.is-closing > :not(summary) {
    animation: none;
  }
}

.footer {
  text-align: center;
  border-top: 1px solid #4b2f2f;
}

.footer .container {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: var(--section-space-compact) 0;
}

.footer img {
  width: 100%;
  max-width: 260px;
  margin-bottom: 15px;
}

.footer p {
  margin: 0;
  font-size: 0.82rem;
}

.footer small {
  display: block;
  padding: 14px;
  color: var(--color-wine-950);
  background: var(--color-white);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-white);
  background: #25d366;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 300ms ease, filter 300ms ease, box-shadow 300ms ease;
  animation: wapp-bounce 2s ease 0s infinite normal none running;
  transform: scale(1);
  will-change: transform;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.07);
  filter: brightness(1.1) saturate(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@keyframes wapp-bounce {
  0%,
  80%,
  100% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.1);
  }
}

.speaker-dialog {
  width: min(100% - 32px, 780px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: #1f2937;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.speaker-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.speaker-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid #e5e7eb;
}

.speaker-dialog-heading {
  flex: 1;
}

.speaker-dialog h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.1;
}

#dialog-description {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
}

.speaker-dialog-content {
  max-height: min(70vh, 640px);
  padding: 24px;
  overflow-y: auto;
}

.speaker-dialog-content p,
.speaker-dialog-content li {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
}

.speaker-dialog-content p + p,
.speaker-dialog-content ul,
.speaker-dialog-content ol {
  margin-top: 16px;
}

.speaker-dialog-content strong {
  color: #111827;
}

.speaker-dialog-content ul,
.speaker-dialog-content ol {
  margin-bottom: 0;
  padding-left: 22px;
}

.speaker-dialog-content li + li {
  margin-top: 8px;
}

.form-dialog {
  width: min(100% - 28px, 860px);
}

.form-dialog-content {
  min-height: 360px;
}

.form-dialog-loading {
  margin: 0 0 16px;
  color: #6b7280;
  text-align: center;
  font-weight: 700;
}

.form-dialog-loading[hidden],
.rd-form-slot[hidden] {
  display: none;
}

.rd-form-slot {
  min-height: 320px;
}

.dialog-close {
  width: 34px;
  height: 34px;
  border: 0;
  min-width: 34px;
  min-height: 34px;
  border-radius: 8px;
  padding: 0;
  color: #374151;
  background: #f3f4f6;
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
  transition: transform 280ms var(--motion-soft), background 280ms var(--motion-soft), filter 280ms var(--motion-soft);
}

.dialog-close:hover,
.dialog-close:focus-visible {
  transform: translateY(-3px) scale(1.035);
  background: #e5e7eb;
  filter: brightness(1.04);
}

@media (min-width: 768px) {
  .speaker-dialog-header {
    padding: 28px 32px 20px;
  }

  .speaker-dialog-content {
    padding: 28px 32px 32px;
  }
}

@media (max-width: 759px) {
  .button {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: calc(1.1em - 2px);
  }

  .price-card .button {
    margin-left: auto;
    margin-right: auto;
  }

  .container-faq {
    padding: 0 25px;
  }

  .footer .button {
    max-width: clamp(300px, 65vw, 520px);
    padding: 10px;
    line-height: 1.3;
  }

  .nav-menu.is-open {
    max-height: calc(100dvh - var(--site-header-height));
    overflow-y: auto;
  }

  .black-experiences-grid {
    max-width: 420px;
    gap: 16px;
  }

  .black-experiences .experience-card {
    min-height: min(118vw, 430px);
    aspect-ratio: 4 / 5;
    border-radius: 26px 8px;
  }

  .experience-card-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .black-experiences .image-card h3 {
    font-size: 1.22rem;
    line-height: 1.12;
  }

  .black-experiences .image-card p {
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .experience-card-badge {
    top: 12px;
    right: 12px;
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .workshop-tabs {
    max-width: 100%;
    padding-top: 4px;
  }

  .workshop-tablist {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: auto;
    gap: 9px;
    margin: 0 0 18px;
    padding: 4px 0 8px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .workshop-tab {
    width: 100%;
    min-height: 64px;
    padding: 9px 10px;
    font-size: 0.7rem;
    line-height: 1.04;
    scroll-snap-align: unset;
  }

  .workshop-tab small {
    margin-top: 3px;
    font-size: 0.82em;
  }

  .workshop-tab:hover,
  .workshop-tab:focus-visible,
  .workshop-tab.is-active {
    transform: translateY(-1px);
  }

  .workshop-panel {
    padding: 20px 16px;
    border-radius: 26px 8px;
  }

  .workshop-panel h3 {
    font-size: 1.18rem;
  }

  .workshop-list li {
    padding: 13px 14px 13px 38px;
    font-size: 0.93rem;
  }

  .workshop-list li::before {
    left: 14px;
    top: 18px;
    width: 10px;
    height: 10px;
  }

  .program-hero {
    min-height: min(72dvh, 480px);
  }

  .program-hero-content {
    padding: 54px 0;
  }

  .hero-logo.program-hero-logo {
    max-width: min(100%, 260px);
  }

  .program-hero-title {
    font-size: clamp(2.1rem, 12vw, 3.3rem);
  }

  .program-hero-subtitle {
    max-width: 340px;
    font-size: 0.98rem;
  }
}

@media (max-width: 430px) {
  .nav {
    padding: 10px 0 12px;
    font-size: 0.76rem;
  }

  .nav-cta {
    max-width: 100%;
    padding-inline: 18px;
  }

  .hero {
    place-items: start center;
  }

  .hero-video {
    place-items: center;
    padding-block: 42px;
  }

  .hero-video-media {
    object-position: 62% center;
    transform: scale(1.08);
    filter: saturate(0.92) contrast(1.02) brightness(0.6);
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(30, 5, 4, 0.54) 0%, rgba(55, 8, 4, 0.26) 24%, rgba(43, 6, 3, 0.36) 54%, rgba(18, 2, 2, 0.72) 100%),
      radial-gradient(circle at center, rgba(120, 21, 7, 0.12) 0%, rgba(54, 8, 4, 0.32) 46%, rgba(10, 1, 1, 0.78) 100%);
  }

  .hero-content {
    align-content: start;
    gap: 16px;
    padding: 60px 0px;
  }

  .hero-video-content {
    align-content: center;
    gap: 14px;
  }

  .hero-logo {
    width: 100%;
    max-width: 282px;
  }

  .hero-video-logo {
    width: 100%;
    max-width: 200px;
  }

  .hero-video-alert {
    width: min(100%, 340px);
  }

  .hero-video-intro {
    font-size: 1.2rem;
    line-height: 1.4em;
  }

  .event-date {
    font-size: 1.3rem;
  }

  .hero-video-date {
    max-width: 320px;
    font-size: 1.24rem;
  }

  .hero-video-signature {
    gap: 8px;
  }

  .hero-video-signature p {
    font-size: 0.92rem;
  }

  .hero-video-signature-logo {
    width: min(100%, 142px);
  }

  .workshop-tab {
    min-height: 60px;
    padding-inline: 8px;
    font-size: 0.66rem;
  }

  .hero .button {
    max-width: 100%;
    font-size: calc(1rem - 2px);
    line-height: 1.2em;
  }

  .launch-ticker {
    min-height: 56px;
  }

  .launch-ticker-track {
    gap: 34px;
    padding: 0 17px;
    animation-duration: 16s;
  }

  .launch-ticker-track span {
    font-size: 0.9rem;
  }

  .speakers h2,
  .city-video h2,
  .black-experiences h2,
  .experience h2,
  .pricing h2,
  .faq h2,
  .venue-copy h2 {
    font-size: 1.6rem;
    line-height: 1.08;
  }

  .speaker-grid {
    max-width: 100%;
  }

  .city-video p,
  .venue-copy p,
  .pricing > .container > p,
  details p {
    font-size: 16px;
  }

  .showcase-carousel {
    width: calc(100% + 30px);
    margin-right: -30px;
    overflow: hidden;
  }

  .carousel-track {
    grid-auto-columns: 236px;
    padding-right: 30px;
  }

  .image-card p {
    font-size: 0.96rem;
  }

  .transfer-combo {
    max-width: 240px;
    margin-top: 30px
  }

  .speaker-card h3 {
    font-size: 0.88rem;
  }

  .speaker-card p {
    font-size: 0.9rem;
  }

  .city-video p {
    margin: -8px 0 22px;
  }

  .video-frame {
    margin-bottom: 26px;
  }

  .price-card-black .price-seal {
    top: -30px;
    right: -35px;
    width: 120px;
  }

}

@media (min-width: 560px) {
  .nav-cta {
    width: auto;
    max-width: none;
    white-space: nowrap;
  }

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

  .speaker-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (min-width: 760px) {
  .nav {
    min-height: 48px;
    justify-content: center;
    padding: 8px 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu a:not(.nav-cta) {
    text-align: left;
  }

  .hero-logo {
    width: min(100%, 360px);
  }

  .venue-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 46px 64px;
  }

  .venue-photo {
    margin-left: auto;
  }

  .venue-copy {
    text-align: left;
  }

  .venue-copy p {
    margin: 0 0 14px;
  }

  .venue-copy .button {
    margin-inline: 0;
  }

  .transfer-media {
    order: 3;
  }

  .venue-grid .venue-copy:last-child {
    order: 4;
  }

  .comparison {
    gap: 0;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1.25fr 1fr 1fr;
    column-gap: 12px;
  }

  .comparison-head span,
  .comparison-row span {
    grid-column: auto;
    background: transparent;
    border-radius: 0;
  }

  .comparison-head span {
    font-size: 1.55rem;
  }

  .comparison-head strong {
    padding: 20px 10px;
  }

  .comparison-row {
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }

  .comparison-row:nth-child(odd) {
    background: transparent;
  }

  .comparison-row:nth-child(odd) > * {
    background: rgba(126, 13, 15, 0.42);
  }

  .comparison-row span {
    color: var(--color-white);
  }

  .comparison-row b {
    border-top: 0;
    border-left: 1px solid rgba(204, 49, 39, 0.55);
    border-right: 1px solid rgba(204, 49, 39, 0.55);
    background: rgba(34, 0, 0, 0.42);
  }

  .comparison-row:last-child b {
    border-bottom: 1px solid rgba(204, 49, 39, 0.55);
  }

  .comparison-row:last-child b:nth-child(2) {
    border-radius: 0 0 0 8px;
  }

  .comparison-row:last-child b:nth-child(3) {
    border-radius: 0 0 8px 0;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
  }

}

@media (min-width: 1024px) {
  .speakers,
  .city-video {
    padding-block: var(--section-space);
  }

  .speaker-grid {
    gap: 24px;
  }

  .speaker-card {
    flex-basis: calc((100% - 72px) / 4);
  }

  .carousel-track {
    grid-auto-columns: 291px;
    gap: 30px;
  }
}

/* Programação original recuperada do arquivo before-cleanup */
.section-light {
  background: var(--color-white);
  color: var(--color-wine-950);
}

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

.workshops h2,
.schedule h2,
.pricing h2,
.sponsors h2,
.faq h2 {
  margin: 0;
  text-align: center;
  color: var(--color-red-600);
  font-size: var(--fs-h2);
  line-height: 1.2em;
  font-weight: 900;
}

.workshops h2 {
  max-width: 900px;
  margin-inline: auto;
}

.workshop-tabs {
  max-width: 960px;
  margin: 0 auto;
}

.workshop-tablist {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  margin: 0 0 24px;
  padding: 0 0 6px;
  background: transparent;
}

.workshop-tablist::-webkit-scrollbar {
  display: none;
}

.workshop-tab {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px 11px;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.08;
  scroll-snap-align: center;
  cursor: pointer;
  transition:
    transform 240ms var(--motion-soft),
    filter 240ms var(--motion-soft),
    box-shadow 240ms var(--motion-soft);
}

.workshop-tab:nth-child(1) {
  background: linear-gradient(90deg, #8f140d 0%, #c33125 100%);
}

.workshop-tab:nth-child(2) {
  background: linear-gradient(90deg, #8f140d 0%, #c33125 100%);
}

.workshop-tab:nth-child(3) {
  background: linear-gradient(90deg, #8f140d 0%, #c33125 100%);
}

.workshop-tab:nth-child(4) {
  background: linear-gradient(90deg, #8f140d 0%, #c33125 100%);
}

.workshop-tab:nth-child(5) {
  background: linear-gradient(90deg, #8f140d 0%, #c33125 100%);
}

.workshop-tab:nth-child(6) {
  background: linear-gradient(90deg, #8f140d 0%, #c33125 100%);
}

.workshop-tab small {
  display: block;
  margin-top: 4px;
  font-size: 0.9em;
  font-weight: 900;
  opacity: 0.9;
  text-transform: none;
}

.workshop-tab:hover,
.workshop-tab:focus-visible,
.workshop-tab.is-active {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.08) saturate(1.06);
  outline: 0;
}

.workshop-panel {
  overflow: hidden;
  border: 1px solid rgba(211, 120, 47, 0.55);
  border-radius: 30px 8px 30px 8px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(255, 194, 13, 0.08), transparent 34%),
    linear-gradient(145deg, #7a100a 0%, #460f0d 48%, #2f0800 100%);
  box-shadow: 0 20px 42px rgba(47, 8, 0, 0.2);
  animation: workshop-panel-in 340ms var(--motion-soft);
}

.workshop-panel[hidden] {
  display: none;
}

@keyframes workshop-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workshop-panel h3 {
  margin: 0 0 18px;
  color: var(--color-gold-500);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.workshop-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 8px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 13, 0.16);
}

.workshop-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold-500);
  box-shadow: 0 0 0 5px rgba(255, 194, 13, 0.2);
}

.workshop-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.workshop-actions .button {
  width: min(100%, 330px);
}

@media (min-width: 760px) {
  .workshop-tablist {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .workshop-actions .button {
    width: auto;
  }
}

@media (max-width: 759px) {
  .workshop-tabs {
    max-width: 100%;
    padding-top: 0;
  }

  .workshop-tablist {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: auto;
    gap: 8px;
    overflow: visible;
    margin: 0 0 18px;
    padding: 0 0 8px;
    scroll-snap-type: none;
  }

  .workshop-tab {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 8px 10px;
    font-size: 0.73rem;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
    scroll-snap-align: unset;
  }

  .workshop-tab small {
    margin-top: 2px;
    font-size: 0.84em;
    line-height: 1.08;
  }

  .workshop-tab:hover,
  .workshop-tab:focus-visible,
  .workshop-tab.is-active {
    transform: none;
  }

  .workshop-panel {
    padding: 20px 16px;
    border-radius: 26px 8px;
  }

  .workshop-panel h3 {
    font-size: 1.18rem;
  }

  .workshop-list li {
    padding: 13px 14px 13px 38px;
    font-size: 0.93rem;
  }

  .workshop-list li::before {
    left: 14px;
    top: 18px;
    width: 10px;
    height: 10px;
  }
}

.section-subtitle {
  margin: 10px 0 30px;
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
}

.schedule-day {
  margin: 0 auto 60px;
  width: 100%;
  max-width: 960px;
}

.schedule-day h3 {
  margin: 0;
  padding: 15px;
  color: var(--color-white);
  background: #dd3b27;
  text-align: center;
  text-transform: uppercase;
  font-size: 19px;
}

.schedule-table {
  display: grid;
  gap: 6px;
  overflow-x: auto;
  padding-top: 6px;
}

.schedule-row {
  min-width: 960px;
  display: grid;
  grid-template-columns: 108px repeat(5, 1fr);
  gap: 6px;
}

.schedule-row > * {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--color-wine-950);
  background: var(--color-peach);
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.3;
}

.schedule-row time {
  color: var(--color-white);
  background: #ef4e3f;
  font-weight: 900;
}

.schedule-row time span {
  font-size: 0.76em;
  text-transform: uppercase;
}

.schedule-row b {
  margin-top: 4px;
  color: var(--color-red-700);
  text-transform: uppercase;
}

.schedule-row.featured > div {
  color: var(--color-wine-950);
  background: #ffd3b7;
}

.schedule-row .span-5 {
  grid-column: span 5;
}

.schedule .button {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

@media (max-width: 759px) {
  .schedule-day {
    margin-bottom: 34px;
  }

  .schedule-day h3 {
    padding: 16px 14px;
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .schedule-table {
    overflow: visible;
    gap: 16px;
  }

  .schedule-row {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 12px 28px rgba(47, 8, 0, 0.1);
  }

  .schedule-row > * {
    min-height: auto;
    padding: 18px 16px;
    font-size: 0.98rem;
  }

  .schedule-row time {
    min-height: 54px;
  }

  .schedule-row .span-5 {
    grid-column: auto;
  }

  .schedule .button {
    width: min(100%, 330px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .workshop-panel {
    animation: none;
  }
}

