/* Mercaz Ein Sof — crema + marino y dorado del logotipo */

:root {
  --crema: #FAF7F0;
  --tinta: #16283a;
  --tinta-suave: #45566a;
  --oro: #c5b184;
  --oro-claro: #d9c9a3;
  --oro-oscuro: #96804f;
  --acento: var(--oro-oscuro);
  --plata: #d3d5d1;
  --linea: #e3ddd0;
  --noche: #0e1822;
  --blanco: #fdfcf9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--oro-oscuro); outline-offset: 2px; border-radius: 4px;
}

body {
  font-family: 'Assistant', 'Rubik', system-ui, sans-serif;
  background: var(--crema);
  color: var(--tinta);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 { font-family: 'Rubik', 'Assistant', sans-serif; font-weight: 500; line-height: 1.25; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* ---------- topbar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: color-mix(in srgb, var(--crema) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.topbar.scrolled { border-bottom-color: var(--linea); box-shadow: 0 2px 18px rgba(29,58,82,.06); }
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 1.2rem;
  color: var(--tinta); text-decoration: none; white-space: nowrap;
}
.logo-mark { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--oro); }
.topbar .logo-mark { width: 52px; height: 52px; }
.nav { display: flex; gap: 26px; margin-inline-start: auto; }
.nav a {
  color: var(--tinta-suave); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: color .2s;
}
.nav a:hover { color: var(--acento); }
.btn-top { font-size: .9rem; padding: 9px 20px; }
.burger { display: none; }
.lang-switch { display: flex; gap: 2px; }
.lang-switch a {
  padding: 4px 9px; border-radius: 7px; font-size: .8rem; font-weight: 700;
  color: var(--tinta-suave); text-decoration: none;
}
.lang-switch a:hover { color: var(--acento); }
.lang-switch a.active { background: var(--oro); color: var(--noche); }

/* ---------- botones ---------- */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px;
  font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--oro); color: var(--noche); }
.btn-solid:hover { background: var(--oro-claro); }
.btn-ghost { background: transparent; color: var(--oro-claro); border-color: var(--oro); }
.btn-ghost:hover { background: var(--oro); color: var(--noche); }

/* ---------- hero ---------- */
.hero { position: relative; height: 100svh; min-height: 560px; display: grid; place-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,24,34,.4), rgba(14,24,34,.6));
}
.hero-content { position: relative; text-align: center; color: var(--crema); padding: 0 24px; }
.hero-logo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px var(--oro), 0 8px 40px rgba(0,0,0,.4); margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 500; letter-spacing: .01em; }
.hero-tag { font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 300; margin: 18px auto 34px; max-width: 620px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--crema); font-size: 1.4rem; opacity: .8; animation: bob 2.2s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- evento ---------- */
.event { margin-top: 90px; }
.event-card {
  max-width: 880px; margin: 0 auto; text-align: center;
  background: var(--blanco); color: var(--tinta);
  border: 1px solid var(--oro); border-radius: 22px;
  padding: 44px 40px 40px;
  box-shadow: 0 18px 50px rgba(22,40,58,.12);
}
.event-top { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.event-badge {
  display: inline-block; background: var(--oro); color: var(--noche);
  font-family: 'Rubik', sans-serif; font-size: .95rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 999px;
}
.event-count {
  font-family: 'Rubik', sans-serif; font-size: .95rem; font-weight: 500;
  color: var(--oro-oscuro); border: 1px solid var(--oro); border-radius: 999px; padding: 7px 18px;
}
.event-card h2 { font-size: clamp(2rem, 4.6vw, 2.9rem); color: var(--tinta); margin-bottom: 18px; }
.event-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.event-chips .chip {
  background: color-mix(in srgb, var(--oro) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--oro) 55%, transparent);
  color: var(--oro-oscuro); border-radius: 999px; padding: 8px 18px;
  font-family: 'Rubik', sans-serif; font-size: 1.02rem; font-weight: 500;
}
.event-chips a.chip-pin { text-decoration: none; transition: background .2s, transform .15s; }
.event-chips a.chip-pin:hover { background: color-mix(in srgb, var(--oro) 32%, transparent); transform: translateY(-2px); }
.event-desc { color: var(--tinta); max-width: 640px; margin: 0 auto 24px; font-size: 1.15rem; }
.event-puntos { max-width: 600px; margin: 0 auto 30px; text-align: start; display: flex; flex-direction: column; gap: 10px; }
.event-punto {
  display: flex; gap: 12px; align-items: baseline;
  background: rgba(22,40,58,.04); border: 1px solid var(--linea);
  border-radius: 12px; padding: 12px 18px; font-size: 1.05rem;
}
.event-punto span { color: var(--oro-oscuro); flex: 0 0 auto; }
.event-card .btn-ghost { color: var(--oro-oscuro); border-color: var(--oro); }
.event-card .btn-ghost:hover { background: var(--oro); color: var(--noche); }

