/* =========================================================
   Tourevo — /cotizador/ & /pago/ page styles
   Reuses design tokens from styles.css
   ========================================================= */

.page-plain {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-plain main { flex: 1 0 auto; }

.page-hero {
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(2.5rem, 6vh, 4rem);
}
.page-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin: .8rem 0 .6rem;
}
.page-title em {
  font-style: italic;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 56ch;
  line-height: 1.6;
}

.primary-nav .active { color: var(--gold-soft); }

.card-surface {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

/* =============================
   COTIZADOR
   ============================= */

.wizard-section {
  padding: 0 0 6rem;
}
.wizard-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
}
@media (max-width: 900px) {
  .wizard-section .container { grid-template-columns: 1fr; }
}

.wiz-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
  padding: 0;
  margin: 0 0 1.5rem;
  grid-column: 1 / -1;
}
.wiz-steps li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  cursor: pointer;
  transition: all .25s ease;
}
.wiz-steps li span {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-weight: 700;
  font-size: .85rem;
}
.wiz-steps li.done {
  color: rgba(255,255,255,.85);
  border-color: rgba(52,211,153,.4);
}
.wiz-steps li.done span { background: var(--emerald); color: #fff; }
.wiz-steps li.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(251,191,36,.18), rgba(249,115,22,.18));
  border-color: rgba(251,191,36,.5);
}
.wiz-steps li.active span {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #0a1628;
}
@media (max-width: 720px) {
  .wiz-steps { grid-template-columns: repeat(5, 1fr); font-size: .7rem; }
  .wiz-steps li { padding: .5rem .4rem; justify-content: center; }
  .wiz-steps li b { display: none; }
}

.wiz-shell {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.wiz-panel {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
}
.wiz-panel.active { display: block; }

.wiz-panel-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 .35rem;
}
.wiz-panel-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.wiz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .wiz-grid { grid-template-columns: 1fr; }
}

.wiz-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.wiz-field > span {
  font-weight: 600;
  color: var(--ink);
}
.wiz-field > span em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}
.wiz-field input,
.wiz-field select,
.wiz-field textarea {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: .75rem .85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wiz-field input:focus,
.wiz-field select:focus,
.wiz-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251,191,36,.2);
}
/* Validation error state — applied by validateForm() in pago.js */
.wiz-field.is-invalid input,
.wiz-field.is-invalid select,
.wiz-field.is-invalid textarea,
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #dc2626 !important;
  background: #fef2f2;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .15);
  animation: invalidShake .35s cubic-bezier(.36, .07, .19, .97) both;
}
.pay-check.is-invalid,
.pay-check input.is-invalid {
  color: #dc2626;
}
.pay-check input.is-invalid {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
  border-radius: 3px;
}
@keyframes invalidShake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

.stepper {
  display: inline-grid;
  /* 44px min tap target per WCAG 2.5.5; desktop stays at 2.75rem */
  grid-template-columns: 2.75rem 4rem 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.stepper button {
  background: #f6f4ef;
  border: 0;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  min-height: 44px;
  touch-action: manipulation;
  transition: background .15s ease;
}
.stepper button:hover { background: #ece7da; }
.stepper button:active { background: #dfd9c8; }
.stepper button:focus-visible {
  outline: 2px solid var(--emerald-deep, #10b981);
  outline-offset: -2px;
}
.stepper input {
  border: 0;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  width: 100%;
  padding: .55rem 0;
  min-height: 44px;
}
@media (max-width: 640px) {
  .stepper { grid-template-columns: 3rem 4.5rem 3rem; }
}

.wiz-checks,
.wiz-radios {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .5rem .8rem;
}
.wiz-checks legend,
.wiz-radios legend {
  font-weight: 700;
  padding: 0 .4rem;
  font-size: .95rem;
  grid-column: 1 / -1;
  margin-bottom: .3rem;
}
.wiz-checks label,
.wiz-radios label {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s;
  font-size: .92rem;
}
.wiz-checks label:hover,
.wiz-radios label:hover { background: #f7f4ec; }
.wiz-checks input:checked + span,
.wiz-radios input:checked + span { color: var(--emerald-deep); font-weight: 600; }
.wiz-checks label:has(input:checked),
.wiz-radios label:has(input:checked) {
  background: rgba(16,185,129,.06);
  border-color: rgba(16,185,129,.35);
}
.wiz-radios span { display: flex; flex-direction: column; }
.wiz-radios span small { color: var(--muted); font-size: .8rem; }

.wiz-tours {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.25rem;
  /* Cards en grid del cotizador no se estiran a misma altura por sibling más alto.
     Sin esto, una card con panel "Elige tu pack" expandido (ej: Valle Nevado, 4 packs)
     hace que las cards cortas (ej: Viña Villard) queden con whitespace inferior feo. */
  align-items: start;
}
/* === Tour cards "v2" — visualmente alineados con el home (con foto, badges, etc.) === */
.wiz-tour-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
/* Safety net: SVGs sin dimensiones explícitas dentro de las cards
   del cotizador no pueden crecer más allá de 24×24, evitando que
   un viewBox sin width/height rompa el layout (estrella gigante). */
.wiz-tour-card-v2 svg { max-width: 24px; max-height: 24px; }
.wiz-tour-card-v2 > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.wiz-tour-card-v2:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.wiz-tour-card-v2:has(input:checked) {
  border-color: var(--emerald);
  box-shadow: 0 0 0 2px var(--emerald, #10b981), 0 12px 28px rgba(16,185,129,.18);
}
.wiz-tour-card-v2 .wiz-tour-image {
  position: relative;
  aspect-ratio: 14 / 9;
  background: #0b1220;
  overflow: hidden;
}
.wiz-tour-card-v2 .wiz-tour-image picture,
.wiz-tour-card-v2 .wiz-tour-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.wiz-tour-card-v2:hover .wiz-tour-image img { transform: scale(1.04); }
.wiz-tour-card-v2 .wiz-tour-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.42), transparent 55%);
  pointer-events: none;
}
.wiz-tour-card-v2 .wiz-tour-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.wiz-tour-card-v2 .wiz-tour-chips {
  position: absolute;
  bottom: 12px; left: 12px;
  display: flex; gap: 6px;
  z-index: 2;
}
.wiz-tour-card-v2 .wiz-tour-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.wiz-tour-card-v2 .wiz-tour-chip svg { width: 11px; height: 11px; }
.wiz-tour-card-v2 .wiz-tour-check {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--emerald-deep, #047857);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s ease, transform .25s var(--ease-out);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.wiz-tour-card-v2 .wiz-tour-check svg { width: 16px; height: 16px; }
.wiz-tour-card-v2:has(input:checked) .wiz-tour-check {
  opacity: 1;
  transform: scale(1);
}
.wiz-tour-card-v2.is-featured {
  box-shadow: 0 0 0 2px var(--emerald-deep, #047857), 0 18px 48px rgba(16,185,129,.18), var(--shadow-sm);
}
.wiz-tour-card-v2 .wiz-tour-featured-badge {
  position: absolute;
  top: 12px; right: 52px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a0f00;
  font-size: 10px; font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
  z-index: 3;
}
.wiz-tour-card-v2 .wiz-tour-featured-badge svg { width: 12px; height: 12px; color: #1a0f00; }
.wiz-tour-card-v2 .wiz-tour-body-v2 {
  padding: 18px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wiz-tour-card-v2 .wiz-tour-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.wiz-tour-card-v2 .wiz-tour-location {
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.wiz-tour-card-v2 .wiz-tour-rating {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-size: 11.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.wiz-tour-card-v2 .wiz-tour-rating .star { color: #f59e0b; font-size: 13px; line-height: 1; }
.wiz-tour-card-v2 .wiz-tour-rating strong { color: var(--ink); font-weight: 700; }
.wiz-tour-card-v2 .wiz-tour-rating small { color: var(--muted); font-size: 10.5px; }
.wiz-tour-card-v2 .wiz-tour-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -.3px;
  margin: 2px 0 6px;
  color: var(--ink);
}
.wiz-tour-card-v2 .wiz-tour-desc {
  color: var(--ink-soft);
  font-size: .87rem;
  line-height: 1.5;
  margin: 0 0 8px;
  flex: 1;
}
.wiz-tour-card-v2 .wiz-tour-flag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2px;
}
.wiz-tour-card-v2 .wiz-tour-flag-transfer {
  background: rgba(124,58,237,.08);
  color: var(--plum, #6d28d9);
  border: 1px solid rgba(124,58,237,.2);
}
.wiz-tour-card-v2 .wiz-tour-foot-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: rgba(245,242,236,.45);
}
.wiz-tour-card-v2 .wiz-tour-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}
.wiz-tour-card-v2 .wiz-tour-price-block small {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .04em;
}
.wiz-tour-card-v2 .wiz-tour-price-block strong {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}
.wiz-tour-card-v2 .wiz-tour-price-block em {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 400;
}
.wiz-tour-card-v2 .wiz-tour-price-clp {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 10.5px;
  color: var(--emerald-deep, #047857);
  font-weight: 600;
  margin-top: 2px;
}
.wiz-tour-card-v2 .wiz-tour-cta {
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .2s ease;
  flex-shrink: 0;
}
.wiz-tour-card-v2 .wiz-tour-cta-add {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.wiz-tour-card-v2 .wiz-tour-cta-added {
  background: var(--emerald-deep, #047857); color: #fff; border-color: var(--emerald-deep, #047857);
  display: none;
}
.wiz-tour-card-v2 .wiz-tour-cta-added svg { width: 12px; height: 12px; }
.wiz-tour-card-v2:has(input:checked) .wiz-tour-cta-add { display: none; }
.wiz-tour-card-v2:has(input:checked) .wiz-tour-cta-added { display: inline-flex; }

/* Panel especial del Transfer (hora pickup + número de vuelo) */
.wiz-tour-card-v2 .wiz-tour-transfer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  padding: 14px 18px;
  border-top: 1px dashed var(--line-strong);
  background: rgba(124,58,237,.04);
}
.wiz-tour-card-v2 .wiz-tour-transfer-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}
.wiz-tour-card-v2 .wiz-tour-transfer-field span {
  font-weight: 600;
  color: var(--ink);
}
.wiz-tour-card-v2 .wiz-tour-transfer-field span em {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}
.wiz-tour-card-v2 .wiz-tour-transfer-field input {
  font: inherit;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm, 8px);
  background: #fff;
}
.wiz-tour-card-v2 .wiz-tour-transfer-help {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  min-height: 16px;
}
.wiz-tour-card-v2 .wiz-tour-transfer-help.is-warn {
  color: #b45309;
  font-weight: 600;
}
.wiz-tour-card-v2 .wiz-tour-transfer-help.is-ok {
  color: var(--emerald-deep, #047857);
  font-weight: 600;
}

/* Pack selector dentro del card del cotizador (Valle Nevado et al). */
.wiz-tour-card-v2 .wiz-tour-packs-panel {
  padding: 14px 18px 18px;
  border-top: 1px dashed var(--line-strong);
  background: rgba(16,185,129,.04);
}
.wiz-tour-packs-title {
  margin: 0 0 .65rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.wiz-tour-packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}
.wiz-tour-pack-opt {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
}
.wiz-tour-pack-opt > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.wiz-tour-pack-opt-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  line-height: 1.35;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.wiz-tour-pack-opt:hover .wiz-tour-pack-opt-inner {
  border-color: rgba(16,185,129,.6);
}
.wiz-tour-pack-opt > input:checked + .wiz-tour-pack-opt-inner {
  border-color: var(--emerald);
  background: linear-gradient(180deg,#fff,rgba(16,185,129,.06));
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.wiz-tour-pack-opt-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 1px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg,#fbbf24,#f59e0b);
  color: #1a1106;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wiz-tour-pack-opt-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.wiz-tour-pack-opt-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald-deep);
}
.wiz-tour-pack-opt-price em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.wiz-tour-pack-opt-incl {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.35;
}
.wiz-tour-card-v2.q2-needs-attention {
  animation: q2Shake 0.5s ease-in-out;
  border-color: #b91c1c !important;
  box-shadow: 0 0 0 2px rgba(185,28,28,.18) !important;
}
.wiz-tour-card-v2 input:focus-visible ~ .wiz-tour-image,
.wiz-tour-card-v2:focus-within {
  outline: 2px solid var(--emerald, #10b981);
  outline-offset: 2px;
}

/* Estilos legacy del wiz-tour-card original (selección sin imagen) — mantenidos por compatibilidad. */
.wiz-tour-card:not(.wiz-tour-card-v2) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  cursor: pointer;
  transition: all .2s ease;
  background: #fff;
}
.wiz-tour-card:not(.wiz-tour-card-v2):hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.wiz-tour-card:not(.wiz-tour-card-v2):has(input:checked) {
  border-color: var(--emerald);
  background: rgba(16,185,129,.04);
  box-shadow: 0 0 0 2px rgba(16,185,129,.15);
}
.wiz-tour-card:not(.wiz-tour-card-v2) input { margin-top: .2rem; }
.wiz-tour-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .3rem;
}
.wiz-tour-head strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
}
.wiz-tour-dur {
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
}
.wiz-tour-body p {
  color: var(--muted);
  font-size: .88rem;
  margin: 0 0 .5rem;
  line-height: 1.45;
}
.wiz-tour-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.wiz-tour-price { font-weight: 700; color: var(--ink); }
.wiz-tour-price em { font-weight: 400; color: var(--muted); font-style: normal; }
.wiz-tour-cat {
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--plum);
  background: rgba(124,58,237,.08);
  padding: .15rem .55rem;
  border-radius: 999px;
}

.wiz-custom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  background: #faf8f3;
}
.wiz-custom strong { font-size: 1rem; }
.wiz-custom p { color: var(--muted); font-size: .88rem; margin: .3rem 0 .5rem; }
.wiz-custom textarea {
  width: 100%;
  padding: .55rem .7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
}
.wiz-custom-price {
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .85rem;
}
.wiz-custom-price input {
  max-width: 160px;
  padding: .5rem .7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}
.chip-amedida {
  display: inline-block;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  color: #0a1628;
  padding: .15rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  margin-left: .4rem;
}

.wiz-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: .5rem;
}
.wiz-subtotal strong {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-soft);
}
.wiz-disclaimer {
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 1rem;
}

.wiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wiz-nav .btn-secondary,
.wiz-nav .btn-primary {
  flex: 0 0 auto;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  font: inherit;
  font-size: .95rem;
}
.btn-primary {
  background: linear-gradient(90deg, #fbbf24, #f97316);
  color: #0a1628;
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
  background: #f1ede4;
  color: var(--ink);
}
.btn-secondary:hover { background: #e6e0d3; }

.wiz-summary {
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.wiz-summary h3 {
  margin: 0 0 .6rem;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
}
.wiz-summary h3 + h3 { margin-top: 1rem; }
.wiz-sum-tours {
  list-style: none;
  padding: 0;
  margin: 0 0 .8rem;
}
.wiz-sum-tours li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1rem;
}
.wiz-sum-tours li:last-child { border-bottom: 0; }
.wiz-sum-dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .5rem 1.5rem;
  margin: 0;
}
.wiz-sum-dl > div {
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1rem;
}
.wiz-sum-dl dt { color: var(--muted); font-size: .85rem; }
.wiz-sum-dl dd { margin: 0; font-weight: 600; text-align: right; font-size: .9rem; }

.wiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1rem;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #25D366;
  color: #fff !important;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 0;
}
.btn-wa:hover { filter: brightness(1.05); }
.btn-wa-inline {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  margin-top: .4rem;
}

.wiz-side {
  align-self: start;
  color: var(--ink);
}
.wiz-side h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 .5rem;
}
.wiz-side p { color: var(--muted); margin: 0 0 .4rem; }
.wiz-side .small { font-size: .8rem; margin-top: 1rem; }
.wiz-side .small a { color: var(--emerald-deep); }

/* =============================
   PAGO
   ============================= */

.pay-section {
  padding: 0 0 6rem;
}
.pay-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}
@media (max-width: 960px) {
  .pay-shell { grid-template-columns: 1fr; }
}

.pay-form h2,
.pay-methods h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 .4rem;
  color: var(--ink);
}
.pay-methods h2 { color: #fff; }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 560px) {
  .pay-grid { grid-template-columns: 1fr; }
}

.pay-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--ink-soft);
  margin-top: .75rem;
}
.pay-check a { color: var(--emerald-deep); text-decoration: underline; }

.pay-trust {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.badge-ssl {
  background: rgba(16,185,129,.08);
  color: var(--emerald-deep);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid rgba(16,185,129,.25);
}

.pay-methods {
  color: #fff;
}
.pay-methods > p { color: rgba(255,255,255,.7); margin-top: .2rem; }

.pay-card {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem;
  margin-top: .9rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  color: var(--ink);
  font: inherit;
}
.pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10,22,40,.18);
  border-color: var(--gold);
}
.pay-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.pay-logo {
  display: flex;
  flex-direction: column;
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 800;
}
.pay-logo small {
  display: block;
  font-weight: 400;
  font-size: .72rem;
  opacity: .85;
  margin-top: .1rem;
}
.pay-logo.webpay { background: linear-gradient(135deg, #d81e05, #ff6b1a); }
.pay-logo.mp     { background: linear-gradient(135deg, #009ee3, #00c2ff); }
.pay-logo.pp     { background: linear-gradient(135deg, #003087, #0070ba); }
.logo-w { font-family: 'Inter', sans-serif; letter-spacing: .02em; }
.pay-chevron {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform .2s;
}
.pay-card:hover .pay-chevron { transform: translateX(4px); }
.pay-card p {
  color: var(--muted);
  font-size: .88rem;
  margin: .2rem 0 .6rem;
  line-height: 1.45;
}
.pay-brands {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.pay-brands span {
  background: #f5f2ec;
  color: var(--ink-soft);
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
}

.pay-help {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.pay-help p { margin: 0; color: rgba(255,255,255,.85); }

/* Terms modal */
.pay-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}
.pay-modal[aria-hidden="false"] { display: flex; }
.pay-modal-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pay-modal-dialog header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.pay-modal-dialog h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.pay-modal-close {
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.pay-modal-body {
  padding: 1.4rem;
  overflow: auto;
  color: var(--ink-soft);
  line-height: 1.6;
}
.pay-modal-body p { margin: 0 0 1rem; }

/* ===== Small util overrides ===== */
.muted { color: var(--muted); }

/* ===== Payment tile selected ===== */
.payment-method {
  cursor: pointer;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease, border-color .2s;
}
.payment-method.selected {
  border-color: var(--emerald) !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2), 0 18px 40px rgba(10,22,40,.18) !important;
  transform: translateY(-2px);
}
.payment-method.selected::after {
  content: '✓';
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
}
.payment-method.selected .pay-chevron { display: none; }

.pay-logo.gp { background: linear-gradient(135deg, #4285f4, #34a853); }

/* ===== Main pay button ===== */
.btn-pay {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
.btn-pay:disabled { opacity: .7; cursor: wait; }
.btn-pay.loading .btn-text::after {
  content: '';
  display: inline-block;
  width: .9rem;
  height: .9rem;
  margin-left: .5rem;
  border: 2px solid rgba(10,22,40,.3);
  border-top-color: #0a1628;
  border-radius: 50%;
  animation: payspin 0.7s linear infinite;
  vertical-align: -2px;
}
@keyframes payspin { to { transform: rotate(360deg); } }

/* ===== Status message ===== */
.status-message {
  display: none;
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  margin: 1rem 0 .2rem;
  font-size: .92rem;
  line-height: 1.5;
  border: 1px solid transparent;
}
.status-message.success {
  display: block;
  background: rgba(16,185,129,.08);
  color: var(--emerald-deep);
  border-color: rgba(16,185,129,.3);
}
.status-message.error {
  display: block;
  background: rgba(225,29,72,.08);
  color: var(--rose);
  border-color: rgba(225,29,72,.3);
}
.status-message.info {
  display: block;
  background: rgba(59,130,246,.08);
  color: #1e40af;
  border-color: rgba(59,130,246,.3);
}

/* ===== PayPal / Google Pay containers ===== */
#paypal-button-container { display: none; margin-top: 1rem; min-height: 45px; }
#googlepay-button-container { display: none; margin-top: 1rem; min-height: 45px; }
#googlepay-button-container.active { display: block; }
#googlepay-button-container button,
#googlepay-button-container .gpay-button {
  width: 100% !important;
  min-height: 48px;
}

/* ===== Total to charge summary ===== */
.pay-charge {
  margin: 1rem 0 .6rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(251, 191, 36, 0.10));
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #fff;
}
.pay-charge[hidden] { display: none; }
.pay-charge-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
}
.pay-charge-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
}
.pay-charge-amount {
  font-size: 1.45rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.pay-charge-method {
  margin-top: .25rem;
  font-size: .82rem;
  opacity: .85;
}

/* Highlight the amount preview line under the input when set */
#amountPreview:not(:empty) {
  display: block;
  margin-top: .3rem;
  color: rgba(255,255,255,.55);
}

.paypal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem;
  color: var(--muted);
  font-size: .9rem;
}
.paypal-spinner {
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid rgba(10,22,40,.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: payspin 0.7s linear infinite;
}

/* Ensure textarea picks up styles */
.wiz-field textarea {
  font-family: inherit;
  resize: vertical;
  min-height: 70px;
}
.wiz-field small.muted {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .25rem;
}

/* ------------------------------------------------------------
   Static content pages (SEO landing & policy pages)
   ------------------------------------------------------------ */
.content-section {
  padding: 2rem 0 5rem;
}
.content-section .container {
  max-width: 880px;
}
.content-prose {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15, 60, 50, .08);
  border-radius: 18px;
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.content-prose h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 2rem 0 .75rem;
  color: var(--emerald-deep);
}
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
  color: var(--ink);
}
.content-prose p,
.content-prose li {
  color: var(--ink);
  line-height: 1.7;
  font-size: 1rem;
}
.content-prose p { margin: .5rem 0 1rem; }
.content-prose ul,
.content-prose ol {
  margin: .5rem 0 1.25rem 1.25rem;
  padding-left: .25rem;
}
.content-prose li { margin: .35rem 0; }
.content-prose a {
  color: var(--emerald-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-prose a:hover { color: var(--gold); }
.content-prose strong { color: var(--ink); }
.content-cta {
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.content-cta .btn-primary,
.content-cta .btn-secondary { text-decoration: none; }
.content-meta {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 60, 50, .08);
}
@media (max-width: 600px) {
  .content-prose { padding: 1.5rem 1.25rem; }
}

/* ===== PAGO · Context banner (when arriving from a proposal) ===== */
.pay-context {
  grid-column: 1 / -1;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(52, 211, 153, .35);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, .35);
  animation: payContextIn .55s cubic-bezier(.16, .65, .32, 1) both;
}
@keyframes payContextIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pay-context-stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0070ba 0%, #34d399 50%, #fbbf24 100%);
}
.pay-context-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  padding: 1.5rem 1.7rem;
  align-items: center;
  color: #fff;
}
.pay-context-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: #34d399;
  font-weight: 700;
  margin-bottom: .6rem;
}
.pay-context-eyebrow svg { width: 13px; height: 13px; stroke-width: 2.4; }
.pay-context-concept {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -.012em;
  margin: 0 0 .55rem;
  color: #fff;
  line-height: 1.25;
}
.pay-context-meta {
  margin: 0;
  display: inline-flex; align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.78);
}
.pay-context-method-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
  color: #fff;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.pay-context-sep { opacity: .35; }
.pay-context-trust { font-size: .78rem; opacity: .78; }
.pay-context-right {
  text-align: right;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255,255,255,.12);
}
.pay-context-amount-label {
  font-size: .65rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  margin-bottom: .25rem;
}
.pay-context-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pay-context-amount-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
  letter-spacing: .03em;
}
@media (max-width: 720px) {
  .pay-context-body { grid-template-columns: 1fr; padding: 1.2rem 1.2rem 1.1rem; }
  .pay-context-right { text-align: left; padding-left: 0; border-left: none; border-top: 1px dashed rgba(255,255,255,.12); padding-top: .85rem; margin-top: .3rem; }
}

