/* ============================================================
   EMAÚS SMR — Retiro Hombres · estilos globales + componentes
   (porta el bloque <style> del index estático y los estados
    hover que React resolvía con estado, ahora en CSS puro)
   ============================================================ */

html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
html { scroll-behavior: smooth; }
::selection { background: var(--green-200); color: var(--green-900); }

body {
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* Reference style: squared corners everywhere (keep only circles/dots) */
:root { --radius-xs: 0; --radius-sm: 0; --radius-md: 0; --radius-lg: 0; --radius-xl: 0; }

.emh-reservar > *, .emh-hero > *, .emh-2col > *, .emh-faq-grid > *,
.emh-bene-head > *, .emh-conf-head > * { min-width: 0; }

.emh-serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic; font-weight: 500; letter-spacing: 0; text-transform: none;
}
.emh-stripes { background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 12px); }
.emh-stripes-dark { background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 12px); }

/* ---- Loader ---- */
@keyframes emhPulse { 0% { transform: scale(1); opacity: .6; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }
@keyframes emhRise { from { transform: translateY(16px); } to { transform: none; } }
@keyframes emhShake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-6px);} 75%{transform:translateX(6px);} }
@keyframes emhLogoPulse { 0%,100%{transform:scale(0.86);} 50%{transform:scale(1.06);} }
#emh-loader { position: fixed; inset: 0; z-index: 9999; background: var(--green-900); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; transition: opacity .55s var(--ease-standard); }
#emh-loader img { height: clamp(96px,22vw,150px); filter: brightness(0) invert(1); animation: emhLogoPulse 1.15s var(--ease-standard) infinite; }
#emh-loader-pct { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.24em; font-size: 14px; color: var(--green-200); }

/* ---- Reveal ---- */
.emh-reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .emh-reveal { animation: emhRise .7s var(--ease-out); }
}

/* ---- Hover lifts ---- */
.emh-scale { transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out); }
@media (prefers-reduced-motion: no-preference) {
  .emh-scale:hover { transform: scale(1.035); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
}

/* ============================================================
   BUTTONS (antes Button.jsx con hover por estado)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.01em;
  line-height: 1; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .14s, border-color .14s, transform .14s, box-shadow .14s;
}
.btn:active { transform: translateY(1px); }
.btn-sm { font-size: 14px; padding: 8px 16px; gap: 8px; min-height: 36px; }
.btn-md { font-size: 16px; padding: 11px 22px; gap: 9px; min-height: 44px; }
.btn-lg { font-size: 18px; padding: 15px 30px; gap: 10px; min-height: 54px; }
.btn-full { width: 100%; }

.btn-primary { background: var(--brand); color: var(--brand-on); border-color: var(--brand); box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); }

.btn-secondary { background: transparent; color: var(--brand-strong); border-color: var(--brand); }
.btn-secondary:hover { background: var(--brand-tint); }

.btn-ghost { background: transparent; color: var(--brand-strong); border-color: transparent; }
.btn-ghost:hover { background: var(--brand-tint); }

.btn-ondark { background: var(--white); color: var(--brand-strong); border-color: var(--white); }
.btn-ondark:hover { background: var(--beige-200); }

/* WhatsApp button */
.wa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; cursor: pointer; font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.01em; white-space: nowrap; color: #fff; background: #25D366;
  box-shadow: 0 6px 16px rgba(37,211,102,0.32);
  transition: background var(--dur-fast) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.wa-btn:hover { background: #1EBE57; box-shadow: 0 10px 24px rgba(37,211,102,0.42); transform: translateY(-1px); }
.wa-btn:active { transform: translateY(1px); }
.wa-btn-sm { padding: 8px 16px; min-height: 36px; font-size: 14px; }
.wa-btn-md { padding: 11px 20px; min-height: 44px; font-size: 16px; }
.wa-btn-lg { padding: 15px 28px; min-height: 54px; font-size: 18px; }
.wa-btn-full { width: 100%; }

/* ============================================================
   REGISTRO — inputs / selects / botones (form de inscripción)
   ============================================================ */
.reg-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--beige-700); }
.reg-field { display: flex; flex-direction: column; gap: 8px; }
.reg-input-wrap { display: flex; align-items: center; gap: 10px; width: 100%; background: #fff; border: 1.5px solid transparent; padding: 0 16px; min-height: 52px; transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard); }
.reg-input-wrap:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px var(--focus-ring); }
.reg-input-wrap.invalid { border-color: var(--danger); }
.reg-input-wrap input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; padding: 14px 0; font-family: var(--font-body); font-size: 15.5px; color: var(--ink-900); }
.reg-select {
  width: 100%; background: #fff; border: 1.5px solid transparent; border-radius: 0;
  padding: 14px 16px; font-family: var(--font-body); font-size: 15.5px; color: var(--ink-900);
  outline: none; min-height: 52px; box-sizing: border-box; appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2333392C' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.reg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--brand); color: var(--white); border: none; border-radius: 0;
  padding: 16px 28px; font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; min-height: 54px;
  transition: background var(--dur-fast) var(--ease-standard);
}
.reg-btn:hover { background: var(--brand-strong); }
.reg-hint { margin: 2px 0 0; font-size: 12.5px; color: var(--beige-400); line-height: 1.5; }