/* ---------- intro ---------- */
.intro { padding: 110px 0 90px; text-align: center; }
.intro h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 26px; }
.intro p { color: var(--tinta-suave); font-size: 1.1rem; }
.intro-line { width: 70px; height: 3px; background: var(--acento); margin: 44px auto 0; border-radius: 2px; }

/* ---------- secciones ---------- */
.section-title { font-size: clamp(1.6rem, 3.4vw, 2.2rem); text-align: center; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--tinta-suave); margin-bottom: 40px; }

/* ---------- calendario ---------- */
.calendar { padding: 90px 0 40px; }
.cal-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.cal-item {
  display: flex; align-items: center; gap: 22px;
  background: var(--blanco); border: 1px solid var(--linea); border-radius: 14px;
  padding: 18px 24px; text-decoration: none; color: var(--tinta);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cal-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(22,40,58,.12); border-color: var(--oro); }
.cal-date {
  flex: 0 0 auto; width: 74px; height: 74px; border-radius: 12px;
  background: var(--noche); color: var(--oro-claro);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif; line-height: 1.1;
}
.cal-date b { font-size: 1.7rem; font-weight: 500; }
.cal-date small { font-size: .85rem; }
.cal-info { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cal-info b { font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 1.12rem; }
.cal-info span { color: var(--tinta-suave); font-size: .95rem; }
.cal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.cal-btn {
  display: inline-block; padding: 9px 20px; border-radius: 999px;
  font-family: 'Rubik', sans-serif; font-weight: 500; font-size: .92rem;
  text-decoration: none; color: var(--tinta);
  border: 1.5px solid var(--linea); background: var(--crema);
  transition: border-color .2s, background .2s, transform .15s;
}
.cal-btn:hover { border-color: var(--oro); transform: translateY(-2px); }
.cal-btn-solid { background: var(--oro); border-color: var(--oro); color: var(--noche); }
.cal-btn-solid:hover { background: var(--oro-claro); border-color: var(--oro-claro); }
.cal-empty { text-align: center; color: var(--tinta-suave); }

/* ---------- quiénes somos ---------- */
.team { padding: 30px 0 90px; }
.team-sub { max-width: 720px; margin-inline: auto; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 860px; margin: 46px auto 0; }
.team-card {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: 14px;
  padding: 34px 30px; text-align: center;
}
.team-card img {
  width: 128px; height: 128px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px var(--oro); margin-bottom: 18px;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.team-card p { color: var(--tinta-suave); font-size: .95rem; }

/* ---------- actividades ---------- */
.activities { padding: 30px 0 100px; }
.activities .section-sub { margin-bottom: 46px; }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.act {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: 14px;
  padding: 30px 26px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.act:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(22,40,58,.1); }
.act-icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: color-mix(in srgb, var(--oro) 18%, var(--blanco));
  box-shadow: 0 0 0 1px var(--oro);
}
.act h3 { font-size: 1.15rem; margin-bottom: 10px; }
.act p { color: var(--tinta-suave); font-size: .95rem; }

/* ---------- lodging ---------- */
.lodging { padding: 40px 0 100px; }
.lodging .section-title { margin-bottom: 46px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.card {
  background: var(--blanco); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--linea);
  box-shadow: 0 4px 24px rgba(29,58,82,.05);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(29,58,82,.11); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.045); }
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--tinta-suave); font-size: .98rem; flex: 1; }
.card-link { color: var(--acento); font-weight: 600; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

/* ---------- pitch (noche) ---------- */
.pitch { position: relative; padding: 130px 0; overflow: hidden; }
.pitch-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pitch-veil { position: absolute; inset: 0; background: rgba(14,24,34,.72); }
.pitch-content { position: relative; text-align: center; color: var(--crema); }
.pitch-quote { color: var(--oro-claro); font-family: 'Rubik', sans-serif; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 300; margin-bottom: 22px; }
.pitch-text { font-weight: 300; font-size: 1.08rem; margin-bottom: 36px; opacity: .92; }

/* ---------- retiros (feature) ---------- */
.feature { padding: 100px 0; }
.feature-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center;
}
.feature-img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px;
  box-shadow: 0 18px 44px rgba(14,24,34,.16);
}
.feature-body h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 18px; }
.feature-body > p { color: var(--tinta-suave); margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li { padding-inline-start: 26px; position: relative; margin-bottom: 8px; color: var(--tinta-suave); }
.feature-list li::before { content: '✦'; position: absolute; inset-inline-start: 0; color: var(--acento); }

/* ---------- area strip ---------- */
.area { padding: 100px 0; }
.strip-wrap { position: relative; }
.strip {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip-item { flex: 0 0 300px; scroll-snap-align: start; }
.strip-item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; display: block;
}
.strip-item figcaption { text-align: center; margin-top: 10px; font-weight: 600; color: var(--tinta-suave); }
.strip-btn {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--linea);
  background: var(--blanco); color: var(--tinta); font-size: 1.5rem; line-height: 1;
  cursor: pointer; box-shadow: 0 3px 14px rgba(29,58,82,.12);
  transition: background .2s, color .2s;
}
.strip-btn:hover { background: var(--oro); color: var(--noche); border-color: var(--oro); }
.strip-btn.prev { left: -12px; }
.strip-btn.next { right: -12px; }