/* ===== PAGO · Pre-filled field indicator ===== */
.wiz-field.is-prefilled {
  position: relative;
}
.wiz-field.is-prefilled input,
.wiz-field.is-prefilled textarea {
  border-color: rgba(52, 211, 153, .55);
  background: linear-gradient(180deg, rgba(52, 211, 153, .03), transparent);
}
.wiz-field.is-prefilled::after {
  content: '✓ Pre-cargado';
  position: absolute;
  top: 0; right: 0;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .35);
  padding: .12rem .42rem;
  border-radius: 999px;
  font-weight: 700;
  pointer-events: none;
}

/* ===== PAGO · Method tile selected check ===== */
.payment-method {
  position: relative;
}
.payment-method.selected::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--emerald-2, #34d399);
  pointer-events: none;
  z-index: 1;
}
.payment-method-check {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  background: var(--emerald-2, #34d399);
  border: 2px solid #fff;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px -3px rgba(16,185,129,.55);
}
.payment-method-check svg { width: 12px; height: 12px; color: #fff; stroke-width: 3; }
.payment-method.selected .payment-method-check { display: inline-flex; animation: payCheckPop .35s cubic-bezier(.34, 1.56, .64, 1) both; }
@keyframes payCheckPop {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== PAGO · PayPal SDK loading skeleton ===== */
.pay-skel {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin: .8rem 0 .4rem;
  display: flex; flex-direction: column;
  gap: .55rem;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, .25);
}
.pay-skel-row {
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffc439 0%, #ffd770 50%, #ffc439 100%);
  background-size: 200% 100%;
  animation: paySkelShimmer 1.6s ease-in-out infinite;
  opacity: .55;
}
.pay-skel-row:nth-child(2) {
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
  background-size: 200% 100%;
  height: 38px;
  opacity: .35;
}
@keyframes paySkelShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.pay-skel-caption {
  font-size: .72rem;
  color: rgba(15, 23, 42, .55);
  text-align: center;
  letter-spacing: .02em;
  margin-top: .15rem;
}

/* ===== PAGO · Boosted "Total a cobrar" card ===== */
.pay-charge {
  padding: 1.1rem 1.2rem;
  background: linear-gradient(135deg, rgba(52, 211, 153, .18) 0%, rgba(251, 191, 36, .12) 100%);
  border-color: rgba(52, 211, 153, .55);
  box-shadow: 0 12px 32px -16px rgba(16, 185, 129, .35);
}
.pay-charge-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.014em;
}

/* ============================================================
   PARTNERS / B2B PORTAL teaser (home section)
   ============================================================ */
.partners-section {
  position: relative;
  padding: 5rem 0 4.5rem;
  background: linear-gradient(180deg, #0a1628 0%, #142c4e 100%);
  color: #fff;
  overflow: hidden;
}
.partners-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 18% 22%, rgba(52, 211, 153, .18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 88% 70%, rgba(251, 191, 36, .16) 0%, transparent 70%);
  pointer-events: none;
}
.partners-section > .container { position: relative; z-index: 1; }
.partners-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr; gap: 2rem; }
  .partners-section { padding: 3.5rem 0 3rem; }
}
.partners-intro .kicker {
  color: #fbbf24;
  margin-bottom: 1rem;
}
.partners-intro .kicker .kicker-line { background: linear-gradient(90deg, #34d399, #fbbf24); }
.partners-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: #fff;
}
.partners-intro h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #34d399, #fbbf24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partners-intro p.partners-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0 0 1.6rem;
  max-width: 540px;
}
.partners-features {
  list-style: none;
  margin: 0 0 1.8rem; padding: 0;
  display: grid;
  gap: .7rem;
}
.partners-features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .92rem;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}
.partners-features li svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  stroke-width: 2.5;
  color: #34d399;
  margin-top: 4px;
}
.partners-features li strong { color: #fff; font-weight: 600; }
.partners-cta {
  display: flex; gap: .7rem; flex-wrap: wrap;
  margin-top: .2rem;
}
.partners-cta .btn-partner-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  color: #0a1628;
  border: none; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px -10px rgba(52, 211, 153, .55);
  transition: transform .18s, box-shadow .22s;
  font-family: inherit;
}
.partners-cta .btn-partner-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(52, 211, 153, .65);
}
.partners-cta .btn-partner-primary svg { width: 14px; height: 14px; stroke-width: 2.4; }
.partners-cta .btn-partner-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  font-size: .95rem; font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s;
  font-family: inherit;
}
.partners-cta .btn-partner-ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
}
.partners-cta .btn-partner-ghost svg { width: 14px; height: 14px; stroke-width: 2.2; }

/* ===== Right column: phased disclosure mini-mockup ===== */
.partners-mockup {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 32px 64px -32px rgba(0,0,0,.6);
}
.partners-mockup::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #34d399 0%, #fbbf24 100%);
}
.partners-mockup-eyebrow {
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #34d399;
  margin-bottom: .9rem;
}
.partners-mockup-eyebrow svg { width: 12px; height: 12px; stroke-width: 2.4; }
.partners-mockup-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.1rem;
  letter-spacing: -.005em;
  line-height: 1.3;
}
.partners-mockup-title em {
  font-style: italic;
  color: #fbbf24;
}
.partners-phases {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: .6rem;
  position: relative;
}
.partners-phases::before {
  content: '';
  position: absolute;
  left: 11px; top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(52,211,153,.6) 0%, rgba(52,211,153,.1) 25%, rgba(255,255,255,.1) 100%);
}
.partners-phase {
  display: flex; align-items: flex-start; gap: .75rem;
  position: relative;
  padding: .35rem 0;
}
.partners-phase-dot {
  position: relative; z-index: 1;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .3s;
}
.partners-phase-dot svg { width: 10px; height: 10px; color: rgba(255,255,255,.45); }
.partners-phase.is-current .partners-phase-dot {
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .18);
}
.partners-phase.is-current .partners-phase-dot svg { color: #fff; }
.partners-phase.is-current .partners-phase-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(52, 211, 153, .5);
  animation: partnersPulse 2.2s ease-out infinite;
}
@keyframes partnersPulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}
.partners-phase-body { flex: 1; min-width: 0; }
.partners-phase-name {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin: 0;
  line-height: 1.25;
}
.partners-phase.is-current .partners-phase-name { color: #fff; }
.partners-phase-meta {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  margin-top: .1rem;
  letter-spacing: .02em;
}
.partners-phase.is-current .partners-phase-meta { color: #34d399; }

/* Tiny header NAV link */
.nav-b2b {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .42rem .7rem;
  font-size: .85rem; font-weight: 500;
  color: var(--ink-soft, #475569);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.nav-b2b:hover {
  color: var(--ink, #0a1628);
  background: color-mix(in oklab, #10b981 6%, transparent);
  border-color: color-mix(in oklab, #10b981 22%, transparent);
}
.nav-b2b svg {
  width: 13px; height: 13px;
  stroke-width: 2;
  color: #10b981;
}

.mobile-nav-b2b {
  display: block;
  padding: .7rem 1rem;
  margin: .5rem 0;
  background: linear-gradient(135deg, color-mix(in oklab, #10b981 12%, transparent), color-mix(in oklab, #fbbf24 8%, transparent));
  border: 1px solid color-mix(in oklab, #10b981 30%, transparent);
  border-radius: 10px;
  color: #065f46;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  letter-spacing: .005em;
  transition: background .18s, border-color .18s;
}
.mobile-nav-b2b:hover {
  background: linear-gradient(135deg, color-mix(in oklab, #10b981 18%, transparent), color-mix(in oklab, #fbbf24 12%, transparent));
  border-color: color-mix(in oklab, #10b981 45%, transparent);
}

/* ============================================================
   LANDING PAGES — premium hero + sections (lp-*)
   Used by /turismo-receptivo-.../, /private-tours-.../ etc.
   ============================================================ */

/* ── HERO with background image ─────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--lp-hero-img, none);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
}
.lp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,40,.78) 0%, rgba(10,22,40,.55) 35%, rgba(10,22,40,.85) 100%),
    radial-gradient(ellipse at 75% 30%, rgba(251,191,36,.18), transparent 60%);
  z-index: -1;
}
.lp-hero .container { max-width: 1140px; }
.lp-hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
}
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-hero { min-height: auto; padding: 7rem 0 3.5rem; }
}
.lp-hero .kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.lp-hero .kicker-line {
  width: 36px; height: 1px;
  background: rgba(255,255,255,.4);
}
.lp-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
}
.lp-hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero-lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 2rem;
}
.lp-hero-cta {
  display: flex; gap: .8rem; flex-wrap: wrap;
}
.lp-hero-cta .btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.lp-hero-cta .btn-primary {
  background: linear-gradient(90deg, var(--emerald), var(--emerald-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgba(16,185,129,.35);
}
.lp-hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16,185,129,.45);
}
.lp-hero-cta .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.lp-hero-cta .btn-outline:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
}
.lp-hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(14px);
}
.lp-hero-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin: 0 0 .85rem;
  color: #fff;
}
.lp-hero-card ul { list-style: none; padding: 0; margin: 0; }
.lp-hero-card li {
  display: flex; align-items: center; gap: .65rem;
  color: rgba(255,255,255,.88);
  font-size: .95rem; line-height: 1.5;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-hero-card li:last-child { border-bottom: none; }
.lp-hero-card li svg {
  width: 18px; height: 18px;
  color: var(--gold-soft);
  flex-shrink: 0;
}

/* ── Trust strip below hero ─────────────────────────────── */
.lp-trust {
  background: var(--bg-deep);
  color: rgba(255,255,255,.85);
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-trust ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.lp-trust li { display: flex; flex-direction: column; gap: .15rem; }
.lp-trust strong {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--gold-soft);
  font-weight: 500;
}
.lp-trust span {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ── Section base ───────────────────────────────────────── */
.lp-section {
  padding: clamp(4rem, 9vh, 7rem) 0;
  position: relative;
}
.lp-section.alt { background: var(--surface-alt); }
.lp-section.dark {
  background: var(--bg);
  color: #fff;
}
.lp-section .container { max-width: 1140px; }
.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.lp-section-head .kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--emerald-deep);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .8rem;
}
.lp-section.dark .lp-section-head .kicker { color: var(--gold-soft); }
.lp-section-head .kicker-line {
  width: 28px; height: 1px;
  background: var(--emerald-deep);
}
.lp-section.dark .lp-section-head .kicker-line { background: var(--gold-soft); }
.lp-section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .8rem;
  color: var(--ink);
}
.lp-section.dark .lp-section-head h2 { color: #fff; }
.lp-section-head h2 em {
  font-style: italic;
  color: var(--emerald-deep);
}
.lp-section.dark .lp-section-head h2 em {
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.lp-section.dark .lp-section-head p { color: rgba(255,255,255,.7); }

/* ── Feature grid (3 cards: icon + title + text) ─────── */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.lp-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(251,191,36,.12));
  display: grid; place-items: center;
  color: var(--emerald-deep);
  margin-bottom: 1.1rem;
}
.lp-feature-icon svg { width: 22px; height: 22px; }
.lp-feature h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 .6rem;
  color: var(--ink);
}
.lp-feature p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Pack selector (landing pages: 4 selectable price tiers) ──── */
.lp-packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-pack-card {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
}
.lp-pack-card > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.lp-pack-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.4rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.lp-pack-card:hover .lp-pack-card-inner {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16,185,129,.45);
}
.lp-pack-card > input:checked + .lp-pack-card-inner {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16,185,129,.12), var(--shadow-md);
  background: linear-gradient(180deg, #fff 0%, rgba(16,185,129,.03) 100%);
}
.lp-pack-card > input:focus-visible + .lp-pack-card-inner {
  outline: 3px solid rgba(16,185,129,.45);
  outline-offset: 2px;
}
.lp-pack-badge {
  display: inline-block;
  align-self: flex-start;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.lp-pack-badge--popular {
  background: linear-gradient(135deg,#fbbf24,#f59e0b);
  color: #1a1106;
}
.lp-pack-badge--full {
  background: linear-gradient(135deg,#34d399,#059669);
  color: #04201a;
}
.lp-pack-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 .35rem;
  color: var(--ink);
  line-height: 1.25;
}
.lp-pack-card-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: 0 0 .65rem;
}
.lp-pack-card-price strong {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--emerald-deep);
  line-height: 1;
}
.lp-pack-card-price em {
  font-style: normal;
  font-size: .8rem;
  color: var(--ink-soft);
}
.lp-pack-card-desc {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}
.lp-pack-card-radio {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.lp-pack-card-radio::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: #fff;
  flex: 0 0 18px;
  transition: border-color .2s, background .2s;
}
.lp-pack-card > input:checked + .lp-pack-card-inner .lp-pack-card-radio::before {
  border-color: var(--emerald);
  background: radial-gradient(circle, var(--emerald) 0 5px, #fff 6px 100%);
}
.lp-pack-card > input:checked + .lp-pack-card-inner .lp-pack-card-radio {
  color: var(--emerald-deep);
}
.lp-pack-card > input:checked + .lp-pack-card-inner .lp-pack-card-radio::after {
  content: attr(data-selected-label);
}
.lp-pack-card > input:not(:checked) + .lp-pack-card-inner .lp-pack-card-radio::after {
  content: attr(data-default-label);
}

/* Summary panel that updates on selection */
.lp-pack-summary {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--emerald-deep), #064e3b);
  color: #fff;
  border-radius: 20px;
  padding: 1.65rem 1.85rem;
  box-shadow: var(--shadow-md);
}
.lp-pack-summary-body { min-width: 0; }
.lp-pack-summary-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: 0 0 .25rem;
}
.lp-pack-summary-name {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 .35rem;
  color: #fff;
}
.lp-pack-summary-desc {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.lp-pack-summary-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
  white-space: nowrap;
}
.lp-pack-summary-price {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  color: #fbbf24;
}
.lp-pack-summary-price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  margin-top: .3rem;
  text-align: right;
}
.lp-pack-summary .btn-primary {
  background: #fbbf24;
  color: #1a1106;
  border: none;
}
.lp-pack-summary .btn-primary:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .lp-pack-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lp-pack-summary-cta {
    align-items: center;
    width: 100%;
  }
  .lp-pack-summary-price small { text-align: center; }
  .lp-pack-summary .btn-primary { width: 100%; justify-content: center; }
}

/* ── Hero trust row (/en/ /br/ home) ───────────────────── */
.lp-hero-trust {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .9);
}
.lp-hero-trust li { display: flex; align-items: center; gap: .45rem; }
.lp-hero-trust li > svg {
  width: 18px !important;
  height: 18px !important;
  opacity: .9;
  flex: 0 0 18px;
}
.lp-hero-trust strong { color: #fff; font-weight: 700; letter-spacing: .2px; }
.lp-hero-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 14px;
  margin-right: 0.35rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

/* ── Trust stat bar icons (.lp-trust) ──────────────────── */
.lp-trust ul {
  align-items: center;
}
.lp-trust ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 0.75rem;
}
.lp-trust-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .12), rgba(251, 191, 36, .12));
  color: var(--emerald-deep);
  margin-bottom: 0.25rem;
}
.lp-trust-icon svg { width: 18px !important; height: 18px !important; flex: 0 0 18px; }

/* ── Testimonial star rating ───────────────────────────── */
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 0.6rem;
  color: #fbbf24;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

/* ── FAQ accordion polish ──────────────────────────────── */
.faq-list details.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-list details.faq-item:hover {
  border-color: var(--emerald);
  box-shadow: 0 2px 10px rgba(16, 185, 129, .06);
}
.faq-list details.faq-item[open] {
  border-color: var(--emerald);
  box-shadow: 0 2px 12px rgba(16, 185, 129, .08);
}
.faq-list details.faq-item > summary {
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.15rem;
  font-family: 'Fraunces', serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  position: relative;
  transition: color .2s var(--ease);
}
.faq-list details.faq-item > summary::-webkit-details-marker { display: none; }
.faq-list details.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, .1);
  color: var(--emerald-deep);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.faq-list details.faq-item[open] > summary { color: var(--emerald-deep); }
.faq-list details.faq-item[open] > summary::after {
  content: "−";
  background: var(--emerald);
  color: #fff;
}
.faq-list details.faq-item > p {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}
.faq-list details.faq-item > p a { color: var(--emerald-deep); text-decoration: underline; }

/* ── Sticky mobile CTA bar (home pages) ────────────────── */
.lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
}
.lp-sticky-cta-inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}
.lp-sticky-cta-inner .btn {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
.lp-sticky-cta-inner .btn svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 720px) {
  .lp-sticky-cta { display: block; }
  /* Reserve space for the sticky bar only on pages that render it.
     Other .lp-page subpages (tour detail, legacy SEO landings, etc.)
     don't have the sticky CTA and shouldn't get extra bottom padding. */
  .lp-page:has(.lp-sticky-cta) main { padding-bottom: 70px; }
}

/* ── Per-locale tour landing · breadcrumb ─────────────── */
.tour-breadcrumb {
  background: var(--surface-alt, #f6f6f3);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  font-size: 0.82rem;
}
.tour-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--muted, #64748b);
}
.tour-breadcrumb li { display: flex; align-items: center; }
.tour-breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.tour-breadcrumb a:hover { color: var(--emerald); }
.tour-breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 500; }
.tour-breadcrumb li[aria-hidden="true"] svg { width: 12px; height: 12px; opacity: .55; }

