/* ============================================
   SECTIONS - V3
   Passion 2027-inspired section layouts
   ============================================ */

/* Sticky Mobile CTA - hidden on desktop */
.sticky-mobile-cta {
  display: none;
}

/* ============================================
   HERO SECTION
   Video background + logo + badge + CTAs
   ============================================ */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--top-banner-height, 44px));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.4;
}

/* Gradient overlays (Passion-style layered gradients) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 10, 18, 0.4) 0%,
      rgba(5, 10, 18, 0.2) 40%,
      rgba(5, 10, 18, 0.5) 70%,
      rgba(5, 10, 18, 0.95) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top,
      var(--color-bg-primary) 0%,
      transparent 100%);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(120, 40, 200, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(47, 181, 194, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(80, 20, 160, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(47, 181, 194, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 30% 80%, rgba(150, 50, 220, 0.35) 0%, transparent 50%);
  mix-blend-mode: screen;
  animation: heroOverlayMove 12s ease-in-out infinite alternate;
  opacity: 0.85;
}

@keyframes heroOverlayMove {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 20% 30%, rgba(120, 40, 200, 0.6) 0%, transparent 60%),
      radial-gradient(ellipse 70% 50% at 80% 70%, rgba(47, 181, 194, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse 90% 70% at 50% 50%, rgba(80, 20, 160, 0.3) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 70% 20%, rgba(47, 181, 194, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 30% 80%, rgba(150, 50, 220, 0.35) 0%, transparent 50%);
  }
  33% {
    background:
      radial-gradient(ellipse 70% 55% at 70% 20%, rgba(100, 30, 180, 0.55) 0%, transparent 55%),
      radial-gradient(ellipse 80% 60% at 30% 80%, rgba(47, 181, 194, 0.6) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 40%, rgba(140, 50, 200, 0.35) 0%, transparent 50%),
      radial-gradient(ellipse 90% 65% at 20% 60%, rgba(47, 181, 194, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 55% 45% at 60% 30%, rgba(120, 40, 200, 0.4) 0%, transparent 50%);
  }
  66% {
    background:
      radial-gradient(ellipse 75% 65% at 50% 70%, rgba(130, 45, 210, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse 65% 55% at 50% 30%, rgba(47, 181, 194, 0.55) 0%, transparent 55%),
      radial-gradient(ellipse 85% 60% at 20% 50%, rgba(90, 25, 170, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse 55% 45% at 80% 80%, rgba(47, 181, 194, 0.45) 0%, transparent 50%),
      radial-gradient(ellipse 60% 50% at 40% 20%, rgba(160, 60, 230, 0.3) 0%, transparent 50%);
  }
  100% {
    background:
      radial-gradient(ellipse 85% 55% at 30% 50%, rgba(110, 35, 190, 0.65) 0%, transparent 60%),
      radial-gradient(ellipse 75% 65% at 70% 40%, rgba(47, 181, 194, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse 65% 50% at 60% 80%, rgba(130, 40, 200, 0.35) 0%, transparent 50%),
      radial-gradient(ellipse 80% 60% at 40% 20%, rgba(47, 181, 194, 0.4) 0%, transparent 55%),
      radial-gradient(ellipse 50% 55% at 70% 60%, rgba(140, 50, 220, 0.4) 0%, transparent 50%);
  }
}

/* Upper gradient shade (Passion-style) */
.hero-shade-upper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom,
      rgba(5, 10, 18, 0.6) 0%,
      transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  padding: var(--space-8);
  z-index: 3;
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-badge {
  margin-bottom: var(--space-6);
}

.hero-date-large {
  font-family: var(--font-family-mono);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-white-50);
  letter-spacing: var(--letter-spacing-widest);
  text-transform: uppercase;
  margin-bottom: var(--space-10);
}

/* Logo fade effect (Passion-style) */
.hero-logo {
  position: relative;
  margin-top: clamp(1.5rem, 5vh, 3.5rem);
  margin-bottom: var(--space-4);
}

.hero-logo-fade {
  position: relative;
  width: clamp(260px, 41vw, 638px);
  aspect-ratio: 1463 / 624;
  margin-inline: auto;
}

.hero-logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-logo-img.active {
  opacity: 1;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 107, 26, 0.25));
  }

  50% {
    filter: drop-shadow(0 0 50px rgba(255, 107, 26, 0.5));
  }
}

