:root {
  --blue: #075eeb;
  --blue-deep: #073d9e;
  --navy: #071a3d;
  --yellow: #ffb800;
  --yellow-soft: #fff4c6;
  --ink: #111318;
  --muted: #6f7480;
  --line: #e7e9ee;
  --surface: #f7f8fb;
  --white: #ffffff;
  --black: #171717;
  --success: #129c5b;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 14px 36px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 34px 90px rgba(15, 24, 48, 0.16);
  --content: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.content-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.eyebrow,
.hero-overline {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--center {
  text-align: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.footer-nav a:focus-visible,
.text-arrow-link:focus-visible,
.preview-button:focus-visible,
.carousel-arrow:focus-visible,
.carousel-tab:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(7, 94, 235, 0.35);
  outline-offset: 4px;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(7, 94, 235, 0.23);
}

.button--primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 18px 36px rgba(7, 94, 235, 0.28);
}

.button--outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 19, 24, 0.18);
  backdrop-filter: blur(8px);
}

.button--outline:hover {
  border-color: var(--ink);
}

.button--large {
  min-height: 54px;
  padding: 15px 24px;
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 850;
}

.text-arrow-link span {
  transition: transform 0.2s ease;
}

.text-arrow-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
}

.site-header__inner {
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.main-nav a,
.text-link {
  position: relative;
  color: #30343c;
  font-size: 0.9rem;
  font-weight: 760;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions .button {
  min-height: 44px;
  padding-inline: 18px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 10px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  padding: 14px 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 50px rgba(16, 24, 40, 0.12);
}

.mobile-panel nav {
  display: grid;
  gap: 4px;
}

.mobile-panel nav > a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 760;
}

.mobile-panel .button {
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 850px;
  padding-top: var(--header-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #fbfcff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(7, 94, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 94, 235, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(900px) rotateX(61deg) scale(1.6) translateY(-10%);
  transform-origin: 50% 0;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.7) 52%, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 38%;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.88;
  transition: transform 0.7s ease, background-color 0.7s ease;
}

.hero-orb--blue {
  width: 400px;
  height: 400px;
  top: 9%;
  right: 8%;
  background: radial-gradient(circle at 38% 36%, #57a7ff 0, var(--blue) 52%, rgba(7, 94, 235, 0) 72%);
}

.hero-orb--yellow {
  width: 330px;
  height: 330px;
  top: 16%;
  right: 29%;
  background: radial-gradient(circle at 50% 50%, #ffd456 0, var(--yellow) 56%, rgba(255, 184, 0, 0) 73%);
}

body.gt-home-event-pitalito .hero-orb--blue {
  transform: translate(-22%, 5%) scale(1.06);
}

body.gt-home-event-pitalito .hero-orb--yellow {
  transform: translate(23%, -8%) scale(1.12);
}

.hero-shell {
  width: min(calc(100% - 64px), 1320px);
  min-height: calc(760px - var(--header-height));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 94px);
  padding: 72px 0 58px;
}

.hero-copy-column {
  position: relative;
  z-index: 5;
  max-width: 660px;
}

.hero-overline {
  color: var(--blue);
}

.hero-announcement {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.5rem, 7.4vw, 7.6rem);
  font-weight: 950;
  letter-spacing: -0.073em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.04em;
  z-index: -1;
  height: 0.22em;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-1deg);
  opacity: 0.88;
}

.hero-description {
  max-width: 600px;
  margin: 28px 0 0;
  color: #555b66;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-block: 1px solid rgba(17, 19, 24, 0.12);
}

.hero-facts div {
  min-width: 0;
  padding: 15px 18px 15px 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(17, 19, 24, 0.12);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-tab {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4c515a;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.carousel-tab.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.hero-progress {
  width: min(100%, 360px);
  height: 3px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.12);
}

.hero-progress span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
}

.hero-progress span.is-running {
  animation: hero-progress 11s linear forwards;
}

@keyframes hero-progress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-visual-column {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: grid;
  place-items: center;
}

.hero-poster-wrap {
  position: relative;
  width: min(100%, 690px);
  height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-poster-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 7% 3% 14%;
  z-index: -1;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 48% 52% 45% 55% / 58% 40% 60% 42%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  transform: rotate(3deg);
}

