/** Shopify CDN: Minification failed

Line 20:0 All "@import" rules must come first

**/
/* ============================================================
   Special Tours Online — Estilos globales compartidos
   Archivo: assets/sto-global.css
   Cargado desde: layout/theme.liquid o cada sección
   ============================================================ */
:root {
  --sto-color-primario: #0B3D6B;
  --sto-color-rojo: #E02020;
  --sto-color-dorado: #D4A017;
  --sto-color-fondo: #FBF8F2;
  --sto-fuente-titulo: 'Playfair Display', serif;
  --sto-fuente-cuerpo: 'Outfit', sans-serif;
  --sto-tamano-boton: 0.78rem;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Botones compartidos ── */
.sto-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.95rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  line-height: 1;
}
.sto-btn:hover { transform: translateY(-2px); }
.sto-btn svg { flex-shrink: 0; transition: transform 0.2s; }
.sto-btn:hover svg { transform: translateX(3px); }

.sto-btn--gold { background: #D4A017; color: #0B3D6B; }
.sto-btn--gold:hover { background: #F0C84A; }

.sto-btn--outline-dark {
  background: transparent;
  color: #0B3D6B;
  border: 1.5px solid #0B3D6B;
}
.sto-btn--outline-dark:hover { background: #0B3D6B; color: #fff; }

.sto-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.sto-btn--outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── Eyebrow / etiqueta ── */
.sto-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #E05C3A;
  margin-bottom: 0.7rem;
}
.sto-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #E05C3A;
  flex-shrink: 0;
}

/* ── Títulos de sección ── */
.sto-section-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: #0B3D6B;
  margin-bottom: 0.9rem;
}

.sto-section-p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ── Animación reveal al hacer scroll ── */
.sto-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sto-reveal.sto-visible {
  opacity: 1;
  transform: translateY(0);
}
.sto-reveal:nth-child(2) { transition-delay: 0.08s; }
.sto-reveal:nth-child(3) { transition-delay: 0.16s; }
.sto-reveal:nth-child(4) { transition-delay: 0.24s; }
.sto-reveal:nth-child(5) { transition-delay: 0.32s; }
.sto-reveal:nth-child(6) { transition-delay: 0.40s; }