.hero-subtitle {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-white-40);
  margin-bottom: var(--space-4);
  max-width: 700px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  line-height: var(--line-height-relaxed);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
  margin-top: var(--space-6);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  animation: bob 2.5s ease-in-out infinite;
  z-index: 3;
  color: var(--color-white-40);
  text-decoration: none;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   DESPIERTA FULL-BLEED SECTION
   White bg + DESPIERTA.png centered + black transition bottom
   (Passion-style "JESUS" section)
   ============================================ */
.despierta-full-section {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #ffffff;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: 0;
}

.despierta-full-text {
  text-align: center;
  font-family: var(--font-family-mono);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 2rem);
  font-weight: var(--font-weight-semibold);
  color: #333333;
  margin-bottom: var(--space-6);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  padding: 0 var(--page-padding);
}

.scroll-fade-char {
  opacity: 0.15;
  transition: opacity 0.1s ease;
}

.mono-bold {
  font-weight: var(--font-weight-black);
}

.despierta-full-section::after {
  content: '';
  display: block;
  height: 80px;
  background: #000;
}

.despierta-full-img {
  display: block;
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom, transparent 95%, #000000 95%);
}

/* ============================================
   TEMAS SECTION
   ============================================ */
.temas-section {
  background: #000;
  color: var(--color-white);
  padding: var(--space-12) 0 var(--space-24) 0;
  position: relative;
  z-index: 2;
}

.temas-intro {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto var(--space-12) auto;
  padding-inline: var(--page-padding);
}

.temas-intro h2 {
  font-family: var(--font-family-condensed);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-tight);
  word-spacing: 0.15em;
}

.temas-intro h2 strong {
  font-weight: var(--font-weight-black);
}

/* Word-by-word slide animation */
.temas-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding-top: 0.15em;
}

.temas-word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.temas-word-inner.is-visible {
  transform: translateY(0);
}

.temas-word-line {
  display: block;
}

.temas-intro p {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-lg);
  color: var(--color-white-70);
  line-height: 2;
}

.temas-grid-container {
  max-width: 1400px;
  margin: 0 auto var(--space-16) auto;
  padding-inline: var(--page-padding);
}

.temas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Hover effect on grid: dims other cards */
.temas-grid:hover .tema-card:not(:hover) {
  opacity: 0.4;
}

.tema-card {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  cursor: default;
}