/* ── Per-locale tour landing · trust row in hero ─────── */
.tour-trust-row {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .88);
}
.tour-trust-row li { display: flex; align-items: center; gap: .5rem; }
.tour-trust-row .trust-stars { display: inline-flex; gap: 1px; color: #fbbf24; }
.tour-trust-row .trust-stars svg { width: 14px; height: 14px; }
.tour-trust-row li > svg { width: 18px; height: 18px; opacity: .85; }
.tour-trust-row strong { color: #fff; font-weight: 700; letter-spacing: .2px; }

/* ── Per-locale tour landing · quick-facts grid ───────── */
.tour-quick-facts {
  --qf-accent: var(--emerald);
}
.quick-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0 0;
}
.quick-facts-grid > div {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.quick-facts-grid dt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
}
.quick-facts-grid dt svg {
  width: 14px;
  height: 14px;
  color: var(--qf-accent);
  flex-shrink: 0;
}
.quick-facts-grid dd {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.quick-facts-grid dd em {
  font-size: 0.75rem;
  color: var(--muted, #64748b);
  font-style: normal;
  font-weight: 400;
  display: block;
  font-family: 'Inter', sans-serif;
}

/* ── Per-locale tour landing · highlight numbered badges ─ */
.lp-feature .lp-feature-icon[data-i] {
  position: relative;
}
.lp-feature .lp-feature-icon[data-i]::after {
  content: attr(data-i);
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 12px;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

/* ── Per-locale tour landing · related-tours grid ─────── */
.related-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.related-tour-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.related-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.related-tour-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-tour-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-alt, #f4f4f1);
}
.related-tour-media picture,
.related-tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.related-tour-card:hover .related-tour-media img { transform: scale(1.04); }
.related-tour-body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.related-tour-body h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}
.related-tour-loc {
  font-size: 0.82rem;
  color: var(--muted, #64748b);
  margin: 0;
}
.related-tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}
.related-tour-meta strong { color: var(--ink); font-weight: 700; }

/* ── Per-locale tour landing · itinerary list ──────────── */
.tour-itin-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: tour-itin;
  position: relative;
}
/* Vertical timeline line connecting step badges on desktop. */
.tour-itin-list::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--emerald) 0%, rgba(16, 185, 129, .2) 100%);
  border-radius: 2px;
  z-index: 0;
}
.tour-itin-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 150px 1fr;
  align-items: start;
  gap: 1.25rem;
  padding: 1rem 1.25rem 1rem 0;
  background: transparent;
  border: none;
  transition: transform .2s var(--ease);
  counter-increment: tour-itin;
}
.tour-itin-step::before {
  content: counter(tour-itin);
  grid-column: 1;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--emerald);
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--emerald-deep);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, .15);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.tour-itin-step:hover::before {
  transform: scale(1.08);
  background: var(--emerald);
  color: #fff;
}
.tour-itin-step:hover {
  transform: translateX(2px);
}
.tour-itin-step:hover {
  border-color: var(--emerald);
  transform: translateX(2px);
}
.tour-itin-time {
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.4rem;
}
.tour-itin-time strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
}
.tour-itin-time em {
  font-style: normal;
  color: var(--muted, #64748b);
  font-size: 0.72rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(16, 185, 129, .08);
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  width: fit-content;
}
.tour-itin-body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.tour-itin-body strong {
  color: var(--ink);
  font-weight: 600;
}
.tour-itin-note {
  display: block;
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  margin-top: .25rem;
}
@media (max-width: 640px) {
  .tour-itin-list::before {
    left: 19px;
  }
  .tour-itin-step {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "num time"
      "num body";
    gap: 0.35rem 1rem;
  }
  .tour-itin-step::before { grid-area: num; align-self: start; }
  .tour-itin-time { grid-area: time; padding-top: 0.1rem; }
  .tour-itin-body { grid-area: body; }
  .quick-facts-grid { grid-template-columns: 1fr; }
}

/* ── Tour catalog grid (/en/ and /br/ home) ────────────── */
.lp-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.lp-tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.lp-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.lp-tour-card--featured {
  border-color: var(--amber, #fbbf24);
  box-shadow: 0 0 0 1px var(--amber, #fbbf24) inset;
}
.lp-tour-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a1628;
  padding: .3rem .6rem;
  border-radius: 999px;
}
.lp-tour-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-alt, #f4f4f1);
}
.lp-tour-card-media picture,
.lp-tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.lp-tour-card:hover .lp-tour-card-media img { transform: scale(1.04); }
.lp-tour-card-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(10, 22, 40, .72);
  color: #fff;
  padding: .3rem .55rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.lp-tour-card-body {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.2rem 1.25rem 1.35rem;
  flex: 1;
}
.lp-tour-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.lp-tour-card-loc {
  font-size: .85rem;
  color: var(--muted, #64748b);
  letter-spacing: .2px;
  margin: 0;
}
.lp-tour-card-desc {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.lp-tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: .4rem .8rem;
  padding-top: .6rem;
  border-top: 1px dashed var(--line);
  font-size: .85rem;
}
.lp-tour-card-dur { color: var(--ink-soft); }
.lp-tour-card-price { color: var(--ink); }
.lp-tour-card-price strong { font-weight: 700; color: var(--ink); }
.lp-tour-card-price em { font-style: normal; font-size: .75rem; color: var(--muted, #64748b); }
.lp-tour-card-cta {
  display: flex;
  gap: .6rem;
  margin-top: .3rem;
}
.lp-tour-card-cta .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}
@media (max-width: 480px) {
  .lp-tour-card-cta { flex-direction: column; }
}

/* ── Image mosaic (3 photos) ──────────────────────────── */
.lp-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 760px) {
  .lp-mosaic { grid-template-columns: 1fr 1fr; }
  .lp-mosaic figure:first-child { grid-column: 1 / -1; }
}
.lp-mosaic figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
}
.lp-mosaic figure:first-child { aspect-ratio: 16/12; }
.lp-mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.lp-mosaic figure:hover img { transform: scale(1.05); }
.lp-mosaic figcaption {
  position: absolute; left: 14px; bottom: 14px;
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}

/* ── Steps (numbered process) ──────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.lp-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
}
.lp-section.dark .lp-step {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.lp-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
  line-height: 1;
}
.lp-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.lp-section.dark .lp-step h3 { color: #fff; }
.lp-step p {
  color: var(--ink-soft);
  font-size: .95rem; line-height: 1.6;
  margin: 0;
}
.lp-section.dark .lp-step p { color: rgba(255,255,255,.7); }

/* ── Quote / testimonial card ──────────────────────────── */
.lp-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2.25rem;
  background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(251,191,36,.06));
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 22px;
  text-align: center;
}
.lp-quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.lp-quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .5px;
}

/* ── Final CTA banner ──────────────────────────────────── */
.lp-cta-band {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.lp-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--lp-cta-img, none);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.lp-cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.85), rgba(5,12,24,.92));
  z-index: -1;
}
.lp-cta-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.lp-cta-band h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.lp-cta-band-actions {
  display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
}
.lp-cta-band .btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lp-cta-band .btn-primary {
  background: linear-gradient(90deg, var(--emerald), var(--emerald-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgba(16,185,129,.4);
}
.lp-cta-band .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16,185,129,.55);
}
.lp-cta-band .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.lp-cta-band .btn-outline:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
}

/* ── Two-column split (text + image) ───────────────────── */
.lp-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .lp-split { grid-template-columns: 1fr; gap: 2rem; }
}
.lp-split-img {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}
.lp-split-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.lp-split-img:hover img { transform: scale(1.04); }
.lp-split h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}
.lp-split h2 em { font-style: italic; color: var(--emerald-deep); }
.lp-split p {
  color: var(--ink-soft);
  font-size: 1rem; line-height: 1.7;
  margin: 0 0 1rem;
}
.lp-split ul {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}
.lp-split ul li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .5rem 0;
  color: var(--ink-soft);
  line-height: 1.55;
}
.lp-split ul li svg {
  width: 18px; height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── FAQ accordion (using <details>) ───────────────────── */
.lp-faq-list { max-width: 820px; margin: 0 auto; }
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.lp-faq-item[open] {
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
}
.lp-faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--emerald-deep);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  font-weight: 300;
}
.lp-faq-item[open] summary::after { content: '−'; transform: rotate(0); }
.lp-faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: .97rem;
}
.lp-faq-body p { margin: 0 0 .75rem; }
.lp-faq-body p:last-child { margin-bottom: 0; }
.lp-faq-body a { color: var(--emerald-deep); text-decoration: underline; }
.lp-faq-body strong { color: var(--ink); }

/* ── Policy / legal layout (TOC + body) ────────────────── */
.lp-doc {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 860px) {
  .lp-doc { grid-template-columns: 1fr; gap: 1.5rem; }
}
.lp-toc {
  position: sticky; top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  font-size: .9rem;
}
.lp-toc h4 {
  margin: 0 0 .8rem;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--emerald-deep);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lp-toc ol {
  list-style: none; padding: 0; margin: 0;
  counter-reset: tocnum;
}
.lp-toc li {
  counter-increment: tocnum;
  margin: .1rem 0;
}
.lp-toc a {
  color: var(--ink-soft);
  text-decoration: none;
  display: block;
  padding: .35rem 0;
  border-left: 2px solid transparent;
  padding-left: .6rem;
  margin-left: -.6rem;
  transition: all .2s;
  font-size: .9rem;
}
.lp-toc a::before {
  content: counter(tocnum, decimal-leading-zero) "  ";
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .75rem;
}
.lp-toc a:hover {
  color: var(--emerald-deep);
  border-left-color: var(--emerald);
  background: rgba(16,185,129,.04);
}
.lp-doc-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.lp-doc-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--emerald-deep);
  margin: 2.25rem 0 .75rem;
  scroll-margin-top: 100px;
}
.lp-doc-body h2:first-child { margin-top: 0; }
.lp-doc-body h2 .num {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--muted);
  margin-right: .6rem;
  letter-spacing: 2px;
}
.lp-doc-body h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1.4rem 0 .5rem;
}
.lp-doc-body p,
.lp-doc-body li {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}
.lp-doc-body p { margin: .5rem 0 1rem; }
.lp-doc-body ul, .lp-doc-body ol {
  margin: .5rem 0 1.25rem 1.25rem;
  padding-left: .25rem;
}
.lp-doc-body li { margin: .35rem 0; }
.lp-doc-body strong { color: var(--ink); }
.lp-doc-body a {
  color: var(--emerald-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Cancellation tier table (visual) ──────────────────── */
.lp-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.lp-tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}
.lp-tier .tier-pct {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 .25rem;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.lp-tier .tier-when {
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lp-tier.tier-warn .tier-pct { background: linear-gradient(135deg, var(--coral), var(--rose)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Header default para landing pages ──── */
.primary-nav { display: inline-flex; gap: 1.4rem; align-items: center; }
.primary-nav a {
  color: var(--ink-soft);
  font-weight: 500; font-size: 14px;
  letter-spacing: .2px;
  transition: color .2s var(--ease);
}
.primary-nav a:hover { color: var(--emerald-deep); }

.lp-page .site-header {
  background: transparent;
  border-bottom: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.lp-page .site-header.is-stuck {
  background: rgba(10, 22, 40, .72);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
}
.lp-page .brand-name {
  background: linear-gradient(135deg, #fff, #e5e7eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-page .primary-nav a { color: rgba(255,255,255,.85); }
.lp-page .primary-nav a:hover { color: var(--gold-soft); }

@media (max-width: 720px) {
  .primary-nav { gap: .9rem; font-size: 13px; }
  .primary-nav a { font-size: 13px; }
}

/* ── Scroll reveal helper (already exists in styles.css but this resets default) ── */
.lp-reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.lp-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   LANGUAGE SWITCHER (ES · EN · PT-BR)
   Used in navbar of every page across all language versions.
   ============================================================ */
.lang-switch {
  position: relative;
  margin-left: 1rem;
}
.lang-switch > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .7rem;
  border: 1px solid rgba(15, 60, 50, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #0a1628);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease;
}
.lang-switch > summary::-webkit-details-marker { display: none; }
.lang-switch > summary:hover {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(15, 60, 50, .25);
}
.lang-switch > summary .flag {
  font-size: 15px;
  line-height: 1;
}
.lang-switch > summary .chev {
  width: 10px; height: 10px;
  transition: transform .2s ease;
}
.lang-switch[open] > summary .chev { transform: rotate(180deg); }
.lang-switch-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(15, 60, 50, .1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 22, 40, .12);
  padding: .4rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.lang-switch-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .75rem;
  font-size: 13.5px;
  color: var(--ink, #0a1628);
  text-decoration: none;
  border-radius: 9px;
  transition: background .15s ease;
}
.lang-switch-menu a:hover { background: rgba(52, 211, 153, .08); }
.lang-switch-menu a.is-current {
  background: rgba(251, 191, 36, .12);
  font-weight: 600;
}
.lang-switch-menu a .flag { font-size: 16px; line-height: 1; }
.lang-switch-menu a .lbl-meta { font-size: 11px; color: var(--muted, #6b7a89); margin-left: auto; }

/* On the home/SPA page where header background is dark glass */
/* Legacy body:not(.lp-page) .lang-switch > summary rules removed:
   tenían color:#fff que sobrescribía mi rule premium en páginas
   sin .lp-page (como el home), dejando el texto "ES" invisible
   sobre el fondo claro del header. Las reglas premium del bloque
   "Lang switcher · premium" más abajo cubren ambos casos
   (home + lp-page) correctamente. */

@media (max-width: 720px) {
  .lang-switch { margin-left: .5rem; }
  .lang-switch > summary { padding: .4rem .55rem; font-size: 12px; }
  .lang-switch > summary .lbl-text { display: none; }
  .lang-switch-menu { right: -.5rem; }
}

/* =========================================================
   Cotizador UX — inline errors, autosave, loading, toast
   ========================================================= */

/* Inline field errors */
.wiz-field input.is-invalid,
.wiz-field textarea.is-invalid,
.wiz-field select.is-invalid,
.wiz-panel input.is-invalid,
.wiz-panel textarea.is-invalid,
.wiz-panel select.is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.wiz-field-error {
  display: block;
  margin-top: .35rem;
  color: #b91c1c;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.3;
}
.wiz-field-error::before {
  content: "⚠ ";
  margin-right: .15rem;
}

/* Draft recovery banner */
.wiz-draft-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  background: #fef9ec;
  border: 1px solid #f3d88a;
  border-radius: var(--radius-sm, 10px);
  color: #78500a;
  font-size: .9rem;
}
.wiz-draft-banner button { flex: 0 0 auto; padding: .45rem .9rem; font-size: .85rem; }
.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted, #64748b);
  padding: .45rem .9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
}
.btn-ghost:hover { color: #b91c1c; text-decoration: underline; }

/* Discreet "Borrador guardado" indicator */
.wiz-draft-saved {
  display: inline-block;
  margin-left: .75rem;
  font-size: .8rem;
  color: #059669;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .2s ease, transform .2s ease;
}
.wiz-draft-saved.is-shown { opacity: 1; transform: translateY(0); }

/* Toast */
.wiz-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  background: #0f172a;
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  z-index: 9000;
  transition: opacity .22s ease, transform .22s ease;
  max-width: min(90vw, 420px);
  text-align: center;
}
.wiz-toast.is-shown { opacity: 1; transform: translate(-50%, 0); }
.wiz-toast.is-success { background: #059669; }
.wiz-toast.is-error { background: #b91c1c; }

/* Loading-state buttons (disabled look + spinner) */
.btn-wa.is-loading,
.btn-primary.is-loading,
.btn-secondary.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .75;
}
.btn-wa.is-loading::after,
.btn-primary.is-loading::after,
.btn-secondary.is-loading::after {
  content: "";
  position: absolute;
  right: .9rem;
  top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wiz-spin .7s linear infinite;
}
@keyframes wiz-spin { to { transform: rotate(360deg); } }

/* Primary-visual emphasis on WhatsApp submit (conversion path) */
.wiz-actions .btn-wa {
  order: -1;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .28);
  padding-right: 2.4rem; /* space for optional spinner */
}

/* ============================================================
 * TOUR DETAIL PAGE (/tours/{id}/)
 * ============================================================ */

/* Breadcrumb sobre el hero */
.tour-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,.78); margin-bottom: 22px;
}
.tour-breadcrumb a {
  color: rgba(255,255,255,.78); text-decoration: none;
  transition: color .18s ease;
}
.tour-breadcrumb a:hover { color: #fff; }
.tour-breadcrumb span[aria-hidden] { color: rgba(255,255,255,.4); }

/* Chips de metadata en el hero */
.tour-hero-chips {
  list-style: none; padding: 0; margin: 22px 0 26px;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.tour-hero-chips li {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 14px;
  backdrop-filter: blur(6px);
}
.tour-hero-chips li strong { color: #fff; font-weight: 600; }
.tour-hero-chips li.tour-hero-price {
  background: rgba(251,191,36,.22);
  border-color: rgba(251,191,36,.5);
}

.tour-hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px;
}
.tour-hero-cta .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.tour-hero-cta .btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
}

/* Callout de flexibilidad — prominente, warm verde */
.tour-flex-section { padding: 48px 0 24px; }
.tour-flex-callout {
  display: flex; gap: 22px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(52,211,153,.12), rgba(251,191,36,.08));
  border: 1.5px solid rgba(52,211,153,.35);
  border-radius: 22px;
  padding: 32px 30px;
  max-width: 960px; margin: 0 auto;
}
.tour-flex-ico {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--emerald, #10b981); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(16,185,129,.28);
}
.tour-flex-ico svg { width: 32px; height: 32px; }
.tour-flex-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2; margin: 0 0 12px; color: var(--ink);
}
.tour-flex-callout h2 em {
  font-style: normal; color: var(--emerald-deep, #047857);
  background: linear-gradient(120deg, #10b981, #fbbf24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tour-flex-callout p {
  margin: 0 0 10px; color: var(--ink-soft); line-height: 1.6;
  font-size: 16px;
}
.tour-flex-callout p:last-child { margin-bottom: 0; }
.tour-flex-sub { font-style: italic; color: var(--emerald-deep) !important; }

/* Highlights */
.tour-highlights {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 22px;
}
.tour-highlights li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 14px;
  color: var(--ink); font-size: 15px; line-height: 1.5;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-highlights li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,20,31,.06);
}
.tour-highlights li svg {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--emerald); margin-top: 2px;
}

/* Timeline del itinerario */
.tour-timeline {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 820px; position: relative;
}
.tour-timeline::before {
  content: ''; position: absolute;
  top: 8px; bottom: 8px; left: 74px;
  width: 2px; background: linear-gradient(to bottom, rgba(52,211,153,.6), rgba(52,211,153,.1));
}
.tour-timeline-item {
  display: grid; grid-template-columns: 62px 22px 1fr;
  gap: 14px; align-items: flex-start;
  padding: 14px 0; position: relative;
}
.tour-timeline-time {
  font-family: var(--font-mono, monospace);
  font-size: 13px; font-weight: 600;
  color: var(--emerald-deep, #047857);
  letter-spacing: .8px;
  padding-top: 2px; text-align: right;
}
.tour-timeline-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--emerald, #10b981);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--emerald, #10b981);
  margin-left: 3px; margin-top: 4px;
  position: relative; z-index: 1;
}
.tour-timeline-body strong {
  display: block; font-size: 16px; color: var(--ink);
  margin-bottom: 2px;
}
.tour-timeline-body small {
  display: block; color: var(--ink-soft);
  font-size: 13.5px; line-height: 1.5;
}
.tour-timeline-dur {
  display: inline-block; margin-top: 6px;
  padding: 2px 10px; border-radius: 999px;
  background: rgba(16,185,129,.08); color: var(--emerald-deep);
  font-size: 11px; font-weight: 600; letter-spacing: .3px;
}

/* Política callout (entradas y comidas) */
.tour-policy-callout {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff8ec;
  border: 1.5px solid #fcd890;
  border-radius: 16px;
  padding: 18px 22px;
  margin: 0 auto 32px;
  max-width: 960px;
  color: var(--ink);
  line-height: 1.55; font-size: 14.5px;
}
.tour-policy-ico {
  flex-shrink: 0; color: #c97a00; margin-top: 2px;
}
.tour-policy-ico svg { width: 26px; height: 26px; }
.tour-policy-callout strong { color: #8a4e00; }

/* Incluye / No incluye — two columns */
.tour-incexc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 960px; margin: 0 auto;
}
.tour-incexc-col {
  background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 16px;
  padding: 22px 24px;
}
.tour-incexc-col h3 {
  margin: 0 0 14px; font-size: 15px; letter-spacing: .6px;
  text-transform: uppercase; color: var(--ink);
}
.tour-incexc-list {
  list-style: none; padding: 0; margin: 0;
}
.tour-incexc-list li {
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid rgba(6,20,31,.05);
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.5;
  position: relative;
}
.tour-incexc-list li:last-child { border-bottom: none; }
.tour-incexc-list.inc li::before {
  content: '✓';
  position: absolute; left: 4px; top: 8px;
  color: #10b981; font-weight: 700;
}
.tour-incexc-list.exc li::before {
  content: '✕';
  position: absolute; left: 4px; top: 8px;
  color: #dc2626; font-weight: 700;
}

/* Responsive */
@media (max-width: 720px) {
  .tour-flex-callout { flex-direction: column; padding: 24px 22px; }
  .tour-flex-ico { width: 48px; height: 48px; }
  .tour-flex-ico svg { width: 28px; height: 28px; }
  .tour-incexc { grid-template-columns: 1fr; }
  .tour-timeline::before { left: 62px; }
  .tour-timeline-item { grid-template-columns: 50px 18px 1fr; gap: 10px; }
  .tour-timeline-dot { width: 12px; height: 12px; border-width: 2px; box-shadow: 0 0 0 2px var(--emerald); margin-top: 5px; }
  .tour-timeline-time { font-size: 12px; }
  .tour-hero-chips { gap: 6px 8px; }
  .tour-hero-chips li { font-size: 12.5px; padding: 4px 10px; }
}

/* ============================================================
 * TOUR DETAIL — FASE 2 (galería, relacionados, sticky CTA)
 * ============================================================ */

/* Galería (solo tours con múltiples imágenes) */
.tour-gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.tour-gallery-item {
  margin: 0; overflow: hidden; border-radius: 16px;
  aspect-ratio: 4/3; background: #f3f3ee;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tour-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.tour-gallery-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(6,20,31,.12); }
.tour-gallery-item:hover img { transform: scale(1.04); }

/* Tours relacionados */
.tour-related-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.tour-related-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  text-decoration: none; color: var(--ink);
  border: 1px solid rgba(6,20,31,.08);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tour-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,20,31,.12);
}
.tour-related-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: #f3f3ee;
}
.tour-related-img img,
.tour-related-img picture { width: 100%; height: 100%; }
.tour-related-img img { object-fit: cover; transition: transform .4s ease; }
.tour-related-card:hover .tour-related-img img { transform: scale(1.05); }
.tour-related-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--ink);
}
.tour-related-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.tour-related-body h3 {
  margin: 0; font-family: var(--font-display);
  font-size: 19px; line-height: 1.25; color: var(--ink);
}
.tour-related-body p {
  margin: 0; font-size: 13.5px; color: var(--ink-soft);
  line-height: 1.45;
}
.tour-related-footer {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: auto; padding-top: 12px;
}
.tour-related-price {
  font-size: 13px; color: var(--ink-soft);
}
.tour-related-price strong {
  font-size: 16px; color: var(--ink); margin-left: 4px; font-weight: 700;
}
.tour-related-cta {
  font-size: 13px; font-weight: 600; color: var(--emerald-deep);
  letter-spacing: .2px;
}