/* ---------- mosaic ---------- */
.gallery { padding: 20px 0 100px; }
.gallery .section-title { margin-bottom: 40px; }
.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px;
}
.mosaic img, .mosaic video { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; cursor: zoom-in; }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* ---------- historial ---------- */
.history { padding: 30px 0 100px; }
.hist-line { position: relative; padding-inline-start: 34px; margin-top: 10px; }
.hist-line::before {
  content: ''; position: absolute; inset-block: 12px; inset-inline-start: 9px; width: 2px;
  background: linear-gradient(to bottom, var(--oro) 85%, transparent);
}
.hist-item {
  position: relative;
  background: var(--blanco); border: 1px solid var(--linea); border-radius: 14px;
  padding: 24px 26px; margin-bottom: 22px;
}
.hist-item::before {
  content: ''; position: absolute; inset-inline-start: -31px; top: 30px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--oro);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oro) 25%, var(--crema));
}
.hist-head { display: flex; align-items: center; gap: 18px; }
.hist-date {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 12px;
  background: color-mix(in srgb, var(--oro) 20%, var(--blanco));
  box-shadow: inset 0 0 0 1px var(--oro); color: var(--tinta);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif; line-height: 1.1;
}
.hist-date b { font-size: 1.4rem; font-weight: 500; }
.hist-date small { font-size: .72rem; color: var(--acento); }
.hist-tit { display: flex; flex-direction: column; gap: 2px; }
.hist-tit b { font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 1.08rem; }
.hist-tit span { color: var(--tinta-suave); font-size: .93rem; }
.hist-desc { color: var(--tinta-suave); font-size: .97rem; margin-top: 14px; }
.hist-media { display: flex; gap: 12px; margin-top: 16px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 4px; }
.hist-media img {
  height: 150px; width: auto; border-radius: 9px; cursor: zoom-in; display: block;
  transition: transform .2s;
}
.hist-media img:hover { transform: scale(1.03); }
.vthumb { position: relative; flex: 0 0 auto; }
.vthumb::after {
  content: '▶'; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,.6); pointer-events: none;
}
.hist-note { text-align: center; color: var(--tinta-suave); font-style: italic; margin-top: 26px; }

/* ---------- cta band ---------- */
.cta-band {
  background: var(--tinta); color: var(--crema);
  text-align: center; padding: 80px 0;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-bottom: 14px; }
.cta-band p { opacity: .85; margin-bottom: 30px; }
.cta-band h2 { color: var(--oro-claro); }