.tema-card:hover {
  transform: translateY(-8px);
  background: var(--color-white-08);
  border-color: var(--color-white-30);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tema-card-title {
  font-family: 'Druk XCondensed Cyr', var(--font-family-display);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  text-align: center;
  font-weight: var(--font-weight-black);
  color: var(--color-accent-soft);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.01em;
}

.tema-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.tema-chips .badge {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  padding: var(--space-2) var(--space-3);
  text-transform: lowercase;
  background: var(--color-white-08);
  border: 1px solid var(--color-white-20);
  color: var(--color-white-80);
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .temas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .temas-grid {
    grid-template-columns: 1fr;
  }
}

.temas-final-text {
  text-align: center;
  font-family: var(--font-family-mono);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

/* ============================================
   TICKETS / PRICING GRID
   ============================================ */
.tickets-section {
  background: var(--color-bg-primary);
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.tickets-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--page-padding);
  text-align: center;
}

.tickets-title {
  font-family: var(--font-family-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

.tickets-title-1 {
  font-family: var(--font-family-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.tickets-title strong {
  font-weight: 900;
}

.tickets-subtitle {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  color: var(--color-white-70);
  margin-bottom: var(--space-3);
}

.tickets-note {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-white-50);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

/* Table wrapper */
.tickets-table-wrap {
  margin-bottom: var(--space-8);
  border: 1px solid rgba(47, 181, 194, 0.15);
  border-radius: 14px;
}

.tickets-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Header cells */
.tickets-th {
  padding: var(--space-6) var(--space-5);
  text-align: center;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(47, 181, 194, 0.15);
}

.tickets-th--empty {
  width: 20%;
}

.tickets-th-title {
  display: block;
  font-family: var(--font-family-primary);
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tickets-th-date {
  display: block;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-white-50);
  margin-top: var(--space-1);
}

.tickets-chip {
  display: inline-block;
  font-family: var(--font-family-mono);
  font-size: 0.65rem;
  color: var(--color-white-60);
  border: 1px solid rgba(47, 181, 194, 0.25);
  border-radius: 999px;
  padding: 2px 10px;
  margin-top: var(--space-2);
}

.tickets-star {
  display: block;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

/* Highlighted column (PREVENTA 1) */
.tickets-th--highlight {
  background: rgba(47, 181, 194, 0.06);
  border: 1px solid rgba(47, 181, 194, 0.25);
  border-bottom: 1px solid rgba(47, 181, 194, 0.25);
  border-radius: 12px 12px 0 0;
}

/* Body cells */
.tickets-td {
  padding: var(--space-6) var(--space-5);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(47, 181, 194, 0.1);
  min-height: 80px;
}

.tickets-td--label {
  text-align: left;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  vertical-align: middle;
}

.tickets-td--label .tickets-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: var(--space-2);
}

.tickets-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.6;
  vertical-align: middle;
}

.tickets-td--highlight {
  background: rgba(47, 181, 194, 0.06);
  border: 1px solid rgba(47, 181, 194, 0.25);
  border-top: none;
}

.tickets-td--highlight:last-child,
.tickets-th--highlight+.tickets-th~.tickets-th {
  border-right: none;
}

/* Last row rounded bottom on highlight column */
.tickets-table tbody tr:last-child .tickets-td--highlight {
  border-radius: 0 0 12px 12px;
}

.tickets-price {
  display: block;
  font-family: var(--font-family-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.tickets-save {
  display: block;
  font-family: var(--font-family-mono);
  font-size: 0.7rem;
  color: var(--color-accent-soft);
  margin-top: var(--space-1);
}

/* Column opacity: Preventa 1 = 100%, Preventa 2 = 80%, Preventa 3 = 60%, Normal = 45% */
.tickets-table th:nth-child(2),
.tickets-table td:nth-child(2) {
  opacity: 1;
}

.tickets-table th:nth-child(3),
.tickets-table td:nth-child(3) {
  opacity: 0.8;
}

.tickets-table th:nth-child(4),
.tickets-table td:nth-child(4) {
  opacity: 0.6;
}

.tickets-table th:nth-child(5),
.tickets-table td:nth-child(5) {
  opacity: 0.45;
}

.tickets-table th:nth-child(n+3),
.tickets-table td:nth-child(n+3) {
  transition: opacity 0.3s ease;
}

.tickets-table th:nth-child(n+3):hover,
.tickets-table td:nth-child(n+3):hover,
.tickets-table th:nth-child(n+3):hover ~ th,
.tickets-table td:nth-child(n+3):hover ~ td {
  opacity: 1;
}

/* Column hover: hovered column goes to 100% */
.tickets-table:hover th,
.tickets-table:hover td {
  opacity: 0.35;
}

.tickets-table th:hover,
.tickets-table td:hover {
  opacity: 1 !important;
}

.tickets-table th:hover ~ th,
.tickets-table td:hover ~ td {
  opacity: 0.35;
}

/* CTA Button */
.tickets-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-family-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-5) var(--space-10);
  margin-bottom: var(--space-4);
}

/* Preventa badge — below CTA */
.tickets-preventa-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.tickets-preventa-star {
  font-size: 0.9rem;
  color: var(--color-white);
}

.tickets-preventa-label {
  font-family: var(--font-family-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tickets-preventa-date {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-white-50);
}

/* Footer note */
.tickets-footer-note {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-white-40);
  text-align: center;
  margin-top: var(--space-3);
  line-height: 1.5;
}

.tickets-footer-note svg {
  display: inline;
  vertical-align: -2px;
  margin-right: 4px;
}

.tickets-footer-note strong {
  color: var(--color-white-70);
}

/* ============================================
   SINGLE-TIER PRICING TABLE (horizontal)
   ============================================ */
.tickets-single-wrap {
  max-width: 900px;
  margin: 0 auto var(--space-8);
  border: 1px solid rgba(47, 181, 194, 0.25);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(47, 181, 194, 0.04);
}

.tickets-single-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: rgba(47, 181, 194, 0.08);
  border-bottom: 1px solid rgba(47, 181, 194, 0.2);
}

.tickets-single-title {
  font-family: var(--font-family-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-teal-300);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tickets-single-date {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  color: var(--color-white-50);
}

.tickets-single-star {
  font-size: 1.2rem;
  color: var(--color-teal-400);
}

.tickets-single-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tickets-single-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  gap: var(--space-2);
}

.tickets-single-row + .tickets-single-row {
  border-left: 1px solid rgba(47, 181, 194, 0.1);
}

.tickets-single-row--normal {
  background: rgba(255, 255, 255, 0.02);
}

.tickets-single-type {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tickets-single-type .tickets-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.tickets-single-price {
  font-family: var(--font-family-primary);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-teal-300);
}

.tickets-single-price--muted {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-white-40);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   MOBILE CARDS (hidden on desktop)
   ============================================ */
.tickets-mobile-cards {
  display: none;
}

/* ============================================
   GLOBAL MOBILE STYLES
   ============================================ */
@media (max-width: 768px) {

  /* ---- HERO ---- */
  .hero {
    min-height: 80vh;
    min-height: 80dvh;
  }

  .hero-content {
    padding: var(--space-4);
  }

  .hero-logo-fade {
    width: clamp(195px, 60vw, 338px);
    height: auto;
  }

  .hero-date-large {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    margin-bottom: var(--space-6);
  }

  .hero-cta {
    gap: var(--space-3);
    margin-top: var(--space-4);
  }

  /* ---- SECTIONS GENERAL ---- */
  .temas-section {
    padding: var(--space-8) 0 var(--space-16) 0;
  }

  .temas-intro {
    margin-bottom: var(--space-8);
  }

  .temas-intro h2 {
    font-size: clamp(2.8rem, 10vw, 4.4rem);
    margin-bottom: var(--space-4);
    line-height: 0.85;
  }

  .temas-intro p {
    font-size: var(--font-size-sm);
  }

  .temas-grid-container {
    margin-bottom: var(--space-10);
  }

  .tema-card {
    padding: var(--space-5);
    gap: var(--space-4);
  }

  .tema-card-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .tema-chips {
    gap: var(--space-2);
    justify-content: center;
  }

  .tema-chips .badge {
    font-size: 0.6rem;
    padding: 3px var(--space-2);
    letter-spacing: 0.02em;
  }

  .temas-final-text {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
  }

  /* ---- DESPIERTA ---- */
  .despierta-full-section {
    padding-top: var(--space-4);
  }

  .despierta-full-text {
    font-size: clamp(0.8rem, 3.5vw, 1.2rem);
    margin-bottom: var(--space-3);
  }

  .despierta-full-section::after {
    height: 40px;
  }

  /* ---- TICKETS / PRICING ---- */
  .tickets-section {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .tickets-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .tickets-title-1 {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }

  .tickets-subtitle {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-2);
  }

  .tickets-note {
    font-size: 0.65rem;
    margin-bottom: var(--space-6);
  }

  /* Hide table, show mobile cards */
  .tickets-table {
    display: none;
  }

  .tickets-table-wrap {
    border: none;
    background: none;
  }

  .tickets-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  /* Single-tier: stack vertically on mobile */
  .tickets-single-wrap {
    max-width: 100%;
  }

  .tickets-single-body {
    grid-template-columns: 1fr;
  }

  .tickets-single-row + .tickets-single-row {
    border-left: none;
    border-top: 1px solid rgba(47, 181, 194, 0.1);
  }

  .tickets-single-row {
    padding: var(--space-4) var(--space-3);
  }

  .tickets-single-price {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .tickets-mcard {
    background: var(--color-white-05);
    border: 1px solid var(--color-white-15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.3s ease, opacity 0.3s ease;
  }

  /* Card opacity: Preventa 1 = 100%, Preventa 2 = 80%, Preventa 3 = 60%, Normal = 45% */
  .tickets-mcard:nth-child(1) { opacity: 1; }
  .tickets-mcard:nth-child(2) { opacity: 0.8; }
  .tickets-mcard:nth-child(3) { opacity: 0.6; }
  .tickets-mcard:nth-child(4) { opacity: 0.45; }

  .tickets-mcard:hover { opacity: 1 !important; }

  .tickets-mcard--highlight {
    border-color: rgba(47, 181, 194, 0.35);
    background: rgba(47, 181, 194, 0.06);
  }

  .tickets-mcard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--color-white-10);
  }

  .tickets-mcard--highlight .tickets-mcard-header {
    background: rgba(47, 181, 194, 0.08);
    border-bottom-color: rgba(47, 181, 194, 0.2);
  }

  .tickets-mcard-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .tickets-mcard--highlight .tickets-mcard-title {
    color: var(--color-teal-300);
  }

  .tickets-mcard-star {
    font-size: 1rem;
    color: var(--color-teal-400);
  }

  .tickets-mcard-date {
    font-family: var(--font-family-mono);
    font-size: 0.65rem;
    color: var(--color-white-50);
  }

  .tickets-mcard-body {
    padding: var(--space-3) var(--space-5) var(--space-4);
  }

  .tickets-mcard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
  }

  .tickets-mcard-row + .tickets-mcard-row {
    border-top: 1px solid var(--color-white-08);
  }

  .tickets-mcard-type {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-family-mono);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-white-70);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .tickets-mcard-type .tickets-icon {
    width: 14px;
    height: 14px;
    opacity: 0.5;
  }

  .tickets-mcard-price {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-white);
  }

  .tickets-mcard--highlight .tickets-mcard-price {
    color: var(--color-teal-300);
  }

  /* CTA button and footer note */
  .tickets-btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-5) var(--space-6);
    font-size: var(--font-size-base);
  }

  .tickets-footer-note {
    font-size: 0.65rem;
    margin-top: var(--space-3);
  }

  /* ---- SCRIPTURE ---- */
  .scripture-section {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .scripture-text {
    font-size: 6.6vh !important;
    line-height: 0.92;
    letter-spacing: 0.01em;
  }

  /* ---- SPEAKERS ---- */
  .speakers-section {
    padding: var(--space-8) 0 var(--space-12);
  }

  .speakers-label {
    margin-bottom: var(--space-10);
  }

  .speakers-label span {
    font-size: var(--font-size-sm);
    letter-spacing: 0.1em;
  }

  .speaker-info--float {
    padding: var(--space-3) var(--space-4);
  }

  .speaker-name {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    margin-bottom: 2px;
  }

  .speaker-country {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
  }

  .speakers-desc-grid {
    gap: var(--space-3);
    padding: 0 var(--space-4);
    margin-top: var(--space-5);
  }

  .speaker-desc-card {
    padding: var(--space-3);
  }

  .speaker-desc-text {
    font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  }

  /* ---- MOMENTS ---- */
  .moments-section {
    padding: var(--space-8) 0 var(--space-6);
  }

  .moments-header {
    padding: 0 0 var(--space-2);
  }

  .moments-title-image {
    transform: translateY(-30px);
  }

  .moments-carousel {
    margin-top: -50px;
  }

  .moments-scroll {
    gap: var(--space-3);
    padding: 0 var(--page-padding) var(--space-6);
    margin-top: 0;
  }

  .moment-card {
    width: calc((50vw - 2rem - var(--space-3) / 2) * 0.595);
    aspect-ratio: 9 / 14;
    flex-shrink: 0;
  }

  .moment-card-play {
    width: 48px;
    height: 48px;
  }

  .moment-card-play svg {
    width: 18px;
    height: 18px;
  }

  .moments-arrow {
    width: 36px;
    height: 36px;
  }

  .moments-arrow svg {
    width: 16px;
    height: 16px;
  }

  /* ---- FOOTER CTA ---- */
  .footer-cta-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .footer-cta-bigtext {
    font-size: clamp(1.5em, 7vw, 3.4rem);
  }

  /* ---- SBA ---- */
  .sba-section {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .sba-text {
    font-size: var(--font-size-sm);
  }

  /* ---- FOOTER ---- */
  .footer {
    padding-block: var(--space-8) var(--space-4);
  }

  .footer-top {
    gap: var(--space-6);
  }

  .footer-logo-text {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

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

  /* ---- STICKY MOBILE CTA ---- */
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: var(--space-3) var(--space-4);
    background: rgba(5, 10, 18, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(47, 181, 194, 0.2);
    gap: var(--space-3);
    align-items: center;
    justify-content: space-between;
  }

  .sticky-mobile-cta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .sticky-mobile-cta-price {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-teal-300);
  }

  .sticky-mobile-cta-deadline {
    font-family: var(--font-family-mono);
    font-size: 0.65rem;
    color: var(--color-white-50);
  }

  .sticky-mobile-cta .btn {
    flex-shrink: 0;
  }

  body {
    padding-bottom: 72px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .moment-card {
    width: calc(42vw - 1rem);
  }

  .speakers-grid {
    gap: var(--space-2);
    padding: 0 var(--space-3);
  }

  .speaker-card--overflow {
    height: 240px;
  }

  .tickets-mcard-header {
    padding: var(--space-3) var(--space-4);
  }

  .tickets-mcard-body {
    padding: var(--space-2) var(--space-4) var(--space-3);
  }
}

/* ============================================
   SCRIPTURE SECTION
   Animated gradient bg + dodge burn mouse effect
   ============================================ */
.scripture-section {
  background: #062e36;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

/* Animated gradient layer — jelly movement */
.scripture-section::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 40% 35% at 30% 40%, rgba(47, 181, 194, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 35% 50% at 70% 60%, rgba(80, 120, 255, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 30%, rgba(130, 100, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 45% 30% at 20% 70%, rgba(47, 181, 194, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(10, 74, 82, 0.8) 0%, transparent 70%);
  animation: scriptureJelly 12s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}

@keyframes scriptureJelly {
  0% {
    transform: translate(0%, 0%) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(3%, -2%) rotate(1deg) scale(1.02);
  }

  50% {
    transform: translate(-2%, 3%) rotate(-0.5deg) scale(0.98);
  }

  75% {
    transform: translate(2%, 1%) rotate(0.8deg) scale(1.01);
  }

  100% {
    transform: translate(-1%, -2%) rotate(-0.3deg) scale(1);
  }
}

/* Dodge burn glow — follows mouse, 400px turquoise */
.scripture-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(47, 220, 230, 0.35) 0%,
      rgba(47, 181, 194, 0.15) 30%,
      rgba(47, 181, 194, 0.05) 55%,
      transparent 75%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.scripture-section.is-glowing::after {
  opacity: 1;
}

/* Decorative stroke circles — low opacity */
.scripture-circle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.scripture-circle--left {
  top: -10%;
  left: -5%;
  width: 40%;
  height: 120%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 60% 60% 0;
  transform: rotate(-5deg);
}

.scripture-circle--right {
  top: 5%;
  right: -8%;
  width: 35%;
  height: 110%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50% 0 0 50%;
  transform: rotate(3deg);
}

.scripture-content {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--page-padding);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Each word enters one at a time */
.scripture-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  margin-right: 0;
}

.scripture-line.is-revealed .scripture-word {
  transform: translateY(0);
  opacity: 1;
}

.scripture-text {
  font-family: var(--font-family-xcondensed);
  font-weight: 700;
  font-style: normal;
  font-size: 6.8em;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
}

/* Italic — Druk Heavy Italic for emphasized phrases */
.scripture-italic {
  font-family: 'Druk Heavy Italic', var(--font-family-display);
  font-weight: 900;
  font-style: italic;
}

/* Line spacing — tighter */
.scripture-line {
  padding-bottom: 0;
  margin-bottom: 0.02em;
}

/* Reference badge (Passion-style pill) */
.scripture-reference {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-8);
  padding: var(--space-3) var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: none;
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.scripture-section.is-revealed .scripture-reference {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */
.speakers-section {
  background: var(--color-bg-primary);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.speakers-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3a1f7a 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.speakers-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3a1f7a 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.speakers-label {
  text-align: center;
  margin-bottom: var(--space-24);
  position: relative;
  z-index: 1;
}

.speakers-label span {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-lg);
  color: var(--color-white-50);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  font-weight: var(--font-weight-regular);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  max-width: 1720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.speaker-card {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-align: center;
}

.speaker-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-white-15);
  box-shadow: var(--shadow-xl);
}

/* Overflow variant — raw image bleeds top and sides */
.speaker-card--overflow {
  position: relative;
  overflow: visible;
  height: 380px;
}

.speaker-card--overflow:hover {
  transform: none;
  box-shadow: none;
}

.speaker-overflow-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  pointer-events: none;
  filter: grayscale(1);
  transition: filter 0.8s ease;
}

.speaker-card--overflow.is-active .speaker-overflow-img,
.speaker-card--overflow:hover .speaker-overflow-img {
  filter: grayscale(0);
}

.speaker-info--float {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(to top, rgba(5, 10, 18, 0.95) 0%, rgba(5, 10, 18, 0.7) 70%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  text-align: center;
  z-index: 2;
}

.speaker-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-700) 0%, var(--color-primary-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}

.speaker-placeholder {
  font-size: 3.6rem;
  color: var(--color-white-20);
}

.speaker-info {
  padding: var(--space-6);
}

.speaker-name {
  font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.35rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-1);
}

.speaker-role {
  font-size: clamp(0.96rem, 0.9rem + 0.3vw, 1.05rem);
  color: var(--color-white-50);
}

.speaker-country {
  font-size: clamp(0.96rem, 0.9rem + 0.3vw, 1.05rem);
  color: var(--color-white-40);
  margin-top: var(--space-1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.flag-icon {
  width: 1.25em;
  height: auto;
  border-radius: 2px;
  display: inline-block;
}

/* ---- SPEAKER PAIR (card + desc) ---- */
.speaker-pair {
  display: contents;
}

.speaker-pair .speaker-card--overflow {
  grid-row: 1;
}

.speaker-pair .speaker-desc-card {
  grid-row: 2;
  background: var(--color-white-05);
  border: 1px solid var(--color-white-08);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  transition: all var(--transition-base);
}

.speaker-pair .speaker-desc-card:hover {
  border-color: var(--color-white-15);
  box-shadow: var(--shadow-lg);
}

.speaker-pair .speaker-desc-text {
  font-size: clamp(0.68rem, 0.65rem + 0.26vw, 0.85rem);
  color: var(--color-white-50);
  line-height: 1.6;
}

/* ---- SPEAKER DESCRIPTION CARDS (legacy, hidden) ---- */
.speakers-desc-grid {
  display: none;
}

@media (max-width: 900px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speaker-pair {
    display: flex;
    flex-direction: column;
  }

  .speaker-pair .speaker-card--overflow {
    grid-row: auto;
  }

  .speaker-pair .speaker-desc-card {
    grid-row: auto;
    display: block;
    background: var(--color-white-05);
    border: 1px solid var(--color-white-08);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    margin-top: 0;
    text-align: center;
  }

  .speaker-pair .speaker-desc-text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--color-white-50);
    line-height: 1.6;
  }

  .speaker-card--overflow {
    height: 280px;
  }

  .speaker-overflow-img {
    top: -30px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
  }
}

/* ============================================
   MOMENTS SECTION
   Passion-style horizontal scrolling video cards
   ============================================ */
.moments-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--color-accent-soft);
  padding: var(--space-12) 0 var(--space-8);
}