/* Sticky CTA mobile */
.tour-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: none; /* solo mobile */
  align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(6,20,31,.08);
  box-shadow: 0 -6px 20px rgba(6,20,31,.06);
  z-index: 80;
}
.tour-sticky-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 0;
}
.tour-sticky-price { display: flex; align-items: baseline; gap: 4px; }
.tour-sticky-price small { font-size: 10px; color: var(--ink-soft); }
.tour-sticky-price strong {
  font-size: 15px; color: var(--ink); font-weight: 700;
}
.tour-sticky-title {
  font-size: 11.5px; color: var(--ink-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tour-sticky-actions {
  display: flex; gap: 8px; flex-shrink: 0;
}
.tour-sticky-actions .btn {
  padding: 9px 16px; font-size: 13.5px; border-radius: 999px;
}
.tour-sticky-actions .btn-wa {
  width: 42px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff; border: none;
}
.tour-sticky-actions .btn-wa svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
  .tour-sticky-cta { display: flex; }
  /* padding inferior para que el sticky no tape el footer */
  .tour-detail-page { padding-bottom: 72px; }
  .tour-related-grid { grid-template-columns: 1fr; }
}

/* Callout extra de flexibilidad — casos específicos por tour */
.tour-flex-extra {
  max-width: 960px; margin: 18px auto 0;
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  border: 1px dashed rgba(16,185,129,.45);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--ink-soft); font-size: 15px; line-height: 1.55;
}
.tour-flex-extra-ico {
  flex-shrink: 0; color: var(--emerald-deep); margin-top: 2px;
}
.tour-flex-extra-ico svg { width: 22px; height: 22px; }
.tour-flex-extra-body { flex: 1; min-width: 0; }
.tour-flex-extra p { margin: 0 0 .75rem; }
.tour-flex-extra p:last-child { margin-bottom: 0; }
.tour-flex-extra-lead { color: var(--ink); }
.tour-flex-extra-packs {
  list-style: none;
  margin: 0 0 .85rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.tour-flex-extra-packs li {
  position: relative;
  padding: .5rem .8rem .5rem 1.6rem;
  border-radius: 10px;
  background: rgba(16,185,129,.06);
  border-left: 3px solid var(--emerald);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.tour-flex-extra-packs li::before {
  content: "→";
  position: absolute;
  left: .65rem;
  top: .5rem;
  color: var(--emerald-deep);
  font-weight: 700;
}
.tour-flex-extra-packs li strong { color: var(--emerald-deep); }

/* ============================================================
 * COTIZADOR V2 — 2 etapas (Quote → Confirm Booking)
 * ============================================================ */
.cotizar-v2 main { padding-bottom: 40px; }

/* Hero compacto */
.q2-hero {
  padding: 88px 0 28px;
  text-align: center;
  position: relative;
}
.q2-hero .kicker { justify-content: center; margin-bottom: 16px; }
.q2-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  color: var(--ink);
  margin: 0 auto 14px;
  max-width: 780px;
  font-weight: 500;
}
.q2-hero-title em {
  font-style: italic; color: var(--emerald-deep, #047857);
  background: linear-gradient(120deg, #10b981, #fbbf24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.q2-hero-sub {
  max-width: 620px; margin: 0 auto 20px;
  color: var(--ink-soft); line-height: 1.55;
  font-size: clamp(15px, 1.4vw, 17px);
}
.q2-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px;
  font-size: 13px; color: var(--ink-soft);
}
.q2-trust li { display: inline-flex; align-items: center; gap: 7px; }
.q2-trust li strong { color: var(--ink); font-weight: 700; }
.q2-trust li em { color: var(--emerald-deep, #047857); font-style: normal; font-weight: 600; }
.q2-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #fbbf24);
}

/* Sección wizard */
.q2-section { padding: 28px 0 80px; }
.q2-section .container { max-width: 860px; }

/* Steps bar 2 pasos */
.q2-steps {
  list-style: none; padding: 0; margin: 0 auto 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  max-width: 640px;
}
.q2-steps li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid rgba(6,20,31,.08);
  border-radius: 14px;
  cursor: default;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.q2-steps li.done { cursor: pointer; }
.q2-steps li.active {
  border-color: var(--emerald, #10b981);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}
.q2-steps li.done .q2-step-num {
  background: var(--emerald-deep, #047857); color: #fff;
}
.q2-steps li.active .q2-step-num {
  background: var(--emerald, #10b981); color: #fff;
  box-shadow: 0 4px 12px rgba(16,185,129,.35);
}
.q2-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-alt, #f3f3ee);
  color: var(--ink-soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  transition: all .25s ease;
}
.q2-steps li b {
  display: block; font-weight: 600; font-size: 14.5px; color: var(--ink);
  line-height: 1.2;
}
.q2-steps li small {
  display: block; font-size: 11px; color: var(--ink-soft);
  margin-top: 2px;
}

/* Stages */
.q2-stage { display: none; }
.q2-stage.active { display: block; animation: q2Fade .35s ease both; }
@keyframes q2Fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.q2-stage-head {
  margin-bottom: 28px; text-align: center;
}
.q2-stage-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  margin: 0 0 6px; color: var(--ink); font-weight: 500;
}
.q2-stage-head p { margin: 0; color: var(--ink-soft); }

/* Bloques */
.q2-block {
  background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 18px;
}
.q2-block-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  margin: 0 0 6px; color: var(--ink);
}
.q2-block-hint {
  margin: 0 0 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.5;
}

.q2-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.q2-field-wide { grid-column: 1 / -1; }

/* Custom a medida */
.q2-custom {
  margin-top: 18px;
  background: var(--surface-alt, #f5f2ec);
  border: 1.5px dashed rgba(16,185,129,.35);
  border-radius: 14px;
  overflow: hidden;
}
.q2-custom > summary {
  list-style: none;
  padding: 14px 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.q2-custom > summary::-webkit-details-marker { display: none; }
.q2-custom[open] > summary { border-bottom: 1px solid rgba(6,20,31,.06); }
.q2-custom-chip {
  background: linear-gradient(135deg, #10b981, #047857);
  color: #fff; font-size: 11px; padding: 3px 10px;
  border-radius: 999px; letter-spacing: .5px;
  text-transform: uppercase; font-weight: 700;
}
.q2-custom-body { padding: 18px; display: grid; gap: 12px; }

/* Bloque estimate (estática antes del CTA stage 1) */
.q2-estimate {
  background: #0b1220; color: #fff;
  border-radius: 18px; padding: 22px 26px;
  margin: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.q2-estimate > div { display: flex; flex-direction: column; gap: 2px; }
.q2-estimate-label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.65);
}
.q2-estimate strong {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 500; color: #fff;
  line-height: 1;
}
.q2-estimate-note {
  margin: 0; flex: 1 1 100%;
  font-size: 12.5px; color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* CTA row */
.q2-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
  padding: 18px 6px 6px;
}
.q2-cta-row-center { justify-content: center; }
.q2-cta-hint {
  font-size: 13px; color: var(--ink-soft); line-height: 1.4;
  max-width: 420px;
}

/* Summary (etapa 2) */
.q2-summary {
  background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(251,191,36,.04));
  border: 1.5px solid rgba(16,185,129,.25);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 22px;
}
.q2-summary-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px; margin-bottom: 16px;
}
.q2-summary-label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 600;
}
.q2-summary-id {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 18px; font-weight: 700; color: var(--emerald-deep, #047857);
  letter-spacing: 1.5px; margin-top: 4px;
}
.q2-summary-edit {
  background: #fff;
  border: 1px solid rgba(6,20,31,.1);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all .2s ease;
}
.q2-summary-edit:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.q2-summary-tours {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.q2-summary-tours li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px; padding: 8px 0;
  border-bottom: 1px dashed rgba(6,20,31,.08);
  font-size: 14px;
}
.q2-summary-tours li:last-child { border-bottom: none; }
.q2-summary-tours li span { color: var(--ink); font-weight: 500; }
.q2-summary-tours li em {
  font-style: normal; color: var(--ink-soft); font-size: 13px; font-weight: 600;
}
.q2-summary-dl {
  display: grid; gap: 8px 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 14px 0 0;
}
.q2-summary-dl > div {
  background: #fff; padding: 10px 14px; border-radius: 10px;
  border: 1px solid rgba(6,20,31,.06);
}
.q2-summary-dl dt {
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-bottom: 2px;
}
.q2-summary-dl dd {
  margin: 0; font-size: 14px; color: var(--ink); font-weight: 500;
}
.q2-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-top: 18px; padding-top: 16px;
  border-top: 1.5px solid rgba(16,185,129,.25);
  font-size: 14px; color: var(--ink-soft);
}
.q2-summary-total strong {
  font-family: var(--font-display); font-size: 26px; color: var(--ink);
  font-weight: 500;
}
.q2-policy-note {
  background: #fff8ec; border: 1px solid #fcd890;
  border-radius: 12px; padding: 12px 14px; margin-top: 16px;
  font-size: 13px; color: #5a3d00; line-height: 1.5;
}
.q2-policy-note strong { color: #8a4e00; }

/* Pay radios compactos */
.q2-pay-radios {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: none; padding: 0; margin: 0;
}
.q2-pay-radios label {
  display: block; background: #fff;
  border: 1.5px solid rgba(6,20,31,.1);
  border-radius: 14px;
  padding: 12px 14px; cursor: pointer;
  transition: all .2s ease;
}
.q2-pay-radios label:hover { border-color: rgba(16,185,129,.35); }
.q2-pay-radios input { position: absolute; opacity: 0; }
.q2-pay-radios input:checked + span {
  color: var(--emerald-deep, #047857);
}
.q2-pay-radios label:has(input:checked) {
  border-color: var(--emerald, #10b981);
  background: linear-gradient(135deg, rgba(16,185,129,.05), rgba(16,185,129,.02));
  box-shadow: 0 0 0 2px rgba(16,185,129,.15);
}
.q2-pay-radios span { display: block; }
.q2-pay-radios span strong {
  display: block; font-weight: 600; font-size: 14.5px; color: var(--ink);
}
.q2-pay-radios span small {
  font-size: 12px; color: var(--ink-soft);
}

/* Términos */
.q2-terms {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 14px; margin: 18px 0;
  cursor: pointer; font-size: 14px; line-height: 1.5;
}
.q2-terms input {
  margin-top: 3px; accent-color: var(--emerald, #10b981);
  width: 18px; height: 18px; cursor: pointer;
}
.q2-terms a { color: var(--emerald-deep, #047857); font-weight: 600; text-decoration: underline; }

/* Success */
.q2-stage-success { min-height: 60vh; display: none; place-items: center; }
.q2-stage-success.active { display: grid; animation: q2Fade .5s ease both; }
.q2-success {
  text-align: center; max-width: 560px;
  padding: 40px 28px;
  background: #fff; border-radius: 22px;
  border: 1px solid rgba(6,20,31,.08);
}
.q2-success-ico {
  color: var(--emerald, #10b981);
  margin-bottom: 18px;
}
.q2-success h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  color: var(--ink); margin: 0 0 12px;
}
.q2-success p { color: var(--ink-soft); line-height: 1.6; margin: 0 0 14px; }
.q2-success p strong {
  font-family: var(--font-mono, monospace);
  color: var(--emerald-deep, #047857);
  letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 640px) {
  .q2-hero { padding: 70px 0 20px; }
  .q2-steps { grid-template-columns: 1fr; }
  .q2-block { padding: 20px 18px; }
  .q2-estimate { flex-direction: column; align-items: flex-start; text-align: left; }
  .q2-estimate strong { font-size: 28px; }
  .q2-summary-head { flex-direction: column; align-items: flex-start; }
}

/* ========== COTIZADOR V2 — Fase B (polish) ========== */

/* Selected state mucho más claro en tour cards */
.cotizar-v2 .wiz-tour-card {
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.cotizar-v2 .wiz-tour-card:has(input:checked) {
  border-color: var(--emerald, #10b981);
  box-shadow: 0 0 0 2px rgba(16,185,129,.18), 0 6px 18px rgba(16,185,129,.12);
  transform: translateY(-1px);
}
.cotizar-v2 .wiz-tour-card:has(input:checked)::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--emerald, #10b981); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 3px 10px rgba(16,185,129,.4);
  animation: q2Pop .25s ease;
}
@keyframes q2Pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* Rating chip compacto en el hero */
.q2-hero-rating {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; margin-bottom: 14px;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.35);
  border-radius: 999px;
  font-size: 12.5px; color: var(--ink);
}
.q2-hero-rating .stars { color: #fbbf24; letter-spacing: 1px; }
.q2-hero-rating strong { font-weight: 700; }

/* Shared quote URL hint (cuando se carga con ?q=) */
.q2-shared-banner {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(251,191,36,.05));
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 14px;
  padding: 12px 18px; margin-bottom: 18px;
  font-size: 13.5px; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.q2-shared-banner strong { color: var(--emerald-deep, #047857); font-family: var(--font-mono, monospace); }

/* Mobile polish */
@media (max-width: 520px) {
  .q2-block { padding: 18px 16px; margin-bottom: 14px; }
  .q2-block-title { font-size: 16px; }
  .q2-grid { gap: 12px; grid-template-columns: 1fr; }
  .q2-field-wide { grid-column: auto; }
  .q2-summary { padding: 18px 16px; }
  .q2-summary-dl { grid-template-columns: 1fr; }
  .q2-pay-radios { grid-template-columns: 1fr; }
  .q2-cta-row { padding: 18px 0 4px; flex-direction: column; align-items: stretch; }
  .q2-cta-row .btn-lg { width: 100%; justify-content: center; }
  .q2-cta-hint { text-align: center; margin-top: 4px; }
  .q2-estimate { padding: 18px 20px; }
  .q2-trust { gap: 8px 14px; font-size: 12.5px; }
}

/* ========== COTIZADOR V2 — Fase C (success enhanced) ========== */
.q2-next-steps {
  list-style: none; padding: 0;
  margin: 24px auto 28px; max-width: 460px;
  text-align: left;
  display: flex; flex-direction: column; gap: 14px;
}
.q2-next-steps li {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 12px; align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 12px;
}
.q2-next-steps .q2-next-done {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(16,185,129,.02));
  border-color: rgba(16,185,129,.35);
}
.q2-next-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-alt, #f3f3ee);
  color: var(--ink-soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.q2-next-done .q2-next-ico {
  background: var(--emerald, #10b981); color: #fff;
  font-size: 16px;
}
.q2-next-steps strong {
  display: block; font-size: 14.5px; font-weight: 600;
  color: var(--ink); line-height: 1.25;
}
.q2-next-steps small {
  display: block; font-size: 12.5px; color: var(--ink-soft);
  margin-top: 2px; line-height: 1.4;
}

/* Acciones del success */
.q2-success-actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin: 8px 0 16px;
}
.q2-success-actions .btn {
  font-size: 13.5px; padding: 10px 16px;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
}
.q2-success-footer {
  font-size: 13px; margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(6,20,31,.1);
}
.q2-success-footer a { color: var(--emerald-deep); text-decoration: underline; }
.q2-success-footer strong {
  font-family: var(--font-mono, monospace);
  color: var(--emerald-deep, #047857);
  letter-spacing: 1.2px;
}

@media (max-width: 520px) {
  .q2-success { padding: 28px 20px; }
  .q2-success h2 { font-size: 22px; }
  .q2-next-steps li { padding: 10px 12px; }
  .q2-success-actions { flex-direction: column; align-items: stretch; }
  .q2-success-actions .btn { width: 100%; justify-content: center; }
}

/* ========== COTIZADOR V2 — Fase D (pricing breakdown) ========== */
.q2-breakdown {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1 1 100%;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
}
.q2-breakdown li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.q2-breakdown li span { font-weight: 500; }
.q2-breakdown li em {
  font-style: normal; font-size: 12.5px;
  color: rgba(255,255,255,.75);
}
.q2-breakdown li em strong {
  color: #fff; font-weight: 700; margin-left: 2px;
}
.q2-breakdown li small.q2-clp-note {
  display: block;
  margin-top: 2px;
  color: rgba(251,191,36,.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
}
.q2-breakdown li small.q2-cap-note {
  display: inline-block;
  margin-left: 4px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
}

/* Pagar señal CTA */
.q2-pay-deposit {
  margin-top: 18px; padding: 18px 22px;
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(251,191,36,.05));
  border: 1.5px solid rgba(16,185,129,.35);
  border-radius: 16px;
}
.q2-pay-deposit-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 6px;
  font-size: 14px; color: var(--ink-soft);
}
.q2-pay-deposit-amount {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--emerald-deep, #047857);
}
.q2-pay-deposit-note {
  margin: 0 0 12px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.45;
}

/* ========== COTIZADOR V2 — UX FIX (progress + feedback) ========== */

/* Progress bar con fill animado */
.q2-progress { max-width: 640px; margin: 0 auto 32px; position: relative; }
.q2-progress-track {
  position: absolute;
  top: 42px; left: 50px; right: 50px; height: 3px;
  background: rgba(6,20,31,.08);
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}
.q2-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald, #10b981), var(--gold, #fbbf24));
  border-radius: 3px;
  transition: width .5s cubic-bezier(.2, .8, .25, 1);
}
.q2-progress .q2-steps {
  position: relative; z-index: 1;
  margin-bottom: 10px;
}
.q2-progress-label {
  text-align: center; margin: 10px 0 0;
  font-size: 12.5px; color: var(--ink-soft);
  font-weight: 600; letter-spacing: .3px;
}

/* Steps más compactos cuando están con progress bar */
.q2-progress .q2-steps li {
  background: #fff;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 12px 14px;
}
.q2-progress .q2-steps li > div { display: flex; flex-direction: column; gap: 2px; }
.q2-progress .q2-steps li .q2-step-num {
  margin: 0 auto;
  width: 34px; height: 34px;
}
.q2-progress .q2-steps li.active .q2-step-num {
  animation: q2StepPulse 1.8s ease-in-out infinite;
}
@keyframes q2StepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* Stage slide-in animation */
.q2-stage.q2-slide-in { animation: q2SlideIn .45s cubic-bezier(.2, .8, .25, 1) both; }
@keyframes q2SlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Shake para campos inválidos */
@keyframes q2Shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.q2-shake { animation: q2Shake .5s ease; }
.wiz-field.is-invalid input,
.wiz-field.is-invalid textarea,
.wiz-field input.is-invalid,
.wiz-field textarea.is-invalid,
.wiz-field select.is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.15) !important;
}
.wiz-field-error {
  display: block; color: #dc2626;
  font-size: 12.5px; font-weight: 600;
  margin-top: 4px;
}

/* Highlight bloque de tours cuando falta seleccionar */
.wiz-tours.q2-needs-attention {
  position: relative;
  animation: q2Attention 1.2s ease 2;
  border-radius: 16px;
}
@keyframes q2Attention {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38, 0); }
  50% { box-shadow: 0 0 0 6px rgba(220,38,38, .25); }
}

/* Botón primary con press + loading más notorio */
.cotizar-v2 .btn-primary {
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.cotizar-v2 .btn-primary:active {
  transform: scale(.97);
}
.cotizar-v2 .btn-primary.is-loading {
  position: relative; color: transparent;
  pointer-events: none;
}
.cotizar-v2 .btn-primary.is-loading::after {
  content: '';
  position: absolute;
  inset: 0; margin: auto;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: q2Spin .7s linear infinite;
}
@keyframes q2Spin { to { transform: rotate(360deg); } }

/* Toast mejor contraste + más visible */
#wiz-toast.wiz-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #0b1220; color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 10px 30px rgba(6,20,31,.25);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
  max-width: calc(100vw - 40px);
  text-align: center;
}
#wiz-toast.wiz-toast.is-shown {
  opacity: 1; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
#wiz-toast.is-warn {
  background: #7a2e2e;
  box-shadow: 0 10px 30px rgba(122,46,46,.35);
}
#wiz-toast.is-success {
  background: #0d5f3c;
  box-shadow: 0 10px 30px rgba(13,95,60,.35);
}

/* Mobile */
@media (max-width: 640px) {
  .q2-progress-track { top: 36px; left: 40px; right: 40px; }
  .q2-progress { margin-bottom: 22px; }
}

/* ========== COTIZADOR V2 — Fase E (nav libre + edit rows) ========== */
/* Summary rows clickables (click-to-edit) */
.q2-summary-dl > div[data-edit-target],
.q2-summary-tours[data-edit-target] {
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.q2-summary-dl > div[data-edit-target]:hover,
.q2-summary-tours[data-edit-target]:hover {
  background: rgba(16,185,129,.06);
  transform: translateY(-1px);
}
.q2-summary-edit-ico {
  display: inline-flex; vertical-align: middle;
  margin-left: 4px; color: var(--emerald-deep, #047857);
  opacity: 0; transition: opacity .2s ease;
}
.q2-summary-dl > div:hover .q2-summary-edit-ico { opacity: 1; }

/* Highlight del bloque destino al volver a editar */
.q2-block.q2-highlight {
  animation: q2BlockHl 1.8s ease;
  border-color: var(--emerald, #10b981) !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
}
@keyframes q2BlockHl {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  40% { box-shadow: 0 0 0 10px rgba(16,185,129,.25); }
  100% { box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
}

/* Step navegable en ambas direcciones */
.q2-steps li:not(.active) {
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.q2-steps li:not(.active):hover {
  border-color: rgba(16,185,129,.45);
  box-shadow: 0 2px 10px rgba(16,185,129,.1);
}

/* ========== COTIZADOR V2 — Fase F (info del guía) ========== */
.q2-block-guide {
  background: linear-gradient(135deg, rgba(251,191,36,.04), rgba(16,185,129,.03));
  border-color: rgba(251,191,36,.35);
}
.q2-chips-group {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 8px;
}
.q2-chip-option {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.q2-chip-option input {
  position: absolute; opacity: 0; pointer-events: none;
}
.q2-chip-option span {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid rgba(6,20,31,.1);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  transition: all .18s ease;
}
.q2-chip-option:hover span {
  border-color: rgba(16,185,129,.4);
  transform: translateY(-1px);
}
.q2-chip-option input:checked + span {
  background: linear-gradient(135deg, var(--emerald, #10b981), var(--emerald-deep, #047857));
  border-color: var(--emerald, #10b981);
  color: #fff;
  box-shadow: 0 3px 10px rgba(16,185,129,.3);
}

/* ========== COTIZADOR V2 — Fase G (cupón descuento) ========== */
.q2-block-coupon {
  background: linear-gradient(135deg, rgba(251,191,36,.05), rgba(16,185,129,.03));
  border-color: rgba(251,191,36,.4);
}
.q2-coupon-row {
  display: flex; gap: 8px; align-items: stretch;
  margin-top: 4px;
}
.q2-coupon-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid rgba(6,20,31,.12);
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.q2-coupon-row input:focus {
  outline: none;
  border-color: var(--emerald, #10b981);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}
.q2-coupon-row .btn {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
}
.q2-coupon-status {
  margin-top: 8px;
  font-size: 13px; display: none;
  align-items: center; gap: 6px;
}
.q2-coupon-status.is-ok {
  display: inline-flex;
  color: var(--emerald-deep, #047857);
}
.q2-coupon-status.is-err {
  display: inline-flex;
  color: #dc2626;
}
.q2-coupon-status.is-ok strong { font-weight: 700; }

/* Summary totals breakdown */
.q2-summary-totals {
  margin-top: 18px; padding-top: 16px;
  border-top: 1.5px solid rgba(16,185,129,.25);
  display: flex; flex-direction: column; gap: 6px;
}
.q2-summary-subtotal,
.q2-summary-discount {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  font-size: 13px; color: var(--ink-soft);
}
.q2-summary-discount {
  color: var(--emerald-deep, #047857); font-weight: 600;
}
.q2-summary-discount strong { color: var(--emerald-deep, #047857); font-weight: 700; }
.q2-summary-totals .q2-summary-total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(6,20,31,.1);
  font-size: 14px;
}
.q2-summary-totals .q2-summary-total strong {
  font-family: var(--font-display); font-size: 26px; color: var(--ink);
  font-weight: 500;
}

/* ============================================================
 * RESEÑAS (/resenas/) — Happy Concept
 * ============================================================ */
.resenas-page { background: #fbfaf7; }
.resenas-page main { padding-bottom: 40px; }
.resenas-page .bg-mesh { opacity: .5; } /* bajamos presencia para no competir con emojis */

/* Hero celebration */
.r-hero {
  position: relative; overflow: hidden;
  padding: 110px 0 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(52,211,153,.14), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(251,191,36,.14), transparent 55%);
}
.r-hero-inner { position: relative; z-index: 2; }
.r-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; margin-bottom: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--emerald-deep, #047857);
  backdrop-filter: blur(8px);
}
.r-floater {
  position: absolute;
  font-size: 48px;
  opacity: .45;
  z-index: 1;
  animation: rFloat 9s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(6,20,31,.1));
}
.r-floater-1 { top: 14%;  left: 8%;  animation-delay: 0s; }
.r-floater-2 { top: 10%;  right: 10%; animation-delay: -2s; font-size: 56px; }
.r-floater-3 { top: 62%;  left: 16%; animation-delay: -3s; font-size: 40px; }
.r-floater-4 { top: 55%;  right: 14%; animation-delay: -1s; font-size: 44px; }
.r-floater-5 { top: 32%;  right: 28%; animation-delay: -4s; font-size: 38px; opacity: .3; }
.r-floater-6 { top: 40%;  left: 26%; animation-delay: -5s; font-size: 36px; opacity: .3; }
@keyframes rFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}
@media (max-width: 640px) {
  .r-floater-5, .r-floater-6 { display: none; }
  .r-floater { font-size: 36px !important; opacity: .35; }
}

.r-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05; font-weight: 500;
  color: var(--ink); margin: 0 auto 18px; max-width: 780px;
  position: relative; z-index: 1;
}
.r-hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, #10b981, #fbbf24, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.r-hero-sub {
  max-width: 620px; margin: 0 auto 12px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft); line-height: 1.55;
  position: relative; z-index: 1;
}
.r-hero-sub strong { color: var(--ink); font-weight: 700; }
.r-hero-kicker {
  font-size: 15px; color: var(--emerald-deep, #047857);
  font-weight: 600; margin: 6px 0 0;
  position: relative; z-index: 1;
}

/* Sección form */
.r-section { padding: 20px 0 60px; position: relative; z-index: 2; }
.r-section .container { max-width: 720px; }
.r-card {
  background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 24px;
  padding: 36px 36px 32px;
  box-shadow: 0 12px 40px rgba(6,20,31,.08), 0 2px 6px rgba(6,20,31,.04);
  position: relative;
}

.r-block { margin-bottom: 28px; }
.r-block:last-of-type { margin-bottom: 20px; }
.r-block-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  margin: 0 0 12px; color: var(--ink);
}
.r-block-title em {
  font-style: normal; font-weight: 400; font-size: 13px;
  color: var(--ink-soft); margin-left: 4px;
}

/* Star rating interactivo */
.r-stars {
  display: flex; justify-content: center; gap: 4px;
  margin: 8px 0 10px;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(251,191,36,.06), rgba(251,191,36,0));
  border-radius: 16px;
}
.r-star {
  background: none; border: none; padding: 6px;
  cursor: pointer;
  color: rgba(6,20,31,.15);
  transition: transform .15s ease, color .18s ease;
  border-radius: 50%;
  line-height: 0;
}
.r-star:hover { transform: scale(1.14); color: rgba(251,191,36,.6); }
.r-star.is-on { color: #fbbf24; }
.r-star.is-on svg {
  filter: drop-shadow(0 4px 10px rgba(251,191,36,.5));
}
.r-star.r-pop { animation: rStarPop .5s ease; }
@keyframes rStarPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.45) rotate(10deg); }
  100% { transform: scale(1); }
}
.r-star.r-shake {
  animation: q2Shake .5s ease;
}
.r-stars-label {
  text-align: center; margin: 6px 0 0;
  font-size: 14.5px; color: var(--ink-soft);
  min-height: 22px;
  font-weight: 500;
}

/* Destacados chips */
.r-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.r-chip {
  position: relative; cursor: pointer; user-select: none;
}
.r-chip input {
  position: absolute; opacity: 0; pointer-events: none;
}
.r-chip span {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid rgba(6,20,31,.1);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  transition: all .18s ease;
}
.r-chip:hover span { border-color: rgba(16,185,129,.45); transform: translateY(-1px); }
.r-chip input:checked + span {
  background: linear-gradient(135deg, #10b981, #047857);
  border-color: var(--emerald, #10b981);
  color: #fff;
  box-shadow: 0 3px 10px rgba(16,185,129,.3);
}

/* Textarea */
#r-text {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(6,20,31,.12);
  border-radius: 14px; font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
  background: #fff;
  resize: vertical; min-height: 110px;
}
#r-text:focus {
  outline: none;
  border-color: var(--emerald, #10b981);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}
.r-text-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; margin-top: 6px;
  font-size: 12px; color: var(--ink-soft);
}
.r-text-hint { color: var(--emerald-deep, #047857); font-weight: 600; }

.r-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.r-consent {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; background: rgba(16,185,129,.04);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 12px;
  font-size: 13.5px; line-height: 1.5;
  cursor: pointer;
  margin: 18px 0;
}
.r-consent input {
  margin-top: 3px; accent-color: var(--emerald, #10b981);
  width: 18px; height: 18px; cursor: pointer;
}

.r-submit {
  width: 100%; justify-content: center;
  padding: 14px;
  font-size: 16px; font-weight: 600;
  border-radius: 14px;
  background: linear-gradient(135deg, #10b981, #f59e0b);
  border: none;
  transition: transform .12s ease, box-shadow .25s ease;
}
.r-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16,185,129,.35);
}
.r-submit:active { transform: translateY(0) scale(.98); }
.r-submit.is-loading {
  color: transparent; pointer-events: none; position: relative;
}
.r-submit.is-loading::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: q2Spin .7s linear infinite;
}
.r-submit-hint {
  text-align: center; margin: 12px 0 0;
  font-size: 12.5px; color: var(--ink-soft);
  line-height: 1.45;
}

/* Thank-you screen */
.r-thanks .container { max-width: 640px; }
.r-thanks-card {
  background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(251,191,36,.05));
  border: 1.5px solid rgba(16,185,129,.3);
  border-radius: 22px;
  padding: 44px 32px;
  text-align: center;
}
.r-thanks-emoji {
  font-size: 64px;
  animation: rBounce 2.2s ease-in-out infinite;
  line-height: 1;
  margin-bottom: 14px;
}
@keyframes rBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.08); }
}
.r-thanks-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500; color: var(--ink);
  margin: 0 0 10px;
}
.r-thanks-card h2 span { color: var(--emerald-deep, #047857); }
.r-thanks-lead {
  font-size: 16px; color: var(--ink-soft); margin: 0 0 8px;
}
.r-thanks-stars {
  font-size: 32px; letter-spacing: 4px;
  color: #fbbf24;
  margin: 4px 0 24px;
  text-shadow: 0 3px 8px rgba(251,191,36,.35);
}
.r-thanks-boost {
  background: #fff; border-radius: 18px;
  padding: 22px 24px; margin-top: 18px;
  border: 1px solid rgba(6,20,31,.08);
}
.r-thanks-boost h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; margin: 0 0 6px;
  color: var(--ink);
}
.r-thanks-boost h3 em {
  background: linear-gradient(120deg, #10b981, #fbbf24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.r-thanks-boost p { font-size: 14px; line-height: 1.55; }
.r-thanks-boost-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 14px;
}
.r-thanks-boost-actions .btn {
  font-size: 14px; padding: 10px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.r-btn-google {
  background: #fff; color: #3c4043;
  border: 1px solid rgba(0,0,0,.12);
}
.r-btn-google:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.r-google-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: conic-gradient(from -45deg, #ea4335, #fbbc04, #34a853, #4285f4, #ea4335);
  color: #fff; font-weight: 700; font-size: 12px;
  display: grid; place-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.r-btn-ta {
  background: #00af87; color: #fff;
}
.r-btn-ta:hover { background: #009a76; }

/* Confetti canvas */
.r-confetti-host {
  position: fixed; inset: 0; pointer-events: none;
  overflow: hidden; z-index: 150;
}
.r-confetti-piece {
  position: absolute; top: -5vh;
  width: 10px; height: 14px;
  border-radius: 3px;
  animation: rConfettiFall 3s cubic-bezier(.3, .7, .4, 1) forwards;
}
@keyframes rConfettiFall {
  0% { transform: translateY(0) translateX(0) rotate(0); opacity: 1; }
  100% { transform: translateY(105vh) translateX(var(--tx, 0)) rotate(var(--rot, 360deg)); opacity: 0; }
}

/* Mobile */
@media (max-width: 520px) {
  .r-hero { padding: 72px 0 24px; }
  .r-card { padding: 24px 20px; border-radius: 18px; }
  .r-star svg { width: 38px; height: 38px; }
  .r-stars { gap: 4px; }
  .r-grid { grid-template-columns: 1fr; }
  .r-thanks-card { padding: 32px 22px; }
  .r-thanks-emoji { font-size: 52px; }
  .r-thanks-boost-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
 * OPINIONES (/opiniones/) — Vista pública de reseñas
 * ============================================================ */
.opiniones-page main { padding-bottom: 40px; }

/* Hero */
.op-hero {
  padding: 110px 0 36px;
  text-align: center;
}
.op-hero .kicker { justify-content: center; margin-bottom: 16px; }
.op-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  color: var(--ink);
  margin: 0 auto 20px;
  max-width: 780px;
  font-weight: 500;
}
.op-hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, #10b981, #fbbf24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.op-hero-summary {
  display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 28px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(6,20,31,.06);
  margin-top: 10px;
}
.op-hero-stars {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.op-hero-rating-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 500;
  color: var(--ink); line-height: 1;
}
.op-hero-stars-visual {
  color: #fbbf24; font-size: 22px; letter-spacing: 2px;
  text-shadow: 0 3px 8px rgba(251,191,36,.35);
}
.op-hero-stars-count {
  font-size: 12.5px; color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: .4px;
}
.op-leave-cta {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Filters */
.op-filters-section {
  padding: 10px 0 28px;
  position: sticky; top: 68px; z-index: 10;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6,20,31,.06);
}
.op-filters-section .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
}
.op-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.op-filter {
  background: #fff;
  border: 1.5px solid rgba(6,20,31,.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all .18s ease;
}
.op-filter:hover {
  border-color: rgba(16,185,129,.45);
  transform: translateY(-1px);
}
.op-filter.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.op-search-wrap {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid rgba(6,20,31,.1);
  border-radius: 999px;
  min-width: 220px;
  color: var(--ink-soft);
  transition: border-color .18s ease;
}
.op-search-wrap:focus-within {
  border-color: var(--emerald, #10b981);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.op-search-wrap input {
  flex: 1;
  border: none; outline: none; background: transparent;
  font-size: 14px; color: var(--ink);
}

/* Grid de cards */
.op-section { padding: 28px 0 64px; }
.op-section .container { max-width: 1140px; }
.op-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.op-card {
  background: #fff;
  border: 1px solid rgba(6,20,31,.08);
  border-radius: 20px;
  padding: 26px 26px 22px;
  box-shadow: 0 6px 22px rgba(6,20,31,.05);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: opFadeIn .5s ease var(--d, 0s) both;
  transition: transform .25s ease, box-shadow .25s ease;
}
.op-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(6,20,31,.1);
}
@keyframes opFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.op-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #10b981, #fbbf24);
  opacity: .8;
}

.op-card-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; margin-bottom: 14px;
}
.op-card-stars {
  color: #fbbf24; font-size: 16px; letter-spacing: 2px;
}
.op-card-tour {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  max-width: 60%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.op-card-quote {
  flex: 1;
  margin: 0 0 18px;
  padding: 0;
  position: relative;
}
.op-quote-mark {
  width: 26px; height: 26px;
  color: rgba(16,185,129,.3);
  margin-bottom: 2px;
}
.op-card-quote p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
}

.op-card-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(6,20,31,.08);
}
.op-card-foot > div {
  display: flex; flex-direction: column; gap: 2px;
}
.op-card-foot strong {
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.op-card-foot small {
  font-size: 12.5px; color: var(--ink-soft);
}
.op-card-role {
  font-size: 11px; color: var(--emerald-deep, #047857);
  letter-spacing: .3px; font-weight: 600;
  text-align: right;
  max-width: 50%;
}

.op-empty {
  text-align: center; padding: 60px 20px;
  color: var(--ink-soft); font-size: 16px;
}

@media (max-width: 640px) {
  .op-hero { padding: 80px 0 24px; }
  .op-hero-summary { flex-direction: column; padding: 20px; }
  .op-filters-section .container { flex-direction: column; align-items: stretch; }
  .op-search-wrap { width: 100%; }
  .op-card { padding: 22px 20px 18px; }
}

/* ─── Tour SEO prose section (layover/escala Santiago) ─── */
.tour-seo-prose-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, var(--surface-alt, #f8fafc) 0%, transparent 100%);
}
.tour-seo-prose-section .lp-section-head { margin-bottom: 28px; }
.tour-seo-prose-section .lp-section-head h2 { margin-bottom: 12px; }
.tour-seo-prose-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  max-width: 1140px;
  margin: 0 auto;
}
.tour-seo-prose-col h3 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.15rem;
  margin: 20px 0 12px;
  color: var(--text-strong, #0a1628);
}
.tour-seo-prose-col h3:first-child { margin-top: 0; }
.tour-seo-prose-col p {
  line-height: 1.65;
  color: var(--text, #2a3548);
  margin: 0 0 14px;
}
.tour-seo-checklist,
.tour-seo-personas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-seo-checklist li,
.tour-seo-personas li {
  position: relative;
  padding: 10px 14px 10px 36px;
  background: #fff;
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 10px;
  line-height: 1.55;
  color: var(--text, #2a3548);
  font-size: .95rem;
  box-shadow: 0 1px 2px rgba(10,22,40,.03);
}
.tour-seo-checklist li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  color: #10b981;
  font-weight: 700;
  font-size: 1.05rem;
}
.tour-seo-personas li::before {
  content: "→";
  position: absolute;
  left: 12px;
  top: 10px;
  color: #fbbf24;
  font-weight: 700;
}
.tour-seo-prose-callout {
  margin-top: 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(251,191,36,.08));
  border: 1px dashed rgba(52,211,153,.45);
  border-radius: 14px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.tour-seo-prose-callout p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-strong, #0a1628);
  font-size: .98rem;
}
@media (max-width: 820px) {
  .tour-seo-prose-grid { grid-template-columns: 1fr; gap: 24px; }
  .tour-seo-prose-section { padding: 36px 0 44px; }
}

/* =====================================================
 * Photography service · /fotografia/, /en/photography/, /br/fotografia/
 * Plus the home photo-service section + quote add-on chip.
 * ===================================================== */

/* Hero pricing pills */
.foto-price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.4rem 0 1.6rem;
}
.foto-price-pill {
  position: relative;
  flex: 1 1 200px;
  min-width: 180px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.foto-price-pill.is-highlight {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(52, 211, 153, 0.2));
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 16px 36px -16px rgba(251, 191, 36, 0.55);
}
.foto-price-pill-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1209;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(251, 191, 36, 0.55);
  white-space: nowrap;
}
.foto-price-pill-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.78;
  font-weight: 600;
}
.foto-price-pill.is-highlight .foto-price-pill-label { padding-right: 78px; }
.foto-price-pill-amount {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.foto-price-pill-note {
  font-size: 12px;
  opacity: 0.72;
  line-height: 1.35;
}

/* Hero card variant tightened for photo */
.foto-hero-card h3 { letter-spacing: 0.02em; }
.foto-hero-card li {
  font-size: 13.5px;
  padding: 9px 0;
  line-height: 1.4;
  align-items: flex-start;
}
.foto-hero-card li svg { flex-shrink: 0; margin-top: 2px; }
@media (max-width: 480px) {
  .foto-price-pills { gap: 10px; }
  .foto-price-pill { padding: 14px 14px 12px; min-width: 0; }
  .foto-price-pill-amount { font-size: 1.55rem; }
  .foto-price-pill.is-highlight .foto-price-pill-label { padding-right: 70px; }
}

/* Plans / pricing cards */
.foto-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 740px) {
  .foto-plans { grid-template-columns: 1fr; gap: 20px; }
}
.foto-plan {
  position: relative;
  background: var(--surface, #fff);
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 22px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px -28px rgba(10, 22, 40, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.foto-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px -28px rgba(10, 22, 40, 0.28);
}
.foto-plan.is-highlight {
  background: linear-gradient(180deg, #0a1628 0%, #11243f 100%);
  border-color: rgba(251, 191, 36, 0.45);
  color: #fff;
  box-shadow: 0 22px 44px -22px rgba(10, 22, 40, 0.55);
}
.foto-plan.is-highlight .foto-plan-tag { color: #fbbf24; }
.foto-plan.is-highlight .foto-plan-list li { border-color: rgba(255, 255, 255, 0.1); }
.foto-plan.is-highlight .foto-plan-savings { color: rgba(251, 191, 36, 0.85); }
.foto-plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1209;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -4px rgba(251, 191, 36, 0.55);
  white-space: nowrap;
}
.foto-plan-head { display: flex; flex-direction: column; gap: 6px; }
.foto-plan-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--emerald-deep, #047857);
}
.foto-plan-head h3 {
  margin: 0;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.6rem;
  font-weight: 500;
}
.foto-plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 2px; }
.foto-plan-amount {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.foto-plan-unit { font-size: 14px; opacity: 0.7; }
.foto-plan-savings {
  margin: 4px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: var(--emerald-deep, #047857);
  font-weight: 600;
}
.foto-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.foto-plan-list li {
  padding: 10px 0;
  font-size: 14.5px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}
.foto-plan-list li:last-child { border-bottom: none; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.foto-fineprint {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft, rgba(0, 0, 0, 0.62));
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}
.foto-fineprint svg { flex: 0 0 auto; margin-top: 2px; opacity: 0.7; }

/* Home-page photo CTA section (used in /, /en/, /br/) */
.photo-service-section {
  position: relative;
  padding: 96px 0 100px;
  background:
    radial-gradient(120% 80% at 70% 20%, rgba(251, 191, 36, 0.14), transparent 60%),
    radial-gradient(100% 70% at 20% 90%, rgba(52, 211, 153, 0.10), transparent 60%),
    linear-gradient(180deg, #0a1628 0%, #0d1d36 100%);
  color: #fff;
  overflow: hidden;
}
.photo-service-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 1px, transparent 1px 14px);
  opacity: .5;
  pointer-events: none;
}
.photo-service-section > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
@media (max-width: 920px) {
  .photo-service-section { padding: 64px 0 70px; }
  .photo-service-section > .container { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .photo-service-section { padding: 52px 0 58px; }
  .photo-service-copy h2 br { display: none; }
  .photo-service-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .photo-service-actions .btn { width: 100%; justify-content: center; padding: 13px 18px; }
  .photo-service-prices { gap: 10px; }
  .photo-service-mini-faq { font-size: 12.5px; }
}
.photo-service-copy .kicker { color: rgba(255, 255, 255, 0.7); }
.photo-service-copy .kicker-line { background: rgba(251, 191, 36, 0.6); }
.photo-service-copy h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.6rem);
  line-height: 1.1;
  margin: .6rem 0 1rem;
  color: #fff;
  font-weight: 500;
}
.photo-service-copy h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #fbbf24, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.photo-service-copy p.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
}
.photo-service-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.6rem 0 1.5rem;
}
.photo-service-prices .foto-price-pill { flex: 1 1 200px; }
.photo-service-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.photo-service-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.photo-service-actions .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a1628;
  box-shadow: 0 14px 30px -10px rgba(251, 191, 36, 0.55);
}
.photo-service-actions .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(251, 191, 36, 0.65); }
.photo-service-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.photo-service-actions .btn-outline:hover { background: rgba(255, 255, 255, 0.08); }
.photo-service-mini-faq {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.photo-service-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow:
    0 40px 80px -28px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateZ(0); /* GPU compositing for crisp render */
}
.photo-service-visual picture { display: block; width: 100%; height: 100%; }
.photo-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 55%, rgba(10,22,40,0.55) 100%);
  pointer-events: none;
}
/* Mobile: keep natural 3:2 ratio so subjects aren't cropped or distorted */
@media (max-width: 920px) {
  .photo-service-visual { aspect-ratio: 3 / 2; max-width: 640px; margin: 0 auto; }
}
.photo-service-visual-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.photo-service-visual-tag svg { width: 14px; height: 14px; }

/* Cotizador add-on row (Fotografía Profesional) — refactor v2: card-style radios */
.q2-addon-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 18px 18px;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(52, 211, 153, 0.06));
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.q2-addon-photo[data-active="true"] {
  border-color: rgba(251, 191, 36, 0.65);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(52, 211, 153, 0.10));
  box-shadow: 0 22px 44px -22px rgba(251, 191, 36, 0.5);
}
.q2-addon-photo-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: flex-start;
}
.q2-addon-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fbbf24, #34d399);
  color: #0a1628;
  flex-shrink: 0;
}
.q2-addon-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.q2-addon-title {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--ink, #0a1628);
}
.q2-addon-title small {
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: rgba(251, 191, 36, 0.22);
  color: #92580c;
  padding: 3px 9px;
  border-radius: 999px;
}
.q2-addon-desc {
  font-size: 13px;
  color: var(--ink-soft, rgba(0,0,0,0.65));
  line-height: 1.5;
}
.q2-addon-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--emerald-deep, #047857);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(4, 120, 87, 0.25);
  transition: background .2s ease, border-color .2s ease;
}
.q2-addon-link:hover {
  background: rgba(4, 120, 87, 0.08);
  border-color: rgba(4, 120, 87, 0.45);
}
.q2-addon-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.q2-addon-opt { position: relative; cursor: pointer; }
.q2-addon-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}
.q2-addon-opt-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 14px 12px;
  border: 1.5px solid rgba(10, 22, 40, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .15s ease;
  position: relative;
  height: 100%;
}
.q2-addon-opt:hover .q2-addon-opt-card {
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}
.q2-addon-opt input:focus-visible ~ .q2-addon-opt-card {
  outline: 2px solid rgba(251, 191, 36, 0.6);
  outline-offset: 2px;
}
.q2-addon-opt input:checked ~ .q2-addon-opt-card {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(255, 255, 255, 0.95));
  box-shadow: 0 14px 30px -16px rgba(251, 191, 36, 0.55);
}
.q2-addon-opt-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 22, 40, 0.25);
  background: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.q2-addon-opt input:checked ~ .q2-addon-opt-card::before {
  border-color: #f59e0b;
  background: radial-gradient(circle at center, #f59e0b 0 5px, #fff 5.5px 100%);
}
.q2-addon-opt-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ink-soft, rgba(0,0,0,0.55));
  padding-right: 26px;
}
.q2-addon-opt-title {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink, #0a1628);
}
.q2-addon-opt-meta {
  font-size: 12px;
  color: var(--ink-soft, rgba(0,0,0,0.6));
  line-height: 1.35;
}
.q2-addon-opt.is-recommended .q2-addon-opt-card { border-color: rgba(251, 191, 36, 0.4); }
.q2-addon-opt-ribbon {
  position: absolute;
  top: -10px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1209;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 16px -6px rgba(251, 191, 36, 0.55);
  pointer-events: none;
}

