/* ---------- TOKENS — Coschool Design System ---------- */
:root {
  --black: #000000;
  --ink: #0A0A0A;
  --ink-2: #111111;
  --card: #201F1F;
  --card-border: rgba(149, 149, 149, 0.35);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.18);

  --white: #FFFFFF;
  --cream: #F6F5F2;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  /* Brand */
  --yellow: #E6D45D;
  --yellow-soft: #D4C24E;
  --yellow-glow: rgba(230, 212, 93, 0.18);
  --navy-100: #74A7C1;
  --navy-900: #13213C;
  --orange: #D38D36;
  --red: #9F1136;
  --pink: #E2B4C5;

  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 80px);
  --section-y: clamp(72px, 9vw, 140px);
  --r-card: 20px;
  --r-pill: 999px;
  --r-sm: 8px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; font-family: var(--font); }
::selection { background: var(--yellow); color: var(--black); }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }
.section { padding: var(--section-y) 0; }

/* ---------- LOGOS BAR ---------- */
.logos-bar {
  padding: clamp(28px, 4vw, 48px) var(--pad-x);
  border-bottom: 1px solid var(--hairline);
}
.logos-bar__title {
  max-width: var(--max);
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  text-align: center;
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #888);
}
.logos-bar__track {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: nowrap;
}
.logos-bar__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  min-width: 0;
}
/* En desktop solo se muestra el primer grupo (centrado, todos visibles) */
.logos-bar__group:nth-child(2) {
  display: none;
}
.logos-bar__group img {
  height: clamp(28px, 3.5vw, 44px);
  width: auto;
  min-width: 0;
  flex-shrink: 1;
  opacity: 0.7;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s, filter 0.3s;
}
.logos-bar__group img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}
.logos-bar__group img.logo--lg {
  height: clamp(38px, 4.5vw, 60px);
}

@keyframes logos-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-bar__track { animation: none; }
}

/* ---------- TYPE ---------- */
h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; margin: 0; line-height: 1.05; letter-spacing: -0.02em; }

.h-display { font-size: clamp(40px, 6.4vw, 88px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
.h1 { font-size: clamp(36px, 4.8vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.018em; }
.h3 { font-size: clamp(22px, 2.4vw, 29px); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.h4 { font-size: 20px; font-weight: 600; line-height: 1.3; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.cream { color: var(--cream); }
.eyebrow.dark { color: #333; }

.body-l { font-size: 18px; line-height: 1.55; font-weight: 400; }
.body-l-medium { font-size: 18px; line-height: 1.55; font-weight: 500; }
.body { font-size: 16px; line-height: 1.55; font-weight: 400; }
.caption { font-size: 13px; line-height: 1.4; font-weight: 400; }

.muted { color: rgba(255,255,255,0.7); }
.muted-strong { color: rgba(255,255,255,0.55); }
.text-yellow { color: var(--yellow); }
.text-cream { color: var(--cream); }

p { margin: 0; }
p + p { margin-top: 16px; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--brand { background: var(--yellow); color: var(--black); }
.badge--navy { background: var(--navy-900); color: var(--white); }
.badge--ghost { background: transparent; color: var(--yellow); border: 1px solid var(--yellow); }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--hairline);
  padding: 12px var(--pad-x);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0;
}
.brand__logo { height: 14px; width: auto; display: block; }
.brand__sep { color: rgba(255,255,255,0.4); margin: 0 4px; font-weight: 400; }
.nav {
  display: flex; gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.nav a:hover { color: var(--yellow); }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
}
.btn--primary:hover {
  background: #F0DE6E;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -12px var(--yellow-glow);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--secondary:hover { border-color: var(--white); }
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: #1a1a1a; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background: url("assets/photo-hero.jpg") center 30% / cover no-repeat;
  filter: saturate(0.85);
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,1) 100%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(230,212,93,0.08), transparent 60%);
}
.hero__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: clamp(48px, 8vw, 96px);
}
.hero__top span { display: inline-flex; align-items: center; gap: 10px; }
.hero__top .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 10px var(--yellow); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.hero__main { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 1100px; }
.hero__edition {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__edition::before { content: ""; width: 32px; height: 1px; background: var(--yellow); }

.hero__title {
  font-size: clamp(40px, 6.2vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 18ch;
}
.hero__title .yellow { color: var(--yellow); }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 48px 0 40px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hero__meta div span:first-child {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.hero__meta div span:last-child {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta-note {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-head--single { grid-template-columns: 1fr; }
.section-head h2 { margin-top: 16px; max-width: 18ch; }
.section-head .body-l { color: rgba(255,255,255,0.75); max-width: 56ch; }

/* ---------- WHAT IS / CONTEXT ---------- */
.context-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.context-grid aside { position: sticky; top: 110px; }
.context-grid aside .num {
  font-size: clamp(80px, 10vw, 140px);
  line-height: 1;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.context-grid p { color: rgba(255,255,255,0.78); }
.context-grid p.body-l { font-size: 19px; line-height: 1.6; max-width: 60ch; }
.context-grid p.body-l + p { margin-top: 24px; }

.pull {
  margin: 48px 0;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.005em;
  font-style: italic;
}

/* ---------- LEY 2503 ---------- */
.ley {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.ley::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--yellow-glow), transparent 60%);
  pointer-events: none;
}
.ley__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.ley__num {
  font-size: clamp(110px, 14vw, 200px);
  line-height: 0.85;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--white);
}
.ley__num span { color: var(--yellow); }
.ley__label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ---------- OBJETIVOS ---------- */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.obj-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 40px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.obj-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.obj-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.obj-card__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.obj-card__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-top: auto;
  letter-spacing: -0.01em;
}

/* ---------- DAYS / AGENDA ---------- */
.day {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.day:last-of-type { border-bottom: 1px solid var(--hairline); }
#dia2 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }

/* ---------- DAY BANNER (layout alternativo) ---------- */
.day-banner {
  position: relative;
  border-top: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.day-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.85);
  z-index: -2;
  transition: transform 0.8s var(--ease);
}
.day-banner:hover .day-banner__bg { transform: scale(1.03); }
.day-banner__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.92) 100%);
}
.day-banner__content {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.day-banner__top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.day-banner__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.day__media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--card);
}
.day__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.8s var(--ease);
}
.day:hover .day__media img { transform: scale(1.03); }