.moments-header {
  text-align: center;
  padding: 0 0 var(--space-8);
  width: 100%;
}

.moments-title-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.moments-svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.moments-title-image.glitch {
  filter: url(#glitchFilter);
  animation: glitchBlink 0.3s steps(2) forwards;
}

@keyframes glitchBlink {
  0% { opacity: 1; }
  15% { opacity: 0.4; }
  30% { opacity: 1; }
  45% { opacity: 0.7; }
  60% { opacity: 1; }
  75% { opacity: 0.5; }
  100% { opacity: 1; }
}
.moments-scroll {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--page-padding) var(--space-8);
  scrollbar-width: none;
  position: relative;
  z-index: 1;
  width: 100%;
}

.moments-scroll:active {
  cursor: grabbing;
}

.moments-scroll::-webkit-scrollbar {
  display: none;
}

.moment-card {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 380px);
  aspect-ratio: 9 / 16;
  background: var(--color-primary-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}

.moment-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -60px;
}

.moments-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 10, 18, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0.8;
}

.moments-arrow:hover {
  background: rgba(5, 10, 18, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.moments-arrow svg {
  width: 22px;
  height: 22px;
}

.moments-arrow--prev {
  left: max(1rem, calc(var(--page-padding) - 8px));
}

.moments-arrow--next {
  right: max(1rem, calc(var(--page-padding) - 8px));
}

.moment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 10, 18, 0.8) 0%,
      transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
}