.hero-poster {
  width: 75%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 34px rgba(12, 26, 57, 0.25));
  transition: opacity 0.28s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.gt-home-event-pitalito .hero-poster {
  object-fit: contain;
  object-position: center center;
}

.hero-poster-wrap.is-changing .hero-poster {
  opacity: 0;
  transform: translateX(22px) scale(0.98);
}

.poster-label {
  position: absolute;
  top: 9%;
  right: 1%;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.poster-number {
  position: absolute;
  right: 0;
  bottom: 2%;
  z-index: -1;
  color: rgba(7, 94, 235, 0.12);
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.service-ticker {
  position: relative;
  z-index: 8;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.service-ticker__track {
  width: max-content;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-inline: 22px;
  animation: ticker 30s linear infinite;
}

.service-ticker span {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 760;
  white-space: nowrap;
}

.service-ticker i {
  width: 15px;
  height: 15px;
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.service-ticker i::before,
.service-ticker i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
}

.service-ticker i::before {
  width: 15px;
  height: 2px;
}

.service-ticker i::after {
  width: 2px;
  height: 15px;
}

@keyframes ticker {
  to { transform: translateX(-35%); }
}

.countdown-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.countdown-layout {
  min-height: 180px;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 52px;
  padding-block: 34px;
}

.countdown-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.countdown-heading > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

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

.countdown div {
  min-width: 0;
  padding: 10px 24px;
  text-align: center;
}

.countdown div + div {
  border-left: 1px solid var(--line);
}

.countdown strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 930;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.countdown span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intro-section {
  padding-block: 104px 96px;
  text-align: center;
}

.intro-section h2 {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 930;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.intro-section mark {
  position: relative;
  color: var(--white);
  background: transparent;
  isolation: isolate;
}

.intro-section mark::before {
  content: "";
  position: absolute;
  inset: 0.06em -0.12em -0.03em;
  z-index: -1;
  border-radius: 0.08em;
  background: var(--blue);
  transform: rotate(-1.5deg);
}

.intro-section > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 30px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.trust-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.trust-grid article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-grid svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 12px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(7, 94, 235, 0.08);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 0.92rem;
}

.trust-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.events-section {
  padding-block: 106px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 930;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.event-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.event-card:hover,
.event-card.is-active {
  border-color: rgba(7, 94, 235, 0.32);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.event-card__media {
  position: relative;
  height: 370px;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card__media img {
  transform: scale(1.025);
}

.event-card__media--contain img {
  object-fit: contain;
  background:
    radial-gradient(circle at 70% 45%, rgba(255, 184, 0, 0.28), transparent 36%),
    linear-gradient(145deg, #071a3d, #073d9e);
}

.event-card__index {
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 3.7rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.event-card__category {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 26, 61, 0.2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-card__body {
  padding: 27px;
}

.event-card__location {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 920;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.event-card__summary {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.event-card__tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5c626c;
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 780;
}

.event-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.event-card__footer span,
.event-card__footer strong {
  display: block;
}

.event-card__footer > div:first-child span,
.event-availability span {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card__footer > div:first-child strong {
  margin-top: 3px;
  color: var(--blue);
  font-size: 1.22rem;
}

.event-availability {
  text-align: right;
}

.event-availability strong {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.event-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.event-card__actions .button {
  flex: 1 1 auto;
}

.preview-button {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.preview-button:hover {
  border-color: var(--blue);
  background: rgba(7, 94, 235, 0.05);
}

.events-summary {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 42px;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.events-summary > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.events-summary strong {
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.events-summary span:not(.text-arrow-link span) {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.events-summary .text-arrow-link {
  justify-self: end;
}

.process-section {
  padding-block: 104px;
  color: var(--white);
  background: var(--black);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.process-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

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

.process-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  font-weight: 920;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.process-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: #b9bdc6;
  line-height: 1.72;
}

.process-copy .text-arrow-link {
  color: var(--yellow);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list > li > span {
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-list p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #b9bdc6;
  line-height: 1.65;
}

.security-section {
  padding-block: 108px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.security-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.security-card--wide {
  grid-column: span 2;
  background:
    linear-gradient(130deg, rgba(7, 94, 235, 0.94), rgba(7, 61, 158, 0.96)),
    var(--blue);
  color: var(--white);
}

.security-card--accent {
  color: var(--navy);
  background: var(--yellow);
}

.security-card__number {
  margin-left: auto;
  color: var(--blue);
  font-size: 2.7rem;
  font-weight: 940;
  letter-spacing: -0.08em;
  line-height: 1;
}

.security-card--wide .security-card__number {
  color: rgba(255, 255, 255, 0.45);
}

.security-card--accent .security-card__number {
  color: rgba(7, 26, 61, 0.38);
}

.security-card h3 {
  margin: auto 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.security-card p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.security-card--wide p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.security-card--accent p {
  color: rgba(7, 26, 61, 0.74);
}

.security-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-weight: 900;
}

.faq-section {
  padding-block: 104px;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 930;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.faq-intro > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list details {
  border-top: 1px solid #d8dbe2;
}

.faq-list details:last-child {
  border-bottom: 1px solid #d8dbe2;
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 16px;
  height: 2px;
  background: var(--blue);
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  padding-right: 42px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-top {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 80px;
  padding-block: 56px;
}

.footer-brand img {
  width: 168px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 450px;
  margin: 20px 0 0;
  color: #b9bdc6;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: #d7dae0;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--blue);
}

.footer-bottom .content-shell {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 680;
}

.noscript-message {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
  }

  .main-nav {
    display: none;
  }

  .header-actions .text-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6.5rem);
  }

  .hero-poster-wrap {
    height: 540px;
  }

  .countdown-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .process-layout,
  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .content-shell,
  .site-header__inner,
  .hero-shell {
    width: min(calc(100% - 36px), var(--content));
  }

  .site-header__inner {
    gap: 12px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .header-buy {
    display: none;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    background-size: 58px 58px;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 58px 0 42px;
  }

  .hero-copy-column {
    max-width: 100%;
    text-align: center;
  }

  .hero-announcement {
    display: none;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(3.9rem, 14vw, 6.7rem);
  }

  .hero-description {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-actions,
  .hero-controls {
    justify-content: center;
  }

  .hero-facts {
    max-width: 680px;
    margin-inline: auto;
    margin-top: 28px;
  }

  .hero-progress {
    margin-inline: auto;
  }

  .hero-visual-column {
    min-height: 460px;
  }

  .hero-poster-wrap {
    width: min(100%, 620px);
    height: 500px;
  }

  .hero-orb--blue {
    width: 320px;
    height: 320px;
    top: 54%;
    right: 5%;
  }

  .hero-orb--yellow {
    width: 260px;
    height: 260px;
    top: 60%;
    right: 45%;
  }

  .countdown-layout {
    text-align: center;
  }

  .intro-section {
    padding-block: 84px;
  }

  .section-heading,
  .process-layout,
  .faq-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

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

  .event-card__media {
    height: min(64vw, 470px);
  }

  .process-layout {
    gap: 48px;
  }

  .process-copy {
    position: static;
  }

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

  .security-card--wide {
    grid-column: span 2;
  }

  .faq-layout {
    gap: 40px;
  }

  .footer-top {
    gap: 44px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
    --radius-lg: 24px;
  }

  .content-shell,
  .site-header__inner,
  .hero-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-shell {
    padding-top: 44px;
  }

  .hero-overline {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 18vw, 5.25rem);
    letter-spacing: -0.068em;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .hero-facts div {
    padding: 11px 0;
    text-align: left;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-top: 1px solid rgba(17, 19, 24, 0.12);
    border-left: 0;
  }

  .hero-facts dd {
    white-space: normal;
  }

  .hero-controls {
    gap: 8px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-tab {
    padding-inline: 13px;
  }

  .hero-visual-column {
    min-height: 390px;
  }

  .hero-poster-wrap {
    height: 410px;
  }

  .poster-label {
    top: 5%;
    right: 0;
    font-size: 0.63rem;
  }

  .poster-number {
    right: 2%;
    font-size: 8rem;
  }

  .service-ticker__track {
    min-height: 54px;
    gap: 16px;
  }

  .countdown-layout {
    padding-block: 30px;
  }

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

  .countdown div {
    padding: 16px 8px;
    border-top: 1px solid var(--line);
  }

  .countdown div:nth-child(odd) {
    border-left: 0;
  }

  .countdown div:nth-child(3) {
    border-left: 0;
  }

  .countdown strong {
    font-size: 2.9rem;
  }

  .intro-section,
  .events-section,
  .security-section,
  .faq-section {
    padding-block: 74px;
  }

  .intro-section h2,
  .section-heading h2,
  .process-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

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

  .event-card__media {
    height: 300px;
  }

  .event-card__body {
    padding: 21px;
  }

  .event-card h3 {
    font-size: 2.2rem;
  }

  .event-card__footer {
    align-items: flex-start;
  }

  .event-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-button {
    width: 100%;
  }

  .events-summary {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 20px;
  }

  .events-summary > div {
    display: block;
  }

  .events-summary .text-arrow-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .process-section {
    padding-block: 76px;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

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

  .security-card--wide {
    grid-column: auto;
  }

  .security-card {
    min-height: 230px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom .content-shell {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .carousel-arrow {
    display: none;
  }

  .hero-poster-wrap {
    height: 360px;
  }

  .event-card__media {
    height: 260px;
  }

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

  .event-availability {
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   GOTIKET - HERO MOBILE: PORTADA ENTRE TITULO Y DESCRIPCION
   Solo afecta pantallas de hasta 640px.
   No modifica escritorio, HTML, JavaScript ni logica.
   ========================================================= */
@media (max-width: 640px) {
  .hero-shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 38px 0 36px;
  }

  /* Permite intercalar la portada entre el título y la descripción
     sin mover elementos del HTML ni duplicar IDs. */
  .hero-copy-column {
    display: contents;
  }

  .hero-overline {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    order: 2;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  /* La portada aparece inmediatamente después del título. */
  .hero-visual-column {
    order: 3;
    position: relative;
    width: 100%;
    min-height: 0;
    align-self: auto;
    margin: 20px 0 16px;
    isolation: isolate;
  }

  .hero-description {
    order: 4;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions {
    order: 5;
    width: 100%;
  }

  .hero-facts {
    order: 6;
    width: 100%;
  }

  .hero-controls {
    order: 7;
    width: 100%;
  }

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

  /* Oculta los círculos generales únicamente en móvil. */
  .hero > .hero-orb {
    display: none;
  }

  /* Vuelve a colocar los círculos detrás de la portada. */
  .hero-visual-column::before,
  .hero-visual-column::after {
    content: "";
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.84;
    pointer-events: none;
  }

  .hero-visual-column::before {
    width: min(70vw, 300px);
    aspect-ratio: 1;
    top: 0;
    right: -8%;
    background:
      radial-gradient(
        circle at 38% 36%,
        #57a7ff 0,
        var(--blue) 52%,
        rgba(7, 94, 235, 0) 72%
      );
  }

  .hero-visual-column::after {
    width: min(58vw, 250px);
    aspect-ratio: 1;
    top: 15%;
    left: -7%;
    background:
      radial-gradient(
        circle at 50% 50%,
        #ffd456 0,
        var(--yellow) 56%,
        rgba(255, 184, 0, 0) 73%
      );
  }

  .hero-poster-wrap {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 10px 0;
    overflow: visible;
  }

  .hero-poster {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: clamp(300px, 86vw, 400px);
    margin-inline: auto;
    object-fit: contain;
    object-position: center;
  }

  /* La portada horizontal de Pitalito utiliza todo el ancho. */
  body.gt-home-event-pitalito .hero-poster {
    width: 100%;
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    object-position: center;
  }

  /* La portada vertical de Garzón conserva su proporción completa. */
  body.gt-home-event-garzon .hero-poster {
    width: auto;
    max-width: 90%;
    max-height: clamp(320px, 88vw, 400px);
    object-fit: contain;
    object-position: center;
  }

  .poster-label {
    top: 4px;
    right: 2px;
  }

  .poster-number {
    right: 1%;
    bottom: 3%;
  }
}