/* ============================================================
   HEADER (estado sólido al hacer scroll — antes useState en JS)
   ============================================================ */
.emh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.emh-header img { filter: brightness(0) invert(1); transition: filter var(--dur-base) var(--ease-standard); }
.emh-header.is-solid { background: rgba(250,248,243,0.86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.emh-header.is-solid img { filter: none; }

/* botón "Reservar" de la barra — onDark sobre hero, primary al volverse sólida */
.nav-cta-btn { background: var(--white); color: var(--brand-strong); border-color: var(--white); }
.nav-cta-btn:hover { background: var(--beige-200); }
.emh-header.is-solid .nav-cta-btn { background: var(--brand); color: var(--brand-on); border-color: var(--brand); box-shadow: var(--shadow-xs); }
.emh-header.is-solid .nav-cta-btn:hover { background: var(--brand-strong); border-color: var(--brand-strong); }

.emh-nav-cta { transition: opacity var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); }
.emh-nav-cta.hidden { opacity: 0; transform: scale(0.96); pointer-events: none; }

/* ============================================================
   BENEFICIOS — paneles expandibles (antes active index en JS)
   ============================================================ */
.emh-panel {
  flex: 1 1 0%; min-width: 0; background: rgba(245,242,234,0.04);
  border: 1px solid rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 26px 24px; display: flex; flex-direction: column; overflow: hidden; cursor: default;
  transition: flex .55s var(--ease-out), background .4s var(--ease-standard);
}
.emh-panel.is-open { flex: 3.2 1 0%; background: rgba(245,242,234,0.1); }
.emh-panel .emh-panel-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px,3.4vw,48px); line-height: 0.9; color: rgba(194,212,182,0.6); transition: color .4s var(--ease-standard); }
.emh-panel.is-open .emh-panel-num { color: var(--white); }
.emh-panel .emh-panel-ic { color: var(--green-200); transition: color .4s var(--ease-standard); }
.emh-panel.is-open .emh-panel-ic { color: var(--white); }
.emh-panel-title { margin: 0; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 14.5px; font-weight: 600; line-height: 1.25; color: var(--white); opacity: 0; max-height: 0; overflow: hidden; transition: opacity .35s var(--ease-standard), max-height .5s var(--ease-standard); }
.emh-panel.is-open .emh-panel-title { opacity: 1; max-height: 80px; }
.emh-panel-desc { margin: 0; font-size: 14.5px; line-height: 1.58; color: var(--beige-200); opacity: 0; max-height: 0; overflow: hidden; transition: opacity .4s var(--ease-standard), max-height .5s var(--ease-standard); }
.emh-panel.is-open .emh-panel-desc { opacity: 1; max-height: 220px; }