@media (max-width: 760px) {
  .q2-addon-options { grid-template-columns: 1fr; }
  .q2-addon-opt-ribbon { left: 50%; transform: translateX(-50%); }
}
@media (max-width: 520px) {
  .q2-addon-photo-head { grid-template-columns: auto 1fr; }
  .q2-addon-link { grid-column: 1 / -1; align-self: stretch; justify-content: center; }
}

/* ===== Spotlight City Tour Santiago ===== */
.foto-spotlight { padding: 80px 0 88px; background: var(--surface-alt, #f8f7f4); }
.foto-spotlight-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px -32px rgba(10, 22, 40, 0.28);
  border: 1px solid rgba(10, 22, 40, 0.06);
}
@media (max-width: 920px) {
  .foto-spotlight { padding: 64px 0 70px; }
  .foto-spotlight-card { grid-template-columns: 1fr; }
}
.foto-spotlight-media { position: relative; min-height: 360px; }
.foto-spotlight-media picture,
.foto-spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foto-spotlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 50%, rgba(10,22,40,0.45) 100%);
}
.foto-spotlight-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1209;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px -8px rgba(251, 191, 36, 0.5);
}
.foto-spotlight-body {
  padding: 38px 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 540px) { .foto-spotlight-body { padding: 28px 22px 28px; } }