/* ---------- contacto ---------- */
.contact { padding: 100px 0; }
.contact .section-title { margin-bottom: 30px; }
.contact-photo { margin: 0 auto 36px; max-width: 560px; text-align: center; }
.contact-photo img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 0 0 2px var(--oro), 0 16px 40px rgba(14,24,34,.15);
}
.contact-photo figcaption { margin-top: 12px; font-family: 'Rubik', sans-serif; font-weight: 500; color: var(--tinta-suave); }
.contact-people {
  display: flex; justify-content: center; gap: 44px; flex-wrap: wrap;
}
.person { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.person-name { font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 1.1rem; }
.person a { color: var(--tinta-suave); text-decoration: none; }
.person a:hover { color: var(--acento); }
.person-tel { font-size: 1.05rem; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 10px;
  background: #1fa855; color: #fff; padding: 13px 26px;
}
.btn-wa:hover { background: #24c261; color: #fff; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--oro-claro); }

/* ---------- footer ---------- */
.footer { background: var(--noche); color: var(--plata); padding: 60px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo { color: var(--oro-claro); margin-bottom: 12px; }
.footer p { font-size: .95rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--plata); text-decoration: none; }
.footer-links a:hover { color: var(--oro-claro); }
.footer-legal { text-align: center; margin-top: 46px; font-size: .85rem; opacity: .55; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14, 24, 34, .93);
  display: grid; place-items: center; padding: 4vmin;
}
.lightbox[hidden] { display: none; }
.lb-content img, .lb-content video {
  max-width: 92vw; max-height: 88vh; border-radius: 10px;
  box-shadow: 0 20px 70px rgba(0,0,0,.5);
}
.lb-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: var(--crema);
  font-size: 1.9rem; cursor: pointer; line-height: 1;
}
.lb-close:hover { color: var(--oro-claro); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- móvil ---------- */
@media (max-width: 900px) {
  .cards, .cards-2 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .act-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 460px; }
  .cal-item { flex-wrap: wrap; gap: 14px; }
  .cal-actions { width: 100%; }
  .cal-btn { flex: 1 1 auto; text-align: center; padding: 12px 16px; }
  .feature-inner { grid-template-columns: 1fr; gap: 30px; }
  .feature-img img { aspect-ratio: 16/10; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .btn-top { display: none; }
  .burger {
    display: flex; flex-direction: column; gap: 5px;
    margin-inline-start: auto; background: none; border: none; cursor: pointer; padding: 6px;
  }
  .burger span { width: 24px; height: 2px; background: var(--tinta); border-radius: 2px; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--crema);
    border-bottom: 1px solid var(--linea); padding: 8px 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 28px; }
  .strip-item { flex: 0 0 240px; }
}

/* ---------- evento con foto + precio + incluye ---------- */
.event-card.con-foto {
  max-width: 1040px; display: grid; grid-template-columns: 380px 1fr;
  text-align: start; overflow: hidden; padding: 0;
}
.event-img { min-height: 100%; }
.event-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-card.con-foto .event-body { padding: 40px 38px 36px; }
.event-card.con-foto .event-top,
.event-card.con-foto .event-chips,
.event-card.con-foto .hero-ctas { justify-content: flex-start; }
.event-card.con-foto .event-desc,
.event-card.con-foto .event-puntos,
.event-card.con-foto .event-incluye { margin-inline: 0; }
.event-precio {
  display: inline-block; background: color-mix(in srgb, var(--oro) 16%, transparent);
  border: 1px solid var(--oro); color: var(--tinta); border-radius: 12px;
  padding: 10px 18px; font-size: 1.05rem; margin-bottom: 22px;
}
.event-incluye { max-width: 600px; margin: 0 auto 24px; text-align: start; }
.event-incluye h3 {
  font-size: .9rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--oro-oscuro); margin-bottom: 10px; font-weight: 500;
}
.event-incluye ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.event-incluye li { padding-inline-start: 24px; position: relative; color: var(--tinta); font-size: 1.05rem; }
.event-incluye li::before { content: '✓'; position: absolute; inset-inline-start: 0; color: var(--oro-oscuro); }
@media (max-width: 900px) {
  .event-card.con-foto { grid-template-columns: 1fr; }
  .event-img img { max-height: 260px; }
}

/* móvil primero: la tarjeta del evento cómoda en pantalla pequeña */
@media (max-width: 700px) {
  .event { margin-top: 76px; }
  .event-card { padding: 32px 20px 28px; border-radius: 18px; }
  .event-card.con-foto .event-body { padding: 28px 20px 26px; }
  .event-card h2 { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }
  .event-chips { gap: 8px; }
  .event-chips .chip { font-size: .98rem; padding: 8px 14px; }
  .event-desc { font-size: 1.1rem; }
  .event-card .hero-ctas { flex-direction: column; }
  .event-card .hero-ctas .btn { width: 100%; text-align: center; padding: 15px 20px; }
}