/* ============================================================
   CONFIANZA — tarjetas con hover (antes useState en JS)
   ============================================================ */
.emh-conf-card { display: flex; flex-direction: column; min-height: 240px; padding: 24px 22px; width: 100%; background: var(--green-50); border: 1px solid var(--green-200); transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard); }
.emh-conf-card .emh-conf-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 7px 13px 7px 9px; background: var(--white); border: 1px solid var(--green-200); border-radius: var(--radius-pill); white-space: nowrap; transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard); }
.emh-conf-card .emh-conf-tag-ic { color: var(--green-700); transition: color var(--dur-base) var(--ease-standard); }
.emh-conf-card .emh-conf-tag-tx { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green-800); white-space: nowrap; transition: color var(--dur-base) var(--ease-standard); }
.emh-conf-card .emh-conf-desc { margin: auto 0 0; padding-top: 28px; font-size: 15.5px; line-height: 1.6; color: var(--text-body); transition: color var(--dur-base) var(--ease-standard); }
@media (hover: hover) {
  .emh-conf-card:hover { background: var(--green-700); border-color: var(--green-700); }
  .emh-conf-card:hover .emh-conf-tag { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); }
  .emh-conf-card:hover .emh-conf-tag-ic { color: var(--green-200); }
  .emh-conf-card:hover .emh-conf-tag-tx { color: var(--white); }
  .emh-conf-card:hover .emh-conf-desc { color: var(--beige-200); }
}

/* ============================================================
   FAQ — acordeón (antes useState en JS)
   ============================================================ */
.emh-faq-item { border-top: 1px solid var(--border); }
.emh-faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 2px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); }
.emh-faq-q { font-size: 17.5px; font-weight: 600; color: var(--text-strong); line-height: 1.4; transition: color var(--dur-base) var(--ease-standard); }
.emh-faq-item.is-open .emh-faq-q { color: var(--text-brand); }
.emh-faq-sign { flex-shrink: 0; position: relative; width: 20px; height: 20px; margin-top: 3px; }
.emh-faq-sign .h { position: absolute; top: 9px; left: 0; width: 20px; height: 1.5px; background: var(--green-700); }
.emh-faq-sign .v { position: absolute; top: 0; left: 9px; width: 1.5px; height: 20px; background: var(--green-700); transform: scaleY(1); transform-origin: center; transition: transform var(--dur-base) var(--ease-standard); }
.emh-faq-item.is-open .emh-faq-sign .v { transform: scaleY(0); }
.emh-faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-base) var(--ease-standard); }
.emh-faq-item.is-open .emh-faq-body { grid-template-rows: 1fr; }
.emh-faq-body > div { overflow: hidden; }
.emh-faq-a { margin: 0; padding: 0 40px 24px 2px; font-size: 16px; line-height: 1.68; color: var(--text-muted); text-wrap: pretty; }

/* ---------------------------------------------------------------
   RESPONSIVE (idéntico al index estático)
   --------------------------------------------------------------- */