.moment-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  opacity: 0;
}

.moment-card:hover .moment-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.moment-card-play svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
  margin-left: 3px;
}

.moment-card-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
}

.moment-card-desc {
  font-size: var(--font-size-sm);
  color: var(--color-white-60);
  margin-top: var(--space-1);
}

/* ============================================
   FOOTER CTA SECTION (Passion-style big text)
   Huge display text with CTA card between lines
   ============================================ */
.footer-cta-section {
  background: var(--color-bg-primary);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: var(--section-padding-lg) 0;
}

.footer-cta-headlines {
  text-align: center;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--page-padding);
  position: relative;
  z-index: 1;
}

.footer-cta-bigtext {
  font-family: var(--font-family-display);
  font-size: clamp(2.6em, 7.15vw, 13rem);
  font-weight: var(--font-weight-black);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
}

/* Yellow highlight variant */
.footer-cta-yellow {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 0;
  border-radius: 0;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

/* Line-by-line reveal (same as scripture) */
.footer-cta-line-wrap {
  overflow: hidden;
  padding-bottom: 0.05em;
}

.footer-cta-line-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

[data-footer-reveal].is-revealed .footer-cta-line-inner {
  transform: translateY(0);
}

/* Stagger: first group UN / EVENTO */
[data-footer-reveal]:nth-child(1) .footer-cta-line-wrap:nth-child(1) .footer-cta-line-inner {
  transition-delay: 0s;
}

[data-footer-reveal]:nth-child(1) .footer-cta-line-wrap:nth-child(2) .footer-cta-line-inner {
  transition-delay: 0.12s;
}

/* Stagger: second group MILES DE / SIERVOS. */
[data-footer-reveal]:nth-child(3) .footer-cta-line-wrap:nth-child(1) .footer-cta-line-inner {
  transition-delay: 0s;
}

[data-footer-reveal]:nth-child(3) .footer-cta-line-wrap:nth-child(2) .footer-cta-line-inner {
  transition-delay: 0.12s;
}

/* CTA card between the two text lines */
.footer-cta-card {
  display: flex;
  justify-content: center;
  margin: var(--space-6) auto;
  position: relative;
  z-index: 3;
}

.footer-cta-card-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--color-white-08);
  border: 1px solid var(--color-white-15);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .footer-cta-card-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
  }

  .footer-cta-card-btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: var(--font-size-sm);
    white-space: normal;
  }
}