.foto-spotlight-body .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald-deep, #047857);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.foto-spotlight-body .kicker-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--emerald-deep, #047857);
}
.foto-spotlight-body h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
  line-height: 1.15;
  margin: 0;
  color: var(--ink, #0a1628);
  font-weight: 500;
}
.foto-spotlight-body h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #f59e0b, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.foto-spotlight-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft, rgba(0,0,0,0.7));
  margin: 0;
}
.foto-spotlight-spots {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 540px) { .foto-spotlight-spots { grid-template-columns: 1fr; } }
.foto-spotlight-spots li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.18);
}
.foto-spotlight-spots li > div { display: flex; flex-direction: column; gap: 2px; line-height: 1.35; }
.foto-spotlight-spots strong { font-size: 13.5px; color: var(--ink, #0a1628); font-weight: 700; }
.foto-spotlight-spots span { font-size: 12px; color: var(--ink-soft, rgba(0,0,0,0.62)); }
.foto-spot-num {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: #92580c;
  background: rgba(251, 191, 36, 0.3);
  padding: 4px 7px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.foto-spotlight-pricing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--ink, #0a1628);
  color: #fff;
  border-radius: 14px;
}
.foto-spotlight-priceline { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.foto-spotlight-priceline span {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  opacity: 0.7;
}
.foto-spotlight-priceline strong {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.foto-spotlight-priceline strong small {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 400;
  font-family: var(--font-body, 'Inter', sans-serif);
  letter-spacing: 0;
}
.foto-spotlight-priceline.is-photo strong {
  background: linear-gradient(135deg, #fbbf24, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.foto-spotlight-plus {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
@media (max-width: 540px) {
  .foto-spotlight-pricing {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  .foto-spotlight-plus { display: none; }
}
.foto-spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.foto-spotlight-cta .btn {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.foto-spotlight-cta .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a1628;
  box-shadow: 0 14px 28px -10px rgba(251, 191, 36, 0.55);
  border: none;
}
.foto-spotlight-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(251, 191, 36, 0.7); }
.foto-spotlight-cta .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(10, 22, 40, 0.18);
  color: var(--ink, #0a1628);
}
.foto-spotlight-cta .btn-outline:hover { background: rgba(10, 22, 40, 0.05); border-color: rgba(10, 22, 40, 0.4); }

/* Cotizador add-on tip callout */
.q2-addon-tip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  margin: 0 0 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.10), rgba(4, 120, 87, 0.06));
  border: 1px dashed rgba(251, 191, 36, 0.4);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink, #0a1628);
}
.q2-addon-tip-ico {
  font-size: 14px;
  flex-shrink: 0;
}
.q2-addon-tip strong { font-weight: 700; }

/* ===== Foto Banner Cinematográfico ===== */
.foto-banner {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 720px) {
  .foto-banner { min-height: 380px; padding: 60px 0; }
}
.foto-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.foto-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foto-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(10, 22, 40, 0.55), rgba(10, 22, 40, 0.85)),
    linear-gradient(180deg, rgba(10, 22, 40, 0.45) 0%, rgba(10, 22, 40, 0.7) 100%);
}
.foto-banner-inner {
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.foto-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.foto-banner-quote {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  max-width: 24ch;
}
.foto-banner-quote em {
  font-style: italic;
  color: #fbbf24;
}
.foto-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a1628;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 16px 32px -10px rgba(251, 191, 36, 0.55);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-top: 6px;
}
.foto-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -12px rgba(251, 191, 36, 0.7);
}
.foto-banner-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Mobile bottom nav photo entry */
.mbn-foto svg { color: #fbbf24; }


/* ============================================================
   COTIZADOR — RESPONSIVE POLISH (audit · 2026-04-28)
   Limpieza integral del UX en mobile/tablet sin tocar desktop.
   ============================================================ */

/* 1. Suppress legacy ::after "✓" en v2 cards (la v2 ya trae su propio
      .wiz-tour-check con SVG · evita doble check superpuesto). */
.cotizar-v2 .wiz-tour-card.wiz-tour-card-v2:has(input:checked)::after { content: none; }

/* 2. Tour cards v2 · clamp del descriptor a 3 líneas para alturas uniformes */
.wiz-tour-card-v2 .wiz-tour-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 3. Container con padding lateral más respirable en phones */
@media (max-width: 640px) {
  .cotizar-v2 .container { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 380px) {
  .cotizar-v2 .container { padding-left: 14px; padding-right: 14px; }
}

/* 4. Hero compacto en mobile (menos blanco vacío arriba) */
@media (max-width: 640px) {
  .q2-hero { padding: 64px 0 18px; }
  .q2-hero-title { font-size: clamp(24px, 7vw, 32px); margin-bottom: 10px; }
  .q2-hero-sub { font-size: 14px; margin-bottom: 14px; }
  .q2-hero-rating {
    font-size: 12px; padding: 5px 12px;
    flex-wrap: wrap; justify-content: center; row-gap: 2px;
  }
  .q2-trust { gap: 6px 14px; font-size: 12px; }
}

/* 5. Primary nav en mobile · scroll horizontal con hint visual,
      en lugar de overflow rígido del flex */
@media (max-width: 640px) {
  .cotizar-v2 .site-header .nav { gap: 12px; height: 64px; }
  .cotizar-v2 .primary-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
    padding-right: 16px;
    margin-right: -16px;
  }
  .cotizar-v2 .primary-nav::-webkit-scrollbar { display: none; }
  .cotizar-v2 .primary-nav a { white-space: nowrap; flex-shrink: 0; padding: 6px 0; }
  .cotizar-v2 .brand-name { font-size: 14px; letter-spacing: 3px; }
  .cotizar-v2 .brand-mark { width: 28px; height: 28px; }
}

/* 6. Tour cards v2 · footer flexible en widths estrechos
      (precio + CTA podían superponerse) */
@media (max-width: 380px) {
  .wiz-tour-card-v2 .wiz-tour-foot-v2 {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
  }
  .wiz-tour-card-v2 .wiz-tour-cta {
    width: 100%;
    justify-content: center;
    padding: 9px 12px;
  }
  .wiz-tour-card-v2 .wiz-tour-body-v2 { padding: 16px 16px 10px; }
}

/* 7. Transfer panel (hora pickup + nº vuelo) · 1 columna en phones,
      labels más fluidas */
@media (max-width: 520px) {
  .wiz-tour-card-v2 .wiz-tour-transfer-panel {
    grid-template-columns: 1fr;
    padding: 14px 16px;
    gap: 10px;
  }
  .wiz-tour-card-v2 .wiz-tour-transfer-field input {
    font-size: 16px; /* evita zoom auto-iOS al focus */
    padding: 9px 12px;
  }
}

/* 8. Tour image badges · evita solapamiento del featured-badge con
      el indicador de check en cards estrechas */
@media (max-width: 380px) {
  .wiz-tour-card-v2 .wiz-tour-featured-badge {
    top: 10px; right: 46px;
    font-size: 9px; padding: 4px 8px 4px 6px;
  }
  .wiz-tour-card-v2 .wiz-tour-check { top: 10px; right: 10px; width: 26px; height: 26px; }
  .wiz-tour-card-v2 .wiz-tour-check svg { width: 14px; height: 14px; }
  .wiz-tour-card-v2 .wiz-tour-tag { top: 10px; left: 10px; font-size: 9.5px; padding: 4px 8px; }
  .wiz-tour-card-v2 .wiz-tour-chips { left: 10px; bottom: 10px; }
}

/* 9. Inputs/selects/textarea · 16px mínimo en mobile evita zoom-on-focus
      automático de iOS Safari */
@media (max-width: 640px) {
  .cotizar-v2 .wiz-field input,
  .cotizar-v2 .wiz-field select,
  .cotizar-v2 .wiz-field textarea,
  .cotizar-v2 .q2-coupon-row input,
  .cotizar-v2 .q2-custom textarea,
  .cotizar-v2 .q2-custom input {
    font-size: 16px;
  }
}

/* 10. Stepper widget · tap targets más cómodos en phones */
@media (max-width: 520px) {
  .cotizar-v2 .stepper { width: 100%; }
  .cotizar-v2 .stepper button {
    min-width: 44px; min-height: 44px; font-size: 18px;
  }
  .cotizar-v2 .stepper input { font-size: 17px; min-height: 44px; }
}

/* 11. Coupon row · botón a línea propia en widths muy estrechas */
@media (max-width: 380px) {
  .q2-coupon-row { flex-direction: column; align-items: stretch; }
  .q2-coupon-row .btn { width: 100%; }
}

/* 12. Pay radios · 1 columna en phones (más legible que minmax 180px) */
@media (max-width: 520px) {
  .q2-pay-radios { grid-template-columns: 1fr; gap: 8px; }
}

/* 13. Estimate (subtotal stage 1) · más compacto en mobile,
      breakdown legible sin desbordar */
@media (max-width: 520px) {
  .q2-estimate { padding: 18px 18px; gap: 8px; }
  .q2-estimate strong { font-size: 26px; }
  .q2-breakdown { font-size: 12.5px; }
  .q2-breakdown li { flex-wrap: wrap; }
  .q2-breakdown li em { font-size: 12px; flex-basis: 100%; }
}

/* 14. Summary stage 2 · totales legibles + edit-row touch-friendly */
@media (max-width: 520px) {
  .q2-summary { padding: 18px 18px; }
  .q2-summary-tours li {
    flex-direction: column; align-items: flex-start; gap: 4px;
  }
  .q2-summary-tours li em { font-size: 12px; }
  .q2-summary-dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(6,20,31,.06);
  }
  .q2-summary-dl > div:last-child { border-bottom: none; }
  .q2-summary-dl dd { font-weight: 600; }
  .q2-summary-edit-ico { opacity: 1; } /* siempre visible en touch */
}

/* 15. Steps (progress) · tighter en móvil — la track ya se compacta a 40px,
      ahora también el padding de los steps + el num */
@media (max-width: 480px) {
  .q2-progress-track { left: 32px; right: 32px; top: 32px; }
  .q2-progress .q2-steps li { padding: 10px 8px; }
  .q2-progress .q2-steps li .q2-step-num { width: 28px; height: 28px; font-size: 12.5px; }
  .q2-progress .q2-steps li b { font-size: 13px; }
  .q2-progress .q2-steps li small { font-size: 10.5px; }
}

/* 16. Photo addon header · stack vertical en phones (icon + body + link) */
@media (max-width: 480px) {
  .q2-addon-photo-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .q2-addon-icon { width: 38px; height: 38px; }
  .q2-addon-link { align-self: flex-start; }
  .q2-addon-photo { padding: 16px; }
}

/* 17. Success stage · CTAs en stack apilado (ya hay regla en 520px,
      la consolidamos para que nunca se vea cramped) */
@media (max-width: 600px) {
  .q2-next-steps { gap: 10px; }
  .q2-next-steps li { padding: 10px 12px; }
}

/* 18. Toast · respeta safe-area en iOS y no choca con bottom nav */
.wiz-toast {
  bottom: calc(20px + env(safe-area-inset-bottom, 0));
  left: 50%; transform: translateX(-50%);
  max-width: calc(100vw - 32px);
}
@media (max-width: 480px) {
  .wiz-toast { font-size: 13px; padding: 10px 14px; }
}

/* 19. Footer pro · más aire arriba en mobile y links con tap-target sano */
@media (max-width: 640px) {
  .cotizar-v2 .site-footer--pro .footer-links a { padding: 4px 0; display: inline-block; }
  .cotizar-v2 .site-footer--pro .footer-bottom-links,
  .cotizar-v2 .site-footer--pro .footer-langs { gap: 12px; flex-wrap: wrap; }
}

/* 20. Evita scroll horizontal accidental por bg-mesh / blobs grandes */
.cotizar-v2 { overflow-x: hidden; }

/* ============================================================
   PREMIUM UNIFIED HEADER (2026)
   Glassmorphic sticky header with viñas dropdown, brand tagline,
   CTA, lang switcher and mobile drawer. Used on every page.
============================================================ */

/* Brand wordmark with vertical tagline ("PRIVATE TOURS · CHILE") */
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand-wordmark .brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink, #0a1628);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.brand-tagline {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted, #6b7a89);
  text-transform: uppercase;
}

/* Header grid — logo · nav · actions (auto · 1fr · auto) lets the centre
   nav breathe and prevents the right-most lang flag from clipping. */
.site-header .nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  height: 76px;
}

/* Primary nav lives in the centre column, flex-wrap suppressed so the
   "Ruta del Vino" wrapping bug can never reappear. */