@media (max-width: 1000px) {
  .emh-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .emh-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .emh-reservar { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 850px) {
  .emh-hero { grid-template-columns: 1fr !important; gap: 34px !important; }
  .emh-hero-cd { justify-content: flex-start !important; }
  .emh-faq-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .emh-2col { grid-template-columns: 1fr !important; gap: 32px !important; }
  .emh-reservar { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 600px) {
  .emh-cd-sep { display: none; }
  .emh-cta { width: 100%; }
  .emh-cta > * { width: 100% !important; flex: none !important; }
  .emh-card-row { grid-template-columns: 1fr !important; }
  .emh-step-label { display: none; }
  .emh-stepper { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .emh-panels { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; height: auto !important; padding-bottom: 10px; }
  .emh-panel { flex: 0 0 80% !important; scroll-snap-align: start; min-height: 380px; }
  .emh-panel-desc { opacity: 1 !important; max-height: 240px !important; }
  .emh-panel-title { opacity: 1 !important; max-height: 80px !important; }
  .emh-conf-row { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
  .emh-conf-row > * { flex: 0 0 76% !important; scroll-snap-align: start; }
  .emh-det-head { flex-direction: column !important; align-items: flex-start !important; gap: 14px !important; }
  .emh-hero-ed { flex-basis: 100%; padding-left: 38px; }
  .emh-hero-dot { display: none; }
  .emh-nav a:not(.nav-cta-btn) { display: none; }
  .emh-grid-2, .emh-grid-3 { grid-template-columns: 1fr !important; }
  .emh-detalles-grid { grid-template-columns: 1fr !important; }
  .emh-detalles-grid > div { border-right: none !important; }
  .emh-footer { grid-template-columns: 1fr !important; gap: 28px !important; }
  .emh-sticky { display: block !important; }
  body { padding-bottom: 76px; }
}

/* ============================================================
   CAMINANTES EVENTOS - formulario montado dentro de Reservar
   ============================================================ */
body.retiro-caminantes-page #reservar {
  background: #12250c;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
body.retiro-caminantes-page #reservar .emh-reservar-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.12;
}
body.retiro-caminantes-page #reservar .emh-reservar-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(147, 181, 131, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(20, 30, 14, 0.55), rgba(16, 26, 12, 0.9));
}
body.retiro-caminantes-page #reservar .emh-reservar {
  position: relative;
  flex: 1 1 auto;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 108px) 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 648px);
  gap: 64px;
  align-items: center;
}
body.retiro-caminantes-page #reservar .emh-reveal:first-child { 
    display: flex; 
    /* justify-content: center;  */
}
body.retiro-caminantes-page #reservar .emh-reservar-copy {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
body.retiro-caminantes-page #reservar .emh-reservar-kicker {
  color: var(--green-200);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
body.retiro-caminantes-page #reservar .emh-reservar-title {
  color: #ffffff;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  max-width: 15.5ch;
  text-wrap: balance;
}
body.retiro-caminantes-page #reservar .emh-reservar-description {
  margin: 0;
  color: #F0EBDF;
  font-size: 17px;
  line-height: 1.6;
  max-width: 40ch;
  font-family: (--font-sans);
}
body.retiro-caminantes-page #reservar .emh-reservar-countdown {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}
body.retiro-caminantes-page #reservar .emh-reservar-countdown-number {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
body.retiro-caminantes-page #reservar .emh-reservar-countdown-label {
  font-size: 24px;
  color: var(--beige-200);
}
body.retiro-caminantes-page #reservar .emh-reservar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 2px;
}
body.retiro-caminantes-page #reservar .emh-reservar-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.retiro-caminantes-page #reservar .emh-reservar-meta-value {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body.retiro-caminantes-page #reservar .emh-reservar-meta-label {
  color: var(--green-200);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.retiro-caminantes-page #reservar .emh-reservar-form-slot {
  animation-delay: 120ms;
  display: flex;
  width: 100%;
}
body.retiro-caminantes-page #reservar .emh-reservar-form-mount {
  width: 100%;
}