/* Columna de imagen sticky */
.day__media-col {
  position: sticky;
  top: 110px;
  align-self: start;
}
.day__reel {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--card);
}
.day__reel .instagram-media {
  border-radius: var(--r-card) !important;
  min-width: 0 !important;
}
.day__media-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

.day__num {
  font-size: clamp(72px, 8vw, 124px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--white);
}
.day__num span { color: var(--yellow); }
.day__date {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.day__date strong { color: var(--yellow); font-weight: 700; }
.day__theme {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 24px;
  max-width: 22ch;
}
.day__theme .yellow { color: var(--yellow); }
.day__lede {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 60ch;
}
.day__lede strong { color: var(--white); font-weight: 600; }

.day__qlist {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.day__qlist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--cream);
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.day__qlist li:last-child { border-bottom: 0; padding-bottom: 0; }
.day__qlist li::before {
  content: "→";
  color: var(--yellow);
  font-weight: 600;
  padding-top: 1px;
}

.day__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.day__meta div span:first-child {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.day__meta div span:last-child {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}

/* ---------- CUPOS LIMITADOS ---------- */
.cupos {
  position: relative;
  margin-top: clamp(32px, 4vw, 56px);
  border-radius: var(--r-card);
  border: 1px solid var(--yellow);
  background: linear-gradient(135deg, rgba(230,212,93,0.10) 0%, rgba(230,212,93,0.03) 100%);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  overflow: hidden;
}
.cupos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(230,212,93,0.12), transparent 70%);
  pointer-events: none;
}
.cupos__pulse {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(230,212,93,0.5);
  animation: cupos-ping 1.8s ease-in-out infinite;
}
@keyframes cupos-ping {
  0%   { box-shadow: 0 0 0 0 rgba(230,212,93,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(230,212,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,212,93,0); }
}
.cupos__content { flex: 1; min-width: 0; }
.cupos__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.cupos__headline {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}
.cupos__headline span { color: var(--yellow); }
.cupos__sub {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
}
.cupos__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.cupos__btn svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.cupos__btn:hover { background: #f0de6e; transform: translateY(-2px); }
.cupos__btn:hover svg { transform: translateX(3px); }

/* ---------- WHY ATTEND ---------- */
.why {
  background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
.why__manifesto {
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: 22ch;
  margin: 0 0 40px;
}
.why__manifesto .yellow { color: var(--yellow); }

.why__split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why__verb {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  justify-content: space-between;
}
.why__verb .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
}
.why__verb h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.012em;
  line-height: 1.1;
}
.why__verb h4 .yellow { color: var(--yellow); }
.why__verb p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ---------- VENUES ---------- */
.venues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.venue {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.venue:hover { border-color: var(--yellow); transform: translateY(-3px); }
.venue__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  overflow: hidden;
}
.venue__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.venue__map { width: 100%; height: 100%; border: 0; display: block; filter: invert(90%) hue-rotate(180deg); }
.venue__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.venue__day-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}
.venue__body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.venue__directions { margin-top: auto; align-self: flex-start; font-size: 13px; padding: 10px 18px; }
.venue__name { font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; line-height: 1.1; letter-spacing: -0.012em; color: var(--white); }
.venue__addr { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.45; }
.venue__hours {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ---------- AUDIENCE CHIPS ---------- */
.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.chip:hover { border-color: var(--yellow); color: var(--yellow); }
.chip--outline { background: transparent; border-color: rgba(255,255,255,0.5); }
.chip--outline:hover { border-color: var(--white); color: var(--white); }

/* ---------- DAY AUDIENCE ---------- */
.day__audience {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.day__audience-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.day__audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- CTA BLOCK ---------- */
.cta-block {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--r-card);
  padding: clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.cta-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.cta-block h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 18ch;
}
.cta-block p { font-size: 17px; line-height: 1.5; color: #1a1a1a; max-width: 42ch; }
.cta-block__date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-block__date::before { content: ""; width: 32px; height: 1px; background: var(--black); }
.cta-block__buttons { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-block .btn--dark { background: var(--black); color: var(--white); }
.cta-block__note {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ---------- SPONSOR ---------- */
.sponsor {
  border-top: 1px solid var(--hairline);
}
.sponsor__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0;
}
.sponsor__lead {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.sponsor__name {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  word-break: break-word;
}
.sponsor__name .yellow { color: var(--yellow); }
.sponsor__desc { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.55; max-width: 48ch; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 48px var(--pad-x) 28px;
  background: var(--black);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}
.footer__brand h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin-bottom: 14px;
}
.footer__logo { height: 16px; width: auto; display: block; margin-bottom: 20px; opacity: 0.9; }
.footer__brand h4 .yellow { color: var(--yellow); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 36ch; }
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col li, .footer__col li a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.footer__col li a:hover { color: var(--yellow); }
.footer__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- ANIMATIONS ---------- */
/* Estados iniciales manejados por GSAP. Las clases .reveal se conservan como hooks de selección. */
.reveal { will-change: transform, opacity; }
.split-line { overflow: hidden; }
.day__media { overflow: hidden; }
.day__media img { will-change: transform; }

/* ---------- PONENTES ---------- */
/* Títulos con el hashtag de marca: la palabra #UnFuturoDiferente. no se puede
   partir y desborda la columna estrecha del section-head, donde el reveal
   línea-por-línea aplica overflow:hidden y la recorta. Ajustamos tamaño/ancho y
   permitimos quiebre como red de seguridad. */
.section-head__brand {
  font-size: clamp(28px, 3.2vw, 40px);
  max-width: 24ch;
  overflow-wrap: anywhere;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.speaker-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: clamp(24px, 2.4vw, 32px) 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.speaker-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.speaker-card__photo {
  width: clamp(96px, 12vw, 128px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--hairline-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
  background: #0a0a0a;
}
.speaker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s var(--ease);
}
.speaker-card:hover .speaker-card__photo img {
  filter: grayscale(0%);
}
.speaker-card__photo--initials {
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 50% 35%,
    var(--yellow-glow),
    rgba(230, 212, 93, 0.04)
  );
  border-color: rgba(230, 212, 93, 0.35);
}
.speaker-card__photo--initials span {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.speaker-card__name {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}
.speaker-card__role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-top: 8px;
  line-height: 1.35;
}
.speaker-card__bio {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- LINEUP DÍA 1 ---------- */
.lineup {
  max-width: 860px;
  margin: clamp(40px, 5vw, 64px) auto 0;
}
.lineup-row {
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(24px, 3vw, 32px) 0;
  border-top: 1px solid var(--hairline);
}
.lineup-row:last-child {
  border-bottom: 1px solid var(--hairline);
}
.lineup-row__time {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.lineup-row__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  background: var(--yellow-glow);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.lineup-row__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--white);
}
.lineup-row__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}
.lineup-row__people {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
}
.lineup-row__people span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-right: 6px;
}
.lineup-row--break {
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(230, 212, 93, 0.06),
    rgba(230, 212, 93, 0.02)
  );
}
.lineup-row__break-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--yellow);
}