.site-header .primary-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
}
.site-header .primary-nav > a,
.site-header .nav-dropdown-btn {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink, #0a1628);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 200ms ease;
}
.site-header .primary-nav > a:hover,
.site-header .nav-dropdown-btn:hover {
  color: var(--gold-deep, #b48a1a);
}
.site-header .primary-nav > a::after,
.site-header .nav-dropdown-btn::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--emerald, #34d399), var(--gold, #fbbf24));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .primary-nav > a:hover::after,
.site-header .nav-dropdown-btn:hover::after,
.site-header .nav-dropdown-btn[aria-expanded="true"]::after {
  transform: scaleX(1);
}

/* Wineries dropdown */
.nav-dropdown { position: relative; }
.nav-chevron {
  width: 10px; height: 10px;
  transition: transform 220ms ease;
}
.nav-dropdown-btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(15, 60, 50, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10, 22, 40, 0.16);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 60;
}
.nav-dropdown-btn[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  white-space: nowrap;
  color: var(--ink, #0a1628);
  text-decoration: none;
  font-weight: 500;
  transition: background 150ms, color 150ms, padding-left 150ms;
}
.nav-dropdown-menu a:hover {
  background: rgba(251, 191, 36, 0.10);
  color: var(--gold-deep, #b48a1a);
  padding-left: 1.4rem;
}

/* Right action group */
.site-header .nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-cta {
  font-size: 0.82rem !important;
  padding: 0.55rem 1.05rem !important;
  white-space: nowrap;
}
.nav-cta svg { width: 14px; height: 14px; }

/* Mobile burger (≤ 980 px) */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 0.45rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px; height: 40px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink, #0a1628);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 220ms ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.08);
  padding: 1rem 1.25rem 1.5rem;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-nav a, .mobile-nav .mobile-nav-cta {
  display: block;
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink, #0a1628);
  text-decoration: none;
  border-radius: 10px;
  transition: background 150ms, color 150ms;
}
.mobile-nav a:hover {
  background: rgba(251, 191, 36, 0.10);
  color: var(--gold-deep, #b48a1a);
}
.mobile-nav-group {
  margin: 0.4rem 0;
  padding: 0.45rem 0.9rem;
  background: rgba(10, 22, 40, 0.025);
  border-radius: 10px;
}
.mobile-nav-group-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #6b7a89);
  padding: 0.35rem 0;
}
.mobile-nav .mobile-nav-sub {
  padding: 0.55rem 0.6rem;
  font-size: 0.92rem;
  font-weight: 400;
}
.mobile-nav-cta {
  margin-top: 0.6rem;
  text-align: center;
  background: var(--ink, #0a1628) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.mobile-nav-cta:hover {
  background: linear-gradient(135deg, var(--emerald-deep, #047857), var(--ink, #0a1628)) !important;
  color: #fff !important;
}

/* Drawer is gated behind .nav-burger[aria-expanded="true"] sibling state.
   Using a more specific selector (header.menu-open) makes it work on
   browsers that don't support :has() yet. */
@media (max-width: 980px) {
  .site-header .primary-nav { display: none; }
  .site-header .nav-actions .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .site-header.menu-open .mobile-nav { display: block; }
}

/* Tablet & narrow desktop — tighten spacing so all nav items fit */
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header .nav { gap: 1rem; }
  .site-header .primary-nav { gap: 1rem; }
  .site-header .primary-nav > a,
  .site-header .nav-dropdown-btn { font-size: 0.84rem; }
  .nav-cta { font-size: 0.78rem !important; padding: 0.5rem 0.85rem !important; }
  .brand-tagline { font-size: 9px; letter-spacing: 0.16em; }
}

/* Phone — collapse non-critical brand decoration to reclaim header space */
@media (max-width: 640px) {
  .brand-tagline { display: none; }
  .site-header .nav { height: 64px; gap: 0.6rem; }
  .lang-switch > summary .lbl-text { display: none; }
}

/* Lock body scroll while the mobile drawer is open. */
html.nav-locked, html.nav-locked body { overflow: hidden; }

/* On dark .lp-page hero, make the new header readable. We override
   pages.css's earlier `.lp-page .primary-nav a { color: rgba(255,255,255,.85) }`
   so the new dropdown button + tagline + burger inherit the same palette. */
.lp-page .site-header .nav-dropdown-btn {
  color: rgba(255,255,255,.92);
}
.lp-page .site-header .nav-dropdown-btn:hover { color: var(--gold-soft, #fbbf24); }
.lp-page .site-header .primary-nav > a { color: rgba(255,255,255,.92); }
.lp-page .site-header .primary-nav > a:hover { color: var(--gold-soft, #fbbf24); }
.lp-page .brand-wordmark .brand-name {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.lp-page .brand-tagline { color: rgba(255,255,255,.65); }
.lp-page .nav-burger span { background: #fff; }
/* When the drawer is open on lp-page, swap to a light surface so the
   menu links remain legible (they're styled on a white background). */
.lp-page .site-header.menu-open .mobile-nav { color: var(--ink); }

/* The ES home (/) does NOT have body.lp-page so it uses the light
   palette; nothing to override there. */

/* Fix: `.site-header.scrolled` mirrors legacy `.is-stuck` for the new
   sticky-shadow look. Keeps both class names compatible. */
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}
.lp-page .site-header.scrolled,
.lp-page .site-header.is-stuck {
  background: rgba(10, 22, 40, .80);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
}


/* ============================================================
   PARTNERS · FULL PRO upgrade
   ============================================================ */

/* Scroll progress bar */
.partners-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  background: rgba(15, 23, 42, .05);
  z-index: 300;
  pointer-events: none;
}
.partners-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #34d399 0%, #fbbf24 100%);
  box-shadow: 0 0 10px rgba(16, 185, 129, .5);
  transition: width .12s linear;
}

/* Reveal-on-scroll */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16, .65, .32, 1), transform .85s cubic-bezier(.16, .65, .32, 1);
  will-change: opacity, transform;
}
.lp-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.lp-reveal[data-reveal-delay="1"].is-revealed { transition-delay: .08s; }
.lp-reveal[data-reveal-delay="2"].is-revealed { transition-delay: .16s; }
.lp-reveal[data-reveal-delay="3"].is-revealed { transition-delay: .24s; }
.lp-reveal[data-reveal-delay="4"].is-revealed { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Hero · Ken Burns + Aurora orbs */
.partners-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  color: #fff;
  background: #0a1628;
}
.partners-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--ph-img);
  background-size: cover;
  background-position: center;
  animation: phKenBurns 26s ease-out forwards;
  will-change: transform;
}
@keyframes phKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -2%); }
}
.partners-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,22,40,.55) 0%, rgba(10,22,40,.4) 35%, rgba(10,22,40,.85) 100%),
    linear-gradient(90deg, rgba(10,22,40,.5) 0%, rgba(10,22,40,.1) 60%, transparent 100%);
  pointer-events: none;
}
.partners-hero-aurora {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.partners-hero-aurora .ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  mix-blend-mode: screen;
}
.partners-hero-aurora .ph-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #34d399, transparent 65%);
  top: -10%; left: -8%;
}
.partners-hero-aurora .ph-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #fbbf24, transparent 65%);
  bottom: -12%; right: -6%;
  animation: phOrbFloat 18s ease-in-out infinite alternate;
}
@keyframes phOrbFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, -40px); }
}
.partners-hero .container {
  position: relative; z-index: 3;
}
.partners-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .partners-hero { padding: 5rem 0 3.5rem; min-height: 0; }
  .partners-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.partners-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .85rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  animation: phFadeUp .8s cubic-bezier(.16,.65,.32,1) both;
}
.partners-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .55);
  animation: phPulseDot 1.8s infinite;
}
@keyframes phPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
@keyframes phFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.partners-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -.024em;
  line-height: 1.05;
  margin: 0 0 1.3rem;
  color: #fff;
  animation: phFadeUp .9s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .08s;
}
.partners-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partners-hero-lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 2rem;
  max-width: 540px;
  animation: phFadeUp 1s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .16s;
}
.partners-hero-cta {
  display: flex; gap: .85rem; flex-wrap: wrap;
  animation: phFadeUp 1.1s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .24s;
}
.partners-hero-cta .btn-ph-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  color: #0a1628;
  border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px -14px rgba(52, 211, 153, .65);
  transition: transform .18s, box-shadow .22s;
}
.partners-hero-cta .btn-ph-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px rgba(52, 211, 153, .75);
}
.partners-hero-cta .btn-ph-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s;
}
.partners-hero-cta .btn-ph-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-2px);
}
.partners-hero-meta {
  margin-top: 1.2rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  animation: phFadeUp 1.2s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .32s;
}
.partners-hero-meta a {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero side preview card */
.partners-hero-preview {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 1.6rem 1.6rem 1.4rem;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 32px 64px -32px rgba(0, 0, 0, .55);
  position: relative;
  overflow: hidden;
  animation: phFadeUp 1s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .3s;
}
.partners-hero-preview::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0070ba 0%, #34d399 50%, #fbbf24 100%);
}
.partners-hero-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
  font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  color: rgba(255, 255, 255, .65);
}
.partners-hero-preview-head .ph-dot {
  display: inline-flex; align-items: center; gap: .35rem;
  color: #34d399;
}
.partners-hero-preview-head .ph-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(52, 211, 153, .6);
}
.partners-hero-preview h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 .25rem;
  letter-spacing: -.005em;
}
.partners-hero-preview-sub {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 1.2rem;
}
.partners-hero-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.partners-hero-preview-stat {
  display: flex; flex-direction: column;
}
.partners-hero-preview-stat-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem; font-weight: 500;
  color: #fff;
  letter-spacing: -.012em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.partners-hero-preview-stat-lbl {
  font-size: .65rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  margin-top: .25rem;
}
.partners-hero-preview-cta {
  margin-top: 1.2rem;
  display: block;
  text-align: center;
  padding: .7rem;
  background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
  color: #fff;
  border-radius: 10px;
  font-size: .85rem; font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 10px 22px -10px rgba(0, 112, 186, .55);
}
.partners-hero-preview-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(0, 112, 186, .65); }
.partners-hero-preview-mini-phases {
  display: flex; gap: .35rem;
  margin: 1rem 0 1.1rem;
}
.partners-hero-preview-mini-phases span {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, .12);
  border-radius: 4px;
}
.partners-hero-preview-mini-phases span.is-done { background: linear-gradient(90deg, #34d399, #10b981); box-shadow: 0 0 6px rgba(52, 211, 153, .4); }

/* Scroll hint */
.partners-hero-scroll {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, .55);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  align-items: center; gap: .55rem;
  text-decoration: none;
  font-weight: 700;
  animation: phFadeUp 1.4s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .5s;
}
.partners-hero-scroll svg {
  width: 16px; height: 16px;
  animation: phScrollBob 2s ease-in-out infinite;
}
@keyframes phScrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Comparison table · Tourevo vs typical DMC */
.partners-compare {
  background: var(--surface, #fff);
  padding: 5rem 0 4.5rem;
  position: relative;
}
.partners-compare-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.partners-compare-table {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,.08));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, .18);
}
.partners-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line, rgba(15,23,42,.08));
  transition: background .15s;
}
.partners-compare-row:last-child { border-bottom: none; }
.partners-compare-row:hover { background: rgba(16, 185, 129, .02); }
.partners-compare-row.is-head {
  background: linear-gradient(180deg, #0a1628, #142c4e);
  color: #fff;
  border-bottom: none;
}
.partners-compare-row.is-head:hover { background: linear-gradient(180deg, #0a1628, #142c4e); }
.partners-compare-cell {
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center;
  font-size: .92rem;
  line-height: 1.4;
}
.partners-compare-cell.is-label {
  font-weight: 600;
  color: var(--ink, #0a1628);
  border-right: 1px solid var(--line, rgba(15,23,42,.08));
}
.partners-compare-row.is-head .partners-compare-cell {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.3rem 1.4rem;
  border-right: none;
  letter-spacing: -.005em;
}
.partners-compare-row.is-head .partners-compare-cell.is-tourevo {
  background: linear-gradient(180deg, transparent, rgba(52, 211, 153, .15));
}
.partners-compare-cell.is-yes {
  color: var(--emerald-deep, #065f46);
  font-weight: 600;
}
.partners-compare-cell.is-yes svg {
  width: 18px; height: 18px;
  stroke-width: 3;
  margin-right: .55rem;
  color: #10b981;
  flex-shrink: 0;
}
.partners-compare-cell.is-no {
  color: #94a3b8;
}
.partners-compare-cell.is-no svg {
  width: 16px; height: 16px;
  stroke-width: 2;
  margin-right: .55rem;
  color: #cbd5e1;
  flex-shrink: 0;
}
.partners-compare-cell.is-tourevo {
  background: rgba(52, 211, 153, .04);
}
@media (max-width: 720px) {
  .partners-compare-row,
  .partners-compare-row.is-head { grid-template-columns: 1.3fr 1fr 1fr; }
  .partners-compare-cell { padding: .85rem .9rem; font-size: .82rem; }
}

/* Testimonials */
.partners-testimonials {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, .03), transparent);
}
.partners-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
  max-width: 1080px;
  margin: 2.5rem auto 0;
}
.partners-testimonial {
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,.08));
  border-radius: 16px;
  padding: 1.8rem 1.7rem 1.6rem;
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, .15);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.partners-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -32px rgba(15, 23, 42, .22);
}
.partners-testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; left: 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(16, 185, 129, .25);
  font-weight: 500;
}
.partners-testimonial-stars {
  color: #fbbf24;
  font-size: .85rem;
  letter-spacing: .15em;
  margin-bottom: .85rem;
}
.partners-testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink, #0a1628);
  font-weight: 400;
  letter-spacing: -.005em;
  margin: 0 0 1.4rem;
  position: relative; z-index: 1;
}
.partners-testimonial-author {
  display: flex; align-items: center; gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line, rgba(15,23,42,.06));
}
.partners-testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #fbbf24);
  display: inline-flex; align-items: center; justify-content: center;
  color: #0a1628;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(16, 185, 129, .45);
}
.partners-testimonial-meta { display: flex; flex-direction: column; gap: .15rem; }
.partners-testimonial-name {
  font-size: .88rem; font-weight: 700;
  color: var(--ink, #0a1628);
}
.partners-testimonial-role {
  font-size: .75rem;
  color: var(--ink-soft, #475569);
}
.partners-testimonial-flag { margin-left: auto; font-size: 1.2rem; opacity: .85; }

/* FAQ B2B accordion */
.partners-faq {
  padding: 5rem 0 4.5rem;
  background: var(--surface, #fff);
}
.partners-faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  display: flex; flex-direction: column;
  gap: .65rem;
}
.partners-faq-item {
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,.08));
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.partners-faq-item[open] {
  border-color: rgba(16, 185, 129, .35);
  box-shadow: 0 18px 40px -28px rgba(16, 185, 129, .25);
}
.partners-faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink, #0a1628);
  letter-spacing: -.005em;
  list-style: none;
  transition: background .15s;
}
.partners-faq-item summary::-webkit-details-marker { display: none; }
.partners-faq-item summary:hover { background: rgba(16, 185, 129, .03); }
.partners-faq-item summary::after {
  content: '';
  margin-left: auto;
  width: 26px; height: 26px;
  background: rgba(16, 185, 129, .08);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23065f46' stroke-width='2.4' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: transform .25s;
  flex-shrink: 0;
}
.partners-faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: #10b981;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.partners-faq-item-body {
  padding: 0 1.5rem 1.4rem;
  font-size: .92rem;
  color: var(--ink-soft, #475569);
  line-height: 1.65;
}
.partners-faq-item-body strong { color: var(--ink, #0a1628); font-weight: 600; }

/* Sticky bottom action bar */
.partners-actionbar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 120%);
  background: rgba(10, 22, 40, .94);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: #fff;
  border-radius: 999px;
  padding: .55rem .55rem .55rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: .85rem;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 56px -22px rgba(0, 0, 0, .55);
  z-index: 200;
  opacity: 0;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
  max-width: calc(100vw - 2rem);
}
.partners-actionbar.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.partners-actionbar-hint {
  color: rgba(255, 255, 255, .75);
  white-space: nowrap;
}
.partners-actionbar-hint strong { color: #fbbf24; font-weight: 700; }
.partners-actionbar-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  color: #0a1628;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .85rem;
  transition: transform .15s, box-shadow .2s;
}
.partners-actionbar-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(52, 211, 153, .55); }
.partners-actionbar-btn svg { width: 13px; height: 13px; stroke-width: 2.4; }
@media (max-width: 640px) {
  .partners-actionbar { padding: .55rem 1rem; font-size: .78rem; gap: .65rem; }
  .partners-actionbar-hint { display: none; }
}

/* ============================================================
   PAGO · FULL PRO upgrade
   ============================================================ */

/* Scroll progress bar */
.pago-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  background: rgba(15, 23, 42, .05);
  z-index: 300;
  pointer-events: none;
}
.pago-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--emerald-2, #34d399) 0%, #0070ba 60%, var(--gold, #d97706) 100%);
  box-shadow: 0 0 10px rgba(0, 112, 186, .5);
  transition: width .12s linear;
}

/* Reveal-on-scroll */
.pago-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16, .65, .32, 1), transform .85s cubic-bezier(.16, .65, .32, 1);
  will-change: opacity, transform;
}
.pago-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.pago-reveal[data-reveal-delay="1"].is-revealed { transition-delay: .08s; }
.pago-reveal[data-reveal-delay="2"].is-revealed { transition-delay: .16s; }
.pago-reveal[data-reveal-delay="3"].is-revealed { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .pago-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Cinematic hero */
.pago-hero-pro {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: #0a1628;
  color: #fff;
}
.pago-hero-pro::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/tours/real/casablanca-wines.jpg');
  background-size: cover;
  background-position: center;
  animation: pagoKenBurns 28s ease-out forwards;
  will-change: transform;
  z-index: 0;
}
.pago-hero-pro::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,22,40,.55) 0%, rgba(10,22,40,.35) 45%, rgba(10,22,40,.85) 100%),
    linear-gradient(90deg, rgba(10,22,40,.55) 0%, transparent 60%);
  pointer-events: none;
}
@keyframes pagoKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.5%, -1.5%); }
}
.pago-hero-orbs {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.pago-hero-orbs .ph-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  mix-blend-mode: screen;
}
.pago-hero-orbs .ph-orb-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #0070ba, transparent 65%);
  top: -12%; left: -8%;
}
.pago-hero-orbs .ph-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #34d399, transparent 65%);
  bottom: -14%; right: -8%;
  animation: pagoOrbFloat 20s ease-in-out infinite alternate;
}
@keyframes pagoOrbFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, -35px); }
}
.pago-hero-pro .container { position: relative; z-index: 3; }

.pago-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .85rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold-soft, #fbbf24);
  margin-bottom: 1.4rem;
  animation: pagoFadeUp .8s cubic-bezier(.16,.65,.32,1) both;
}
.pago-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  animation: pagoPulseDot 1.8s infinite;
}
@keyframes pagoPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
@keyframes pagoFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pago-hero-pro h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.022em;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  color: #fff;
  max-width: 820px;
  animation: pagoFadeUp .9s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .1s;
}
.pago-hero-pro h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pago-hero-pro .pago-hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 0 1.8rem;
  max-width: 600px;
  animation: pagoFadeUp 1s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .18s;
}
.pago-hero-trust {
  display: flex; flex-wrap: wrap;
  gap: .55rem;
  animation: pagoFadeUp 1.1s cubic-bezier(.16,.65,.32,1) both;
  animation-delay: .26s;
}
.pago-hero-trust-pill {
  display: inline-flex; align-items: center; gap: .42rem;
  padding: .42rem .85rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}
.pago-hero-trust-pill svg {
  width: 13px; height: 13px;
  color: #34d399;
  stroke-width: 2.4;
}
@media (max-width: 720px) {
  .pago-hero-pro { padding: 5rem 0 3rem; min-height: 0; }
  .pago-hero-pro::before { background-position: center top; }
}

/* Step indicator */
.pago-steps {
  display: flex; align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 720px;
  margin: 2rem auto 2.5rem;
  padding: 0 1rem;
}
.pago-step {
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  flex: 1;
  position: relative;
  text-align: center;
}
.pago-step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--line, rgba(15,23,42,.1));
  z-index: 0;
}
.pago-step:last-child::before { display: none; }
.pago-step.is-done::before,
.pago-step.is-active::before {
  background: linear-gradient(90deg, var(--emerald-2, #34d399), var(--gold, #d97706));
}
.pago-step-num {
  position: relative; z-index: 1;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line-strong, rgba(15,23,42,.18));
  color: var(--text-soft, #475569);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  transition: all .3s;
}
.pago-step.is-active .pago-step-num {
  background: linear-gradient(135deg, #0070ba, #003087);
  border-color: #0070ba;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 112, 186, .18),
              0 8px 20px -6px rgba(0, 112, 186, .5);
}
.pago-step.is-done .pago-step-num {
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: #10b981;
  color: #fff;
}
.pago-step-label {
  font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase; font-weight: 700;
  color: var(--text-soft, #475569);
  transition: color .2s;
}
.pago-step.is-active .pago-step-label { color: #0070ba; }
.pago-step.is-done .pago-step-label { color: #10b981; }
@media (max-width: 560px) {
  .pago-step-label { font-size: .62rem; }
  .pago-step-num { width: 32px; height: 32px; font-size: .85rem; }
}

/* Payment provider logos strip */
.pago-providers {
  margin: 2.5rem auto 0;
  max-width: 980px;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line, rgba(15,23,42,.08));
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, .12);
}
.pago-providers-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft, #475569);
  font-weight: 700;
  white-space: nowrap;
}
.pago-providers-list {
  display: flex; flex-wrap: wrap; gap: .65rem;
  align-items: center;
}
.pago-providers-list span {
  padding: .35rem .7rem;
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,.08));
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink, #0a1628);
  letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s;
}
.pago-providers-list span:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, .15);
}
@media (max-width: 720px) {
  .pago-providers { grid-template-columns: 1fr; gap: .7rem; }
  .pago-providers-label { text-align: left; }
}

/* FAQ accordions */
.pago-faq {
  max-width: 820px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}