.footer-cta-card-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.footer-cta-card-logo-text {
  font-family: var(--font-family-display);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

.footer-cta-card-info {
  flex-shrink: 0;
}

.footer-cta-card-info p {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-lg);
  color: var(--color-white-70);
  letter-spacing: var(--letter-spacing-wide);
  margin: 0;
}

.footer-cta-card-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============================================
   FAQ SECTION
   Accordion-style frequently asked questions
   ============================================ */
.faq-section {
  background: var(--color-accent-soft-900);
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

.faq-title {
  font-family: var(--font-family-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-white-15);
}

.faq-item.is-open {
  border-color: rgba(47, 181, 194, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-teal-300);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-white-50);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-teal-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6) var(--space-6);
}

.faq-answer-inner p {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  color: var(--color-white-70);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner a {
  color: var(--color-teal-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
  color: var(--color-teal-300);
}

.faq-list-details {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
}

.faq-list-details li {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  color: var(--color-white-70);
  line-height: 1.8;
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
}

.faq-list-details li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-teal-400);
  font-size: 0.5rem;
  top: 0.55em;
}

@media (max-width: 768px) {
  .faq-section {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .faq-question {
    padding: var(--space-4) var(--space-5);
    font-size: var(--font-size-sm);
  }

  .faq-answer-inner {
    padding: 0 var(--space-5) var(--space-5) var(--space-5);
  }

  .faq-answer-inner p {
    font-size: var(--font-size-xs);
  }

  .faq-list-details li {
    font-size: var(--font-size-xs);
  }
}

/* ============================================
   CONSTELLATION OVERLAY
   ============================================ */
.constellation-global {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
}

.constellation-global svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   GLOBAL FLARES (Passion-style light effects)
   ============================================ */
.global-flare-image {
  position: fixed;
  background-image: url('../assets/light-fx.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  pointer-events: none;
  z-index: var(--z-flare);
}

.global-flare-left {
  width: 1000px;
  height: 1000px;
  left: -400px;
  top: -100px;
  filter: blur(30px);
}

.global-flare-right {
  width: 800px;
  height: 800px;
  right: -200px;
  bottom: 5%;
  filter: blur(15px);
}

@media (max-width: 768px) {
  .global-flare-image {
    opacity: 0.3;
  }

  .global-flare-left {
    width: 500px;
    height: 500px;
    left: -300px;
  }

  .global-flare-right {
    width: 350px;
    height: 350px;
    right: -200px;
  }
}

/* ============================================
   ANIMATED GRADIENT BG (Lower sections)
   ============================================ */
.lower-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      #050a12 0%,
      #0a1525 25%,
      #050a12 50%,
      #0d1a30 75%,
      #050a12 100%);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }

  25% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 50% 100%;
  }

  75% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 0% 0%;
  }
}

.sections-wrapper {
  position: relative;
}