body.retiro-caminantes-page .retiro-eventos-shell,
body.retiro-caminantes-page .retiro-eventos-form,
body.retiro-caminantes-page .retiro-eventos-form > div { width: 100%; font-family: var(--font-body); }
body.retiro-caminantes-page .retiro-eventos-form {
  max-width: 625px;
  margin-left: auto;
  display: flex;
  align-self: stretch;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-card {
  min-height: 100%;
  width: 100%;
  background: rgba(245, 242, 234, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(110, 150, 90, 0.14), 0 50px 100px -36px rgba(0, 0, 0, 0.65);
  padding: clamp(24px, 3.2vw, 34px);
  display: flex;
  flex-direction: column;
  /* max-height: calc(100svh - 150px); */
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-kicker {
  color: var(--beige-700);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-title {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-style: italic;
  font-weight: 500;
  margin: 10px 0 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 4px 0 26px;
  padding: 0;
  width: 648px;
  color: #a9ae9a;
  font-family: var(--font-body);
  font-size: 14px;
  list-style: none;
}

@media (max-width: 600px) {
    body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper {
        width: 132.5% !important;
    }
    body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-icon {
        width: 20px !important;
        height: 20px !important;
        margin-left:2px !important;
        /* margin: 15px !important; */
        padding: 15px !important;
        font-size: 10px !important;
    }
    
    body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-icon--number { font-size: 13px; font-weight: 600; line-height: 1; }
    body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-icon--check { background: var(--brand); border-color: var(--brand); color: #fff; }
    body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-check { width: 16px; height: 16px; display: block; }
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper li {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
}
/* body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper li:first-child {
  justify-content: flex-start;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper li:nth-child(2) {
  justify-content: center;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper li:last-child {
  justify-content: flex-end;
} */
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper li:not(:last-child)::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  margin: 0 14px;
  background: rgba(180, 193, 162, 0.25);
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-stepper li > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-label {
  display: inline;
}
body.retiro-caminantes-page .retiro-eventos-form .text-white,
body.retiro-caminantes-page .retiro-eventos-form li.text-white,
body.retiro-caminantes-page .retiro-eventos-form li.text-white span { color: #d8ddca; }
body.retiro-caminantes-page .retiro-eventos-form .text-gray-400,
body.retiro-caminantes-page .retiro-eventos-form li.text-gray-400,
body.retiro-caminantes-page .retiro-eventos-form li.text-gray-400 span { color: #a9ae9a; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.32);
  background: transparent;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-icon--number { font-size: 13px; font-weight: 600; line-height: 1; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-icon--check { background: var(--brand); border-color: var(--brand); color: #fff; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-step-check { width: 16px; height: 16px; display: block; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-landing-panel {
  background: rgba(245,242,234,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-top: 3px solid var(--green-300);
  padding: clamp(22px, 3vw, 30px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-step { min-height: 0; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-step { display: flex; flex-direction: column; gap: 18px; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-section-title {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 4px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-field,
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-actions,
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-actions--verification { display: flex; flex-direction: column; gap: 8px; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-actions { align-items: flex-start; margin-top: 6px; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--green-200);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-back::before { content: "←"; font-size: 15px; line-height: 1; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-notice {
  padding: 12px 14px;
  border: 1px solid rgba(191, 150, 74, 0.45);
  background: rgba(94, 68, 25, 0.28);
  color: #ead9af;
  font-size: 14px;
  line-height: 1.55;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-notice strong { color: #ffffff; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-label {
  color: var(--beige-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0px !important;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input-group { display: flex; align-items: stretch; gap: 0; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input-wrap--icon {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: #fff;
  border: 1.5px solid transparent;
  padding: 0 16px;
  min-height: 52px;
  overflow: hidden;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input-wrap--icon .retiro-editorial-input {
  flex: 1 1 auto;
  padding-left: 0;
  background: transparent;
  border: 0;
  margin: 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input-icon {
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  pointer-events: none;
  flex: 0 0 18px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input-icon svg { display: block; width: 18px; height: 18px; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input,
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-select {
  min-height: 52px;
  height: 52px;
  background: #fff;
  border: 1.5px solid transparent;
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.2;
  padding: 14px 16px;
  box-sizing: border-box;
}
body.retiro-caminantes-page .retiro-eventos-form #documento {
  width: 100% !important;
  flex: 1 1 auto !important;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-select {
  flex: 0 0 104px;
  width: 104px;
  padding-right: 30px;
  border-right: 1px solid rgba(28,33,24,0.18);
  background-position: right 14px center;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-select--full { width: 100%; flex: 1 1 auto; border-right: 0; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input::placeholder,
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-select::placeholder { color: var(--text-faint); opacity: 1; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input-wrap--icon:focus-within,
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-input:focus,
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-select:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact .retiro-editorial-input-wrap--icon:focus-within {
  border-color: transparent;
  box-shadow: none;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact .retiro-editorial-input:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  background: #5a833a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-editorial-button:hover { background: #527735; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-summary { margin-top: 8px; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: end;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-summary__value {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 46px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-summary__copy { color: #ffffff; margin-top: 12px; font-size: 12.5px; line-height: 1.5; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-card {
  width: 100%;
  max-width: 100%;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-card--checkout {
  border: 1px solid rgba(182, 197, 161, 0.14);
  background: rgba(33, 47, 25, 0.55);
  padding: 18px;
} */
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-host {
  /* background: #35402C;
  border: 1px solid rgba(182, 197, 161, 0.14);
  padding: 14px 14px 12px; */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick { min-height: 420px; }
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick > div,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick form,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick section { background: transparent; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-bank__panel {
  background: #22301b;
  border: 1px solid rgba(182, 197, 161, 0.14);
  padding: 20px 18px;
}
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick input[name*="HOLDER_NAME"],
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick input[name*="EMAIL"]{
    margin-bottom: 10px !important;
}

body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick input::placeholder,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick textarea::placeholder {
    color: #8a8f86 !important;
    font-size: 15.5px !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    font-style: normal !important;
    opacity: 1 !important;
}

body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick #cardNumber,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick #expirationDate,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick #securityCode,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick input[inputmode="numeric"],
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick input[inputmode="decimal"],
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .input-container-wsQRdj,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .input-container-wsQRdj input {
    color: #1c2118 !important;
    -webkit-text-fill-color: #1c2118 !important;
    background: #f4f3f1 !important;
    font-family: var(--font-body) !important;
    font-size: 15.5px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    min-height: 3.3rem !important;
    height: 3.3rem !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
}

body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick input:focus,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick select:focus,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick textarea:focus,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick iframe:focus,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .input-container-wsQRdj:focus-within,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .andes-form-control--focused,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .andes-form-control__field:focus-within,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .andes-form-control__control:focus-within {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

body.retiro-caminantes-page .retiro-eventos-form  #mp-card-payment-brick .andes-button,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .andes-button--loud,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick .andes-button--progress,
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick button[type="submit"] {
    border: 1px solid #3f6432 !important;
    background: #3f6432 !important;
    color: white !important;
    fill: white !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    min-height: 54px !important;
    height: 54px !important;
    padding: 16px 28px !important;
    border-radius: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: flex-start !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
    font-family: inherit !important;
}
body.retiro-caminantes-page .retiro-eventos-form #mp-card-payment-brick button[type="submit"] .fade-wrapper-3PVuVZ .svelte-1yy4rvb{
    display: contents !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-bank-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-bank-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #d9ceb2;
  font-size: 14.5px;
  line-height: 1.55;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-eventos-bank-copy strong { color: #ffffff; font-weight: 600; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-bank__dropzone {
  min-height: 152px;
  border: 1.5px dashed rgba(255,255,255,0.28);
  background: rgba(245,242,234,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 18px;
  cursor: pointer;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-bank__dropzone-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-bank__dropzone-title { color: #ffffff; font-size: 15px; line-height: 1.4; }
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-bank__dropzone-meta,
body.retiro-caminantes-page .retiro-eventos-form .retiro-payment-bank__file-pill {
  color: #cdbf9a;
  font-size: 12.5px;
  line-height: 1.5;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card {
  width: 100%;
  min-height: 420px;
  /* border: 1px solid rgba(182, 197, 161, 0.18);
  background: rgba(245, 242, 234, 0.03);*/
  padding: 46px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__copy,
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__status {
  color: #e9e0ca;
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 31rem;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5a833a;
  color: #ffffff;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__headline {
  margin: 0;
  color: #f5f0e4;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__copy strong {
  color: #ffffff;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__copy--center {
  text-align: center;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__actions {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__wa,
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__done {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #5a833a;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__wa {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__wa:hover {
  background: #20be5b;
  border-color: #20be5b;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__done {
  background: #5a833a;
  border-color: #5a833a;
  color: #ffffff;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__done:hover {
  background: #4e7433;
  border-color: #4e7433;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__wa svg,
body.retiro-caminantes-page .retiro-eventos-form .retiro-verification-card__done svg {
  width: 18px;
  height: 18px;
  display: block;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-card {
  width: 100%;
  border: 1px solid rgba(182, 197, 161, 0.18);
  background: rgba(245, 242, 234, 0.03);
  padding: 28px 26px 26px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-counter {
  margin: 0;
  color: var(--beige-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-progress {
  width: 100%;
  height: 4px;
  margin: 14px 0 28px;
  background: rgba(182, 197, 161, 0.2);
  overflow: hidden;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-progress > span {
  display: block;
  height: 100%;
  background: #8cad63;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-body {
  flex: 1 1 auto;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-question {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-required {
  color: #d17154;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-input {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: #f4f3f1;
  color: #1c2118;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 15.5px;
  box-shadow: none;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-input::placeholder {
  color: #8a8f86;
  opacity: 1;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-input--inline {
  margin: 10px 0 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3ebd9;
  font-size: 15px;
  line-height: 1.45;
  cursor: pointer;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-option input[type="radio"],
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #5a833a;
  flex: 0 0 auto;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-back {
  border: 0;
  background: transparent;
  color: #c7cfbc;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-cuestionario-back[disabled] {
  opacity: 0.35;
  cursor: default;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(182, 197, 161, 0.14);
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact__remove {
  border: 0;
  background: transparent;
  color: #f0e6cd;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact__add {
  align-self: flex-start;
  min-height: 40px;
  border: 1px solid rgba(182, 197, 161, 0.55);
  background: transparent;
  color: #dbe4d0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px;
  cursor: pointer;
}
body.retiro-caminantes-page .retiro-eventos-form .retiro-emergency-contact__add:hover {
  background: rgba(138, 173, 99, 0.12);
}
body.retiro-caminantes-page .not-upper{
    text-transform: capitalize !important;
}
@media (max-width: 767px) {
  #reservar { min-height: auto; display: block; }
  #reservar .emh-reservar {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 56px 22px 64px;
  }
  #reservar .emh-reveal:first-child { justify-content: flex-start; }
  #reservar .emh-reveal:first-child h2.emh-serif { max-width: none; }
  .retiro-eventos-form { max-width: 100%; }
  .retiro-eventos-form .retiro-landing-card { max-height: none; min-height: auto; }
  .retiro-eventos-form .retiro-editorial-title { font-size: 32px; }
  .retiro-eventos-form .retiro-landing-stepper {
    width: 100%;
    justify-content: space-between;
    font-size: 0;
    margin: 4px 0 18px;
  }
  .retiro-eventos-form .retiro-landing-stepper li {
    flex: 1 1 0%;
    min-width: 0;
  }
  /* .retiro-eventos-form .retiro-landing-stepper li:first-child {
    justify-content: flex-start;
  }
  .retiro-eventos-form .retiro-landing-stepper li:nth-child(2) {
    justify-content: center;
  }
  .retiro-eventos-form .retiro-landing-stepper li:last-child {
    justify-content: flex-end;
  } */
  .retiro-eventos-form .retiro-landing-stepper li:not(:last-child)::after {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    margin: 0 6px;
  }
  .retiro-eventos-form .retiro-landing-stepper li > span {
    gap: 0;
    white-space: nowrap;
    min-width: 0;
  }
  .retiro-eventos-form .retiro-landing-step-label {
    display: none !important;
    width: 0 !important;
    overflow: hidden !important;
  }
  .retiro-eventos-form .retiro-landing-step-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-width: 1px;
  }
  .retiro-eventos-form .retiro-landing-step-icon--number {
    font-size: 9px;
  }
  .retiro-eventos-form .retiro-landing-step-check {
    width: 10px;
    height: 10px;
  }
  .retiro-eventos-form .retiro-landing-panel { padding: 18px 18px 20px; }
  .retiro-eventos-form .retiro-payment-summary__grid { grid-template-columns: 1fr; gap: 14px; }
}