.pago-faq-head {
  text-align: center;
  margin-bottom: 2rem;
}
.pago-faq-head .kicker {
  justify-content: center; display: inline-flex;
}
.pago-faq-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.2;
  margin: 1rem 0 .6rem;
  color: var(--ink, #0a1628);
}
.pago-faq-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #0070ba, #34d399);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pago-faq-head p {
  font-size: .92rem;
  color: var(--text-soft, #475569);
  margin: 0;
}
.pago-faq-list {
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: 2rem;
}
.pago-faq-item {
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,.08));
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.pago-faq-item[open] {
  border-color: rgba(0, 112, 186, .35);
  box-shadow: 0 16px 36px -28px rgba(0, 112, 186, .25);
}
.pago-faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink, #0a1628);
  letter-spacing: -.003em;
  list-style: none;
  transition: background .15s;
}
.pago-faq-item summary::-webkit-details-marker { display: none; }
.pago-faq-item summary:hover { background: rgba(0, 112, 186, .03); }
.pago-faq-item summary::after {
  content: '';
  margin-left: auto;
  width: 26px; height: 26px;
  background: rgba(0, 112, 186, .08);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23003087' stroke-width='2.4' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: transform .25s;
  flex-shrink: 0;
}
.pago-faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: #0070ba;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.pago-faq-item-body {
  padding: 0 1.4rem 1.3rem;
  font-size: .9rem;
  color: var(--text-soft, #475569);
  line-height: 1.6;
}
.pago-faq-item-body strong { color: var(--ink, #0a1628); font-weight: 600; }
.pago-faq-item-body a { color: var(--emerald-deep, #065f46); text-decoration: underline; }

/* Polish · pay-card hover lift */
.pay-card {
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .25s;
}
.pay-card:hover { transform: translateY(-3px); }

/* Method tile selected: stronger emerald accent */
.payment-method.selected {
  border-color: var(--emerald-2, #34d399) !important;
  background: linear-gradient(180deg, #fff, rgba(52, 211, 153, .04)) !important;
}

/* ════════════════════════════════════════════════════════════════════
   HEADER · FULL PRO upgrade (appended · scoped to .site-header)
   ════════════════════════════════════════════════════════════════════ */

/* Sticky transition — height shrinks, glassmorphism intensifies on scroll */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: backdrop-filter 250ms ease, background 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  will-change: backdrop-filter, background;
}
.site-header .nav {
  transition: height 280ms cubic-bezier(.4, 0, .2, 1);
}
.site-header.scrolled .nav { height: 66px; }
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  backdrop-filter: saturate(170%) blur(16px);
  box-shadow: 0 6px 24px -8px rgba(10, 22, 40, .12), 0 1px 0 rgba(10, 22, 40, .04);
  border-bottom-color: transparent;
}

/* Active nav item — golden underline always visible */
.site-header .primary-nav > a.is-active,
.site-header .nav-dropdown-btn[aria-expanded="true"] {
  color: var(--gold-deep, #b48a1a);
}
.site-header .primary-nav > a.is-active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--emerald, #34d399), var(--gold, #fbbf24));
}

/* Dropdown menu polish — sharper card, gradient hairline.
   NOTE: don't set position here — the original rule earlier in this file
   already declares position:absolute, and overriding it to relative made
   the menu take up grid space (it's only opacity/visibility hidden) which
   broke the header layout (the "Viñas" dropdown got pushed to its own row).
   The ::before gradient hairline uses position:absolute and works fine
   against the existing absolute-positioned parent. */
.nav-dropdown-menu {
  padding: 0.6rem 0;
  border-radius: 16px;
  border: 1px solid rgba(10, 22, 40, .06);
  box-shadow:
    0 24px 60px -16px rgba(10, 22, 40, .22),
    0 6px 16px -6px rgba(10, 22, 40, .08);
  overflow: hidden;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald, #34d399), var(--gold, #fbbf24));
  opacity: .85;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.15rem;
  position: relative;
}
.nav-dropdown-menu a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--emerald, #34d399);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity .2s, transform .2s;
}
.nav-dropdown-menu a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* ───── Lang switcher · premium ───── */
.lang-switch > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.4rem 0.7rem 0.4rem 0.42rem;
  background: #ffffff;
  border: 1.5px solid rgba(10, 22, 40, .14);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  transition: background 220ms ease, border-color 220ms ease, transform 120ms, box-shadow 200ms, color 200ms;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink, #0a1628);
  user-select: none;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(10, 22, 40, .06);
}
.lang-switch > summary:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, .14) 0%, rgba(251, 191, 36, .10) 100%);
  border-color: rgba(16, 185, 129, .55);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(16, 185, 129, .3);
}
.lang-switch[open] > summary {
  background: linear-gradient(135deg, var(--emerald-deep, #047857) 0%, var(--ink, #0a1628) 100%);
  color: #fff;
  border-color: var(--emerald-deep, #047857);
  box-shadow: 0 8px 22px -4px rgba(4, 120, 87, .5);
}
.lang-switch[open] > summary .chev { transform: rotate(180deg); }
.lang-switch > summary .lbl-text {
  font-variant-numeric: tabular-nums;
  /* Forzamos color oscuro contra el bg blanco del chip — antes user
     reportó "ES" casi blanco. Bumpeamos specificity + !important para
     ganar a cualquier regla legacy que pueda quedar cached o aplicarse
     vía herencia desde el header. */
  color: #0a1628 !important;
  font-weight: 800 !important;
}
/* Cuando el chip está open, sí queremos texto blanco sobre el bg dark */
.lang-switch[open] > summary .lbl-text {
  color: #ffffff !important;
}
/* Override la regla legacy del home (body sin .lp-page) por las dudas */
body:not(.lp-page) .lang-switch > summary .lbl-text {
  color: #0a1628 !important;
}
body:not(.lp-page) .lang-switch[open] > summary .lbl-text {
  color: #ffffff !important;
}
.lang-switch > summary .chev {
  transition: transform 250ms ease;
  width: 9px; height: 9px;
  opacity: .65;
}
.lang-switch[open] > summary .chev,
.lang-switch > summary:hover .chev { opacity: 1; }

/* ═══ FLAG SPRITES · SVG inline data URI por país ═══
   Cero CDN, cero requests, 100% same-origin. Cada flag SVG
   embebido en CSS — el browser cachea el CSS y los muestra
   instantáneamente en cualquier sistema (Windows incluido).
   Dimensiones del SVG: viewBox="0 0 30 20" (3:2 ratio). */
.flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(10, 22, 40, .14),
    0 1px 2px rgba(10, 22, 40, .08);
  vertical-align: middle;
}
.lang-switch-menu .flag {
  width: 28px;
  height: 19px;
  border-radius: 4px;
}

/* ─── Native locales (3 nativos · ES/EN/PT) ─── */
.flag-cl {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='10' fill='%23fff'/><rect y='10' width='30' height='10' fill='%23d52b1e'/><rect width='10' height='10' fill='%230039a6'/><polygon points='5,2.5 5.9,4.8 8.3,4.8 6.3,6.2 7.1,8.5 5,7.1 2.9,8.5 3.7,6.2 1.7,4.8 4.1,4.8' fill='%23fff'/></svg>");
}
.flag-us {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23fff'/><g fill='%23b22234'><rect width='30' height='1.54'/><rect y='3.08' width='30' height='1.54'/><rect y='6.15' width='30' height='1.54'/><rect y='9.23' width='30' height='1.54'/><rect y='12.31' width='30' height='1.54'/><rect y='15.38' width='30' height='1.54'/><rect y='18.46' width='30' height='1.54'/></g><rect width='12' height='10.77' fill='%233c3b6e'/></svg>");
}
.flag-br {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23009b3a'/><polygon points='15,3 27,10 15,17 3,10' fill='%23fedf00'/><circle cx='15' cy='10' r='3.5' fill='%23002776'/></svg>");
}

/* ─── Auto-translate (17 GT) ─── */
.flag-de {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='6.66' fill='%23000'/><rect y='6.66' width='30' height='6.66' fill='%23dd0000'/><rect y='13.33' width='30' height='6.66' fill='%23ffce00'/></svg>");
}
.flag-fr {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='10' height='20' fill='%230055a4'/><rect x='10' width='10' height='20' fill='%23fff'/><rect x='20' width='10' height='20' fill='%23ef4135'/></svg>");
}
.flag-it {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='10' height='20' fill='%23009246'/><rect x='10' width='10' height='20' fill='%23fff'/><rect x='20' width='10' height='20' fill='%23ce2b37'/></svg>");
}
.flag-nl {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='6.66' fill='%23ae1c28'/><rect y='6.66' width='30' height='6.66' fill='%23fff'/><rect y='13.33' width='30' height='6.66' fill='%2321468b'/></svg>");
}
.flag-se {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23006aa7'/><rect x='9' width='3' height='20' fill='%23fecc00'/><rect y='8.5' width='30' height='3' fill='%23fecc00'/></svg>");
}
.flag-no {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23ef2b2d'/><rect x='8.5' width='4' height='20' fill='%23fff'/><rect y='8' width='30' height='4' fill='%23fff'/><rect x='9.5' width='2' height='20' fill='%23002868'/><rect y='9' width='30' height='2' fill='%23002868'/></svg>");
}
.flag-dk {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23c8102e'/><rect x='9' width='3' height='20' fill='%23fff'/><rect y='8.5' width='30' height='3' fill='%23fff'/></svg>");
}
.flag-fi {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23fff'/><rect x='9' width='3' height='20' fill='%23003580'/><rect y='8.5' width='30' height='3' fill='%23003580'/></svg>");
}
.flag-pl {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='10' fill='%23fff'/><rect y='10' width='30' height='10' fill='%23dc143c'/></svg>");
}
.flag-tr {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23e30a17'/><circle cx='12' cy='10' r='4.2' fill='%23fff'/><circle cx='13.2' cy='10' r='3.4' fill='%23e30a17'/><polygon points='17.5,10 14.9,10.85 14.9,9.15' fill='%23fff'/></svg>");
}
.flag-ru {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='6.66' fill='%23fff'/><rect y='6.66' width='30' height='6.66' fill='%230039a6'/><rect y='13.33' width='30' height='6.66' fill='%23d52b1e'/></svg>");
}
.flag-il {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23fff'/><rect y='2.5' width='30' height='2.5' fill='%230038b8'/><rect y='15' width='30' height='2.5' fill='%230038b8'/><polygon points='15,7 17.6,11.5 12.4,11.5' fill='none' stroke='%230038b8' stroke-width='0.6'/><polygon points='15,13 17.6,8.5 12.4,8.5' fill='none' stroke='%230038b8' stroke-width='0.6'/></svg>");
}
.flag-sa {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23006c35'/><rect x='5' y='13' width='20' height='0.8' fill='%23fff'/><path d='M7,8 Q10,6 13,8 L13,9 Q10,7 7,9 Z' fill='%23fff'/></svg>");
}
.flag-cn {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23de2910'/><polygon points='7,3 7.7,5.1 9.9,5.1 8.1,6.4 8.8,8.5 7,7.2 5.2,8.5 5.9,6.4 4.1,5.1 6.3,5.1' fill='%23ffde00'/><circle cx='11.5' cy='2.5' r='0.5' fill='%23ffde00'/><circle cx='13' cy='4.5' r='0.5' fill='%23ffde00'/><circle cx='13' cy='7' r='0.5' fill='%23ffde00'/><circle cx='11.5' cy='9' r='0.5' fill='%23ffde00'/></svg>");
}
.flag-jp {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23fff'/><circle cx='15' cy='10' r='6' fill='%23bc002d'/></svg>");
}
.flag-kr {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23fff'/><path d='M15,4 a6,6 0 0,1 0,12 a3,3 0 0,0 0,-6 a3,3 0 0,1 0,-6 z' fill='%23cd2e3a'/><path d='M15,10 a3,3 0 0,1 0,6 a6,6 0 0,1 0,-12 a3,3 0 0,0 0,6 z' fill='%230047a0'/></svg>");
}
.flag-in {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='6.66' fill='%23ff9933'/><rect y='6.66' width='30' height='6.66' fill='%23fff'/><rect y='13.33' width='30' height='6.66' fill='%23138808'/><circle cx='15' cy='10' r='1.9' fill='none' stroke='%23000080' stroke-width='0.35'/><circle cx='15' cy='10' r='0.4' fill='%23000080'/></svg>");
}

/* Item layout: flag · name (flex 1) · meta */
.lang-switch-menu a {
  gap: 0.7rem;
}
.lang-switch-menu a .lbl-name { flex: 1 1 auto; }
.lang-switch-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  max-width: 280px;
  max-height: min(72vh, 520px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, .06);
  border-radius: 14px;
  padding: 0.45rem;
  box-shadow:
    0 24px 60px -16px rgba(10, 22, 40, .22),
    0 6px 16px -6px rgba(10, 22, 40, .08);
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: lsMenuIn .18s ease both;
  /* Custom scrollbar so 17+ langs no se ven raros al scrollear */
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 22, 40, .2) transparent;
}
.lang-switch-menu::-webkit-scrollbar { width: 6px; }
.lang-switch-menu::-webkit-scrollbar-thumb {
  background: rgba(10, 22, 40, .15);
  border-radius: 3px;
}
.lang-switch-menu::-webkit-scrollbar-thumb:hover { background: rgba(10, 22, 40, .3); }

/* Divider entre nativos (ES/EN/PT) y auto-translate */
.lang-switch-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 6px 4px;
  padding: 2px 4px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(10, 22, 40, .42);
  user-select: none;
}
.lang-switch-divider::before,
.lang-switch-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 22, 40, .14), rgba(10, 22, 40, .04));
}
.lang-switch-divider::after {
  background: linear-gradient(90deg, rgba(10, 22, 40, .04), rgba(10, 22, 40, .14));
}
.lang-switch-divider span { white-space: nowrap; }

/* Auto-translate items: small badge "GT" para distinguir de los nativos */
.lang-switch-menu a[data-gt-lang] .lbl-meta {
  position: relative;
}
.lang-switch-menu a[data-gt-lang]:hover {
  background: rgba(124, 58, 237, .08);
  color: #6d28d9;
}
@keyframes lsMenuIn {
  from { opacity: 0; transform: translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.lang-switch-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink, #0a1628);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.lang-switch-menu a:hover {
  background: rgba(52, 211, 153, .10);
  color: var(--emerald-deep, #047857);
}
.lang-switch-menu a.is-current {
  background: var(--ink, #0a1628);
  color: #fff;
}
.lang-switch-menu a.is-current .lbl-meta { color: rgba(255, 255, 255, .55); }
.lang-switch-menu a.is-current::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald, #34d399);
  margin-left: auto;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .2);
}
.lang-switch-menu a:not(.is-current)::after {
  content: '';
  width: 6px; height: 6px;
  margin-left: auto;
  opacity: 0;
}

/* Partner CTA pill in header — premium nudge */
.nav-b2b {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink, #0a1628);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(251, 191, 36, .10) 0%, rgba(251, 191, 36, .04) 100%);
  border: 1px solid rgba(251, 191, 36, .35);
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background 180ms, border-color 180ms, transform 120ms, box-shadow 200ms;
}
.nav-b2b svg {
  width: 13px; height: 13px;
  color: var(--gold-deep, #b48a1a);
}
.nav-b2b:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, .22) 0%, rgba(251, 191, 36, .10) 100%);
  border-color: rgba(251, 191, 36, .6);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(251, 191, 36, .25);
}

/* Hide nav-b2b on small screens — it's already in the mobile drawer */
@media (max-width: 1100px) {
  .nav-b2b { display: none; }
}

/* lp-page (dark hero) overrides for the new lang & partner pills */
.lp-page .lang-switch > summary {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .85);
  color: var(--ink, #0a1628);
}
.lp-page .lang-switch > summary:hover {
  background: linear-gradient(135deg, rgba(52, 211, 153, .9) 0%, rgba(251, 191, 36, .85) 100%);
  border-color: rgba(255, 255, 255, 1);
  color: var(--ink, #0a1628);
}
.lp-page .lang-switch[open] > summary {
  background: linear-gradient(135deg, var(--emerald, #34d399) 0%, var(--gold, #fbbf24) 100%);
  color: var(--ink, #0a1628);
  border-color: transparent;
}
.lp-page .nav-b2b {
  background: rgba(251, 191, 36, .14);
  border-color: rgba(251, 191, 36, .35);
  color: rgba(255, 255, 255, .96);
}
.lp-page .nav-b2b svg { color: var(--gold-soft, #fbbf24); }
.lp-page .nav-b2b:hover {
  background: rgba(251, 191, 36, .26);
  border-color: rgba(251, 191, 36, .55);
}
.lp-page .site-header.scrolled {
  background: rgba(10, 22, 40, .85);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(255, 255, 255, .06);
}

/* ───── Mobile drawer · slide-from-right + backdrop ───── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms;
}
.mobile-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .site-header .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86%, 380px);
    max-height: 100vh;
    background: #fff;
    box-shadow: -16px 0 50px -10px rgba(10, 22, 40, .25);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    padding: 5rem 1.2rem 2.4rem;
    z-index: 201;
    border-top: 0;
  }
  .site-header.menu-open .mobile-nav { transform: translateX(0); }
  .mobile-nav nav { gap: .25rem; }
  .mobile-nav a, .mobile-nav .mobile-nav-cta {
    padding: 0.95rem 1rem;
    font-size: 1.02rem;
    border-radius: 12px;
  }
  .mobile-nav-group {
    background: linear-gradient(180deg, rgba(10, 22, 40, .03), rgba(10, 22, 40, .015));
    border: 1px solid rgba(10, 22, 40, .05);
    padding: 0.6rem 1rem 0.6rem;
    margin: 0.6rem 0;
    border-radius: 14px;
  }
  .mobile-nav-group-title {
    color: var(--emerald-deep, #047857);
    font-weight: 800;
  }
  /* Lang switcher inside the drawer — show as a row at the bottom.
     We keep the original lang-switch-menu visible at all times in the
     drawer for one-tap access. */
  .mobile-nav-b2b {
    background: linear-gradient(135deg, rgba(251, 191, 36, .18), rgba(251, 191, 36, .08));
    border: 1px solid rgba(251, 191, 36, .35);
    margin: 0.8rem 0 0.2rem;
    font-weight: 700 !important;
    color: var(--gold-deep, #b48a1a) !important;
  }
  .mobile-nav-b2b:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, .28), rgba(251, 191, 36, .14)) !important;
  }
}

/* Burger button — premium hover ring on focus */
.nav-burger:focus-visible {
  outline: 2px solid var(--emerald-2, #34d399);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Skip-link accessibility nicety */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink, #0a1628);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus-visible {
  left: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .nav,
  .nav-dropdown-menu,
  .lang-switch-menu,
  .mobile-nav-backdrop,
  .site-header .mobile-nav,
  .nav-burger span {
    transition: none !important;
    animation: none !important;
  }
}


/* ============================================================
   TOUR PAGE · AI-friendly blocks (answer box, includes, FAQ)
   Added with gen-tour-pages-i18n.js v2 (AI/LLM optimization).
   ============================================================ */

.tour-ai-box-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.tour-ai-box {
  background: linear-gradient(180deg, rgba(16,185,129,.045), rgba(251,191,36,.04));
  border: 1px solid rgba(16,185,129,.18);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.tour-ai-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(251,191,36,.06), transparent 60%);
  pointer-events: none;
}
.tour-ai-head { position: relative; text-align: center; max-width: 720px; margin: 0 auto 1.75rem; }
.tour-ai-head h2 { margin: .35rem 0 .5rem; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.tour-ai-head p { color: var(--muted); margin: 0; }
.tour-ai-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}
.tour-ai-row {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tour-ai-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  border-color: rgba(16,185,129,.35);
}
.tour-ai-row dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald-deep, #047857);
}
.tour-ai-row dd {
  margin: 0;
  font-size: .98rem;
  font-weight: 500;
  color: var(--ink, #0f172a);
  line-height: 1.45;
}

/* Includes / Not included */
.tour-incexc-section { padding-top: 3rem; padding-bottom: 3rem; }
.tour-incexc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2.25rem;
}
.tour-incexc-col {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(15,23,42,.04);
}
.tour-incexc-col h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour-incexc-col--inc h3::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--emerald, #10b981);
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
}
.tour-incexc-col--exc h3::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148,163,184,.18);
}
.tour-incexc-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tour-incexc-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink, #0f172a);
}
.tour-incexc-col li svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 2px;
}
.tour-incexc-col--inc li svg { color: var(--emerald, #10b981); }
.tour-incexc-col--exc li svg { color: #94a3b8; }
.tour-incexc-col--exc li { color: var(--muted, #475569); }

/* Tour FAQ section — reuses .faq-list / .faq-item base styles */
.tour-faq-section { padding-top: 3rem; padding-bottom: 3rem; }
.tour-faq-section .faq-list details.faq-item { background: #fff; }

/* ============================================================
   TOUR PAGE · v3 SEO + UI/UX upgrades
   Section nav, Why pillars, seoProse, sticky CTA, polish.
   ============================================================ */

/* Section-anchor chip nav (above hero) */
.tour-section-nav {
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: var(--header-h, 64px);
  z-index: 5;
}
.tour-section-nav-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  white-space: nowrap;
}
.tour-section-nav-track::-webkit-scrollbar { display: none; }
.tour-section-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink, #0f172a);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.tour-section-chip:hover,
.tour-section-chip:focus-visible {
  background: rgba(16,185,129,.08);
  border-color: rgba(16,185,129,.35);
  color: var(--emerald-deep, #047857);
  transform: translateY(-1px);
}

/* "Why Tourevo for this tour" */
.tour-why-section { padding-top: 3rem; padding-bottom: 3rem; }
.tour-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 2.25rem;
}
.tour-why-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 4px 14px rgba(15,23,42,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tour-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  border-color: rgba(16,185,129,.32);
}
.tour-why-num {
  position: absolute;
  top: -14px; left: 20px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #fbbf24);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(16,185,129,.28);
}
.tour-why-card h3 {
  margin: 8px 0 .5rem;
  font-size: 1.05rem;
  color: var(--ink, #0f172a);
}
.tour-why-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted, #475569);
}

/* SEO long-form prose */
.tour-seo-prose-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.tour-seo-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink, #0f172a);
}
.tour-seo-prose h2,
.tour-seo-prose h3 {
  font-family: var(--font-display, 'Fraunces', serif);
  margin-top: 1.75rem;
  margin-bottom: .6rem;
  line-height: 1.25;
}
.tour-seo-prose h2 { font-size: 1.6rem; }
.tour-seo-prose h3 { font-size: 1.2rem; }
.tour-seo-prose p { margin: 0 0 1rem; }
.tour-seo-prose strong { color: var(--emerald-deep, #047857); }
.tour-seo-prose ul,
.tour-seo-prose ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}
.tour-seo-prose li { margin-bottom: .35rem; }

/* Sticky mobile CTA bar */
.tour-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 -6px 20px rgba(15,23,42,.06);
}
.tour-sticky-cta .btn { flex: 1 1 auto; justify-content: center; }
.tour-sticky-cta .btn-outline { flex: 0 0 auto; padding-left: 14px; padding-right: 14px; }
@media (max-width: 720px) {
  .tour-sticky-cta { display: flex; }
  body.lp-page main { padding-bottom: 88px; }
  /* keep WhatsApp FAB above the sticky CTA on mobile */
  .wa-floating.is-fab { bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important; }
}

/* Smooth scroll for in-page anchors (respects reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
:target { scroll-margin-top: 96px; }