/* Talleres simultáneos (Día 2) */
.lineup-row__talleres {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.lineup-row__taller {
  padding-left: 14px;
  border-left: 2px solid var(--yellow-glow);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.lineup-row__taller strong {
  display: block;
  font-weight: 700;
  color: var(--white);
}
.lineup-row__taller .doc {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn--secondary { display: none; }

  /* Logos: carrusel infinito tipo marquesina */
  .logos-bar { overflow: hidden; }
  .logos-bar__track {
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    gap: clamp(32px, 10vw, 56px);
    animation: logos-marquee 25s linear infinite;
  }
  .logos-bar__group { gap: clamp(32px, 10vw, 56px); }
  .logos-bar__group:nth-child(2) { display: flex; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .section-head, .context-grid, .ley__grid, .sponsor__inner, .cta-block__inner { grid-template-columns: 1fr; gap: 32px; }
  .context-grid aside { position: static; }
  .obj-grid { grid-template-columns: 1fr; }
  .day, #dia2 { grid-template-columns: 1fr; }
  .day__meta { grid-template-columns: 1fr; gap: 14px; }
  .why__split { grid-template-columns: 1fr; }
  /* Desactivar skew en why__verb en móvil */
  .why__verb { transform: none !important; }
  .venues { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-block__buttons { flex-direction: column; align-items: stretch; }

  /* Día 1: texto primero, imagen después */
  #dia1 .day__media-col { order: 2; }
  #dia1 > div:not(.day__media-col) { order: 1; }

  /* Día 2: texto primero, reel después */
  #dia2 > div:not(.day__media-col) { order: 1; }
  #dia2 .day__media-col { order: 2; }

  /* Quitar sticky en mobile */
  .day__media-col { position: static; }

  /* Reel en mobile: altura controlada */
  .day__reel { max-height: 560px; overflow: hidden; }

  /* Cupos: stack vertical */
  .cupos { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cupos__btn { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  /* Lineup: hora arriba, contenido debajo */
  .lineup-row { grid-template-columns: 1fr; gap: 12px; }
  .lineup-row--break { gap: 0; }
}
@media (max-width: 560px) {
  .hero__top { font-size: 10px; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   REGISTRO — Día 2 (registro.html)
   ============================================================ */
.reg-main { padding-top: 72px; }
.reg-section { padding-top: clamp(40px, 6vw, 72px); }
.reg-wrap { max-width: 880px; }

/* ── Intro / felicitación ── */
.reg-intro { margin-bottom: clamp(32px, 5vw, 56px); }
.reg-intro__title { margin: 16px 0 18px; }
.reg-intro__lead { max-width: 60ch; }

/* ── Formulario ── */
.registro-form { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 44px); }
.reg-fieldset { border: 0; margin: 0; padding: 0; }
.reg-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding: 0;
}
.reg-legend__num {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  flex: none;
}
.reg-legend__hint {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ── Campos de texto ── */
.reg-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
}
.field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-glow);
}
.field__hint { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ── Grid de talleres ── */
.taller-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.taller-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.taller-card:hover { transform: translateY(-2px); border-color: var(--hairline-strong); }
.taller-card input { position: absolute; opacity: 0; pointer-events: none; }
.taller-card:has(input:checked) {
  border-color: var(--yellow);
  background: #262417;
  box-shadow: 0 0 0 1px var(--yellow), 0 16px 40px -20px var(--yellow-glow);
}
.taller-card:has(input:focus-visible) {
  box-shadow: 0 0 0 3px var(--yellow-glow);
}
.taller-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.taller-card__name { font-size: 15px; font-weight: 600; line-height: 1.3; }
.taller-card__remain {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
  padding-top: 2px;
}
.taller-card--low .taller-card__remain { color: var(--orange); }
.taller-card__meta { font-size: 12.5px; color: rgba(255,255,255,0.6); }

/* Barra de progreso de cupos */
.cupo-bar {
  position: relative;
  height: 7px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.cupo-bar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--yellow-soft), var(--yellow));
  transition: width 0.5s var(--ease);
}
.taller-card--low .cupo-bar__fill { background: linear-gradient(90deg, var(--orange), #e8a94e); }

/* Taller agotado */
.taller-card--full {
  cursor: not-allowed;
  opacity: 0.5;
}
.taller-card--full:hover { transform: none; border-color: var(--card-border); }
.taller-card--full .taller-card__remain { color: var(--red); }
.taller-card--full .cupo-bar__fill { background: var(--red); }

/* ── Envío + mensajes ── */
.reg-submit { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.reg-msg {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: rgba(159, 17, 54, 0.16);
  border: 1px solid rgba(159, 17, 54, 0.55);
  color: #f3c6d2;
  font-size: 14px;
  font-weight: 500;
}
.reg-btn__label { display: inline-block; }
#reg-btn:disabled { opacity: 0.6; cursor: progress; }
.reg-submit__note { max-width: 56ch; }

/* ============================================================
   GRACIAS / THANK YOU
   ============================================================ */
.gracias__title { margin: 16px 0 18px; }
.gracias__talleres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.gracias__taller {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  border-left: 3px solid var(--yellow);
}
.gracias__taller-time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.gracias__taller-name { font-size: 17px; font-weight: 600; line-height: 1.3; }

.gracias__info {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
}
.gracias__info h2 { margin: 0 0 18px; }
.gracias__list { list-style: none; margin: 0 0 24px; padding: 0; }
.gracias__list li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.gracias__list li:last-child { border-bottom: 0; }
.gracias__list span {
  flex: none;
  min-width: 80px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-top: 2px;
}
.gracias__list strong { font-size: 15px; font-weight: 600; }

.nota-parqueadero {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--yellow-glow);
  border: 1px solid rgba(230, 212, 93, 0.4);
  border-radius: var(--r-card);
}
.nota-parqueadero h3 { margin: 0 0 8px; color: var(--yellow); }

/* ── Responsive ── */
@media (max-width: 720px) {
  .reg-fields { grid-template-columns: 1fr; }
  .taller-grid { grid-template-columns: 1fr; }
  .gracias__talleres { grid-template-columns: 1fr; }
  .reg-submit .btn { width: 100%; justify-content: center; }
}

/* ── FOTOGRAFÍAS · tarjetas de descarga ────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 4vw, 56px);
}
.photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(230, 212, 93, 0.06), transparent 60%),
    var(--ink);
  text-decoration: none;
  color: var(--cream);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease, box-shadow 0.4s ease;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow 0.3s ease;
  pointer-events: none;
}
.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 212, 93, 0.35);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}
.photo-card__day {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}
.photo-card__date {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.photo-card__title {
  margin-top: 22px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.photo-card__sub {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36ch;
}
.photo-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  transition: gap 0.3s ease, transform 0.3s ease;
}
.photo-card__btn svg {
  width: 14px;
  height: 14px;
}
.photo-card:hover .photo-card__btn {
  gap: 16px;
}

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

/* ---------- ENCUESTA DE SATISFACCIÓN ---------- */
.survey-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
}
.survey-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border-radius: var(--r-card);
  border: 1px solid var(--hairline-strong);
  background:
    radial-gradient(120% 160% at 100% 0%, var(--yellow-glow), transparent 60%),
    var(--ink-2);
}
.survey-banner__content {
  max-width: 720px;
}
.survey-banner__title {
  margin-top: 16px;
}
.survey-banner__text {
  margin-top: 16px;
  color: var(--cream);
  opacity: 0.78;
}
.survey-banner__btn {
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .survey-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }
  .survey-banner__btn {
    width: 100%;
    justify-content: center;
  }
}
