/* ============================================================
   TEPIC LO MOVEMOS TODOS — styles.css
   ------------------------------------------------------------
   Sistema visual unico para index.html + negocios.html
   ------------------------------------------------------------
   PARA EDITAR COLORES PRINCIPALES:
   modifica las variables dentro de :root (lineas 20-50).
   Todo el sitio se actualiza automaticamente.
   ============================================================ */

/* ---------- 1. VARIABLES (EDITAR AQUI COLORES Y TIPOGRAFIA) ---------- */
:root {
  /* Paleta */
  --c-guinda: #7A1F2B;        /* color principal institucional */
  --c-guinda-dark: #5C141C;
  --c-guinda-soft: #9A2E3B;
  --c-dorado: #C9A227;        /* color de acento */
  --c-dorado-soft: #E2BE4D;
  --c-marfil: #FBF6EE;        /* fondo base */
  --c-marfil-2: #F4ECDB;
  --c-rosa: #FBE9E6;          /* bloques secundarios */
  --c-rosa-2: #F7DAD2;
  --c-beige: #F1E7D3;
  --c-text: #2A1F22;          /* texto principal */
  --c-text-soft: #5C4F52;
  --c-line: #E6DFD3;
  --c-white: #FFFFFF;
  --c-black-soft: #1F1416;

  /* Tipografia */
  --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --f-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(42, 31, 34, 0.04);
  --shadow-md: 0 8px 28px -12px rgba(42, 31, 34, 0.18);

  /* Radios */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Espacios */
  --container: 1200px;
}

/* ---------- 2. RESET Y BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-marfil);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--c-guinda); color: var(--c-marfil); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 3. TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-guinda);
}
.lead { font-size: 1.05rem; color: var(--c-text-soft); max-width: 56ch; }
.text-guinda { color: var(--c-guinda); }
.text-dorado { color: var(--c-dorado); }
.italic-display { font-family: var(--f-display); font-style: italic; font-weight: 600; }

/* ---------- 4. BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; stroke-width: 2; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-guinda); color: var(--c-marfil); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--c-guinda-dark); }
.btn-outline { background: transparent; color: var(--c-guinda); border: 1.5px solid var(--c-guinda); }
.btn-outline:hover { background: var(--c-guinda); color: var(--c-marfil); }
.btn-gold { background: var(--c-dorado); color: var(--c-black-soft); }
.btn-gold:hover { background: var(--c-dorado-soft); }
.btn-dark { background: var(--c-black-soft); color: var(--c-marfil); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: var(--c-marfil); color: var(--c-guinda); border: 1px solid var(--c-line); }
.btn-ghost:hover { background: var(--c-rosa); }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--c-guinda);
  color: var(--c-marfil);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .pattern-strip {
  height: 0; /* visible en footer; aqui solo se asegura cohesion */
}
.site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.nav-desktop { display: none; gap: 28px; align-items: center; }
.nav-desktop a {
  font-size: 0.92rem; font-weight: 600; opacity: 0.92;
  position: relative; padding: 6px 0;
}
.nav-desktop a:hover { opacity: 1; }
.nav-desktop a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--c-dorado); border-radius: 2px;
}
.nav-cta { background: var(--c-dorado); color: var(--c-black-soft) !important; padding: 10px 18px; border-radius: var(--r-pill); }
.nav-cta:hover { background: var(--c-dorado-soft); }
.btn-burger {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.18);
}
.btn-burger svg { width: 20px; height: 20px; }

.nav-mobile {
  display: none;
  background: var(--c-guinda-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-marfil) 0%, var(--c-marfil-2) 100%);
  overflow: hidden;
  padding: 56px 0 48px;
}
.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.92;
  font-size: clamp(3rem, 9vw, 5.6rem);
  color: var(--c-guinda);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.hero-display .word-2 { color: var(--c-text); display: block; }
.hero-display .word-3 { color: var(--c-guinda); display: block; }
.hero-display .arrow {
  position: absolute; width: 56px; height: auto;
}
.hero-display .arrow.tl { top: -18px; left: -42px; transform: rotate(-15deg); }
.hero-display .arrow.tr { top: 18px; right: -38px; }
.hero-display .arrow.bl { bottom: -10px; left: -34px; }

.hero-claim {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--c-text);
  margin-bottom: 14px;
}
.hero-claim em { color: var(--c-guinda); font-style: normal; }
.hero-text { color: var(--c-text-soft); margin-bottom: 22px; max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--c-rosa);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-pattern {
  margin-top: 18px;
  height: 26px;
  background: url('../assets/icons/pattern.svg') repeat-x center / auto 26px;
  opacity: 0.85;
}

/* ---------- 7. BUSCADOR Y FILTROS ---------- */
.search-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-top: -28px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.search-row {
  display: flex; gap: 10px; align-items: center;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 14px;
}
.search-row .search-icon { width: 22px; height: 22px; color: var(--c-text-soft); flex-shrink: 0; }
.search-row input {
  flex: 1; border: 0; outline: 0; padding: 10px 4px;
  font-size: 1rem; background: transparent;
}
.search-locate {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: var(--c-guinda); color: var(--c-marfil);
  display: inline-flex; align-items: center; justify-content: center;
}
.filters {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin-top: 14px;
}
.filter-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-marfil); border: 1px solid var(--c-line);
  border-radius: var(--r-pill); padding: 12px 16px; font-weight: 600; color: var(--c-text);
  font-size: 0.92rem;
  transition: border-color .15s ease, background .15s ease;
}
.filter-pill:hover { border-color: var(--c-guinda); background: var(--c-rosa); }
.filter-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.filter-pill .chev { margin-left: auto; opacity: 0.5; }
.filter-pill.is-active { background: var(--c-guinda); color: var(--c-marfil); border-color: var(--c-guinda); }

/* ---------- 8. SECCIONES GENERALES ---------- */
section { padding: 56px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 14px; margin-bottom: 26px; flex-wrap: wrap;
}
.section-head h2 { display: inline-flex; align-items: center; gap: 12px; }
.section-head .icon-pin { width: 26px; height: 26px; color: var(--c-guinda); }
.section-head .link-more {
  color: var(--c-guinda); font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.section-head .link-more:hover { color: var(--c-guinda-dark); }

/* ---------- 9. MAPA DE DESCUENTOS ---------- */
.map-block {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-marfil-2);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.map-block .map-bg { width: 100%; display: block; }
.map-pin {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  transform: translate(-50%, -100%);
}
.map-pin .pin-icon {
  width: 36px; height: 46px;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.18));
}
.map-pin .pin-tag {
  background: var(--c-guinda); color: var(--c-marfil);
  font-weight: 800; font-size: 0.8rem;
  padding: 6px 10px; border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.map-pin.gold .pin-tag { background: var(--c-dorado); color: var(--c-black-soft); }
.map-pin.dark .pin-tag { background: var(--c-black-soft); color: var(--c-marfil); }
.map-locate-btn {
  position: absolute; top: 16px; right: 16px;
  background: var(--c-white); color: var(--c-guinda);
  padding: 10px 14px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}

/* ---------- 10. CARDS DE PROMOCIONES ---------- */
.cards-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
.promo-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promo-card .img-wrap {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
}
.promo-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.promo-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-guinda); color: var(--c-marfil);
  font-weight: 800; font-size: 0.85rem;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.promo-card .badge.gold { background: var(--c-dorado); color: var(--c-black-soft); }
.promo-card .fav {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--c-guinda);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line);
  transition: background .15s ease, color .15s ease;
}
.promo-card .fav.is-active { background: var(--c-guinda); color: var(--c-marfil); }
.promo-card .body { padding: 16px 18px 18px; }
.promo-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.promo-card .meta {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-text-soft); font-size: 0.88rem; margin-bottom: 12px;
}
.promo-card .meta .dot { opacity: 0.5; }
.promo-card .meta .icon { width: 14px; height: 14px; }
.promo-card .benefit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-rosa); color: var(--c-guinda);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.86rem;
}
.promo-card .benefit.gold { background: #FBF1D2; color: #6E5A12; }
.promo-card .benefit.dark { background: #EFE6D7; color: var(--c-text); }

/* ---------- 11. CARDS DE RUTAS ---------- */
.routes-grid {
  display: grid; gap: 18px; grid-template-columns: 1fr;
}
.route-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.route-head { display: flex; align-items: center; gap: 14px; }
.route-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-guinda); color: var(--c-marfil);
  flex-shrink: 0;
}
.route-icon svg { width: 24px; height: 24px; }
.route-icon.gold { background: var(--c-dorado); color: var(--c-black-soft); }
.route-icon.dark { background: var(--c-black-soft); color: var(--c-marfil); }
.route-card h3 { font-size: 1.3rem; margin-bottom: 2px; color: var(--c-guinda); }
.route-card .route-sub { color: var(--c-text-soft); font-size: 0.92rem; }
.route-card.gold h3 { color: var(--c-dorado); }
.route-card.dark h3 { color: var(--c-black-soft); }
.route-card .route-graph {
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(122,31,43,0.04));
  border-radius: var(--r-sm);
}
.route-card .route-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.9rem; color: var(--c-text-soft);
}
.route-card .stops { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- 12. COMO FUNCIONA ---------- */
.how-section {
  background: var(--c-rosa);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.how-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  align-items: start;
}
.how-step { text-align: center; padding: 14px; }
.how-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-guinda); color: var(--c-marfil);
  font-family: var(--f-display); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 10px;
}
.how-step .icon-circle {
  width: 110px; height: 110px; border-radius: 50%;
  margin: 0 auto 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-white); color: var(--c-guinda);
  border: 1px dashed var(--c-line);
}
.how-step .icon-circle svg { width: 44px; height: 44px; }
.how-step h3 { margin-bottom: 6px; }
.how-step p { color: var(--c-text-soft); max-width: 26ch; margin: 0 auto; font-size: 0.95rem; }
.how-arrow { display: none; align-items: center; justify-content: center; color: var(--c-dorado); }

/* ---------- 13. CTA FINAL ---------- */
/* ---------- 12B. SUSCRIPCION USUARIO ---------- */
.subscribe-section {
  background: linear-gradient(180deg, var(--c-marfil) 0%, var(--c-marfil-2) 100%);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.subscribe-section::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 26px;
  background: url('../assets/icons/pattern.svg') repeat-x center / auto 26px;
  opacity: 0.5;
}
.subscribe-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  align-items: start;
  margin-top: 18px;
}
.subscribe-info h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin: 10px 0 14px; }
.subscribe-info h2 em { color: var(--c-guinda); font-style: normal; }
.subscribe-info .lead { margin-bottom: 22px; }
.subscribe-benefits { list-style: none; display: grid; gap: 12px; }
.subscribe-benefits li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-weight: 600; font-size: 0.94rem;
}
.subscribe-benefits .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-rosa); color: var(--c-guinda);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.subscribe-benefits .ic svg { width: 18px; height: 18px; }

.subscribe-form fieldset { border: 0; padding: 0; margin: 0 0 12px; }
.subscribe-form legend {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; color: var(--c-text);
}
.subscribe-form legend svg { width: 18px; height: 18px; color: var(--c-guinda); }
.form-grid-2 { display: grid; gap: 12px; grid-template-columns: 1fr; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.check-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-marfil);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 9px 14px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.check-pill input { accent-color: var(--c-guinda); }
.check-pill:hover { border-color: var(--c-guinda); }
.check-pill:has(input:checked) {
  background: var(--c-guinda);
  border-color: var(--c-guinda);
  color: var(--c-marfil);
}

@media (min-width: 720px) {
  .subscribe-grid { grid-template-columns: 1fr 1.1fr; gap: 40px; }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: repeat(3, 1fr); }
}

.cta-final {
  position: relative;
  background: var(--c-guinda);
  color: var(--c-marfil);
  padding: 48px 0;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: ""; position: absolute; left: 0; right: 0; height: 26px;
  background: url('../assets/icons/pattern.svg') repeat-x center / auto 26px;
  opacity: 0.55;
}
.cta-final::before { top: 0; }
.cta-final::after { bottom: 0; transform: scaleY(-1); }
.cta-final .grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  align-items: center;
}
.cta-final h2 { color: var(--c-marfil); }
.cta-final em { color: var(--c-dorado); font-style: normal; }
.cta-final p { opacity: 0.9; margin-bottom: 16px; }
.cta-img-wrap {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 16 / 9; background: rgba(0,0,0,0.15);
}
.cta-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cta-heart {
  position: absolute; right: 20px; bottom: 20px;
  width: 110px; height: 110px;
  background: var(--c-guinda); color: var(--c-dorado);
  border: 3px solid var(--c-dorado);
  border-radius: 50%;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800;
  font-size: 0.78rem; line-height: 1.05; text-align: center; padding: 10px;
}

/* ---------- 14. FOOTER ---------- */
.site-footer {
  background: var(--c-marfil);
  color: var(--c-text);
  padding-top: 36px;
  border-top: 1px solid var(--c-line);
}
.footer-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  padding-bottom: 28px;
}
.footer-brand p { color: var(--c-text-soft); margin-top: 10px; max-width: 36ch; }
.footer-col h4 {
  font-family: var(--f-body);
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.78rem;
  color: var(--c-guinda); margin-bottom: 12px; font-weight: 800;
}
.footer-col a { display: block; padding: 5px 0; color: var(--c-text-soft); font-size: 0.95rem; }
.footer-col a:hover { color: var(--c-guinda); }
.footer-aliados {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--c-line);
}
.footer-aliados span { color: var(--c-text-soft); font-size: 0.85rem; }
.footer-bar {
  background: var(--c-guinda); color: var(--c-marfil);
  padding: 18px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bar .pattern-line {
  height: 18px;
  background: url('../assets/icons/pattern.svg') repeat-x center / auto 18px;
  opacity: 0.7;
  margin: -8px 0 12px;
}

/* ============================================================
   PAGINA NEGOCIOS
   ============================================================ */

/* ---------- 15. HERO NEGOCIOS ---------- */
.hero-negocios .hero-display { font-size: clamp(2.6rem, 7vw, 4.4rem); }
.hero-negocios .hero-display .word-2 { color: var(--c-text); }

/* ---------- 16. BLOQUE FORMULARIO + BENEFICIOS RAPIDOS ---------- */
.register-block { padding: 40px 0; }
.register-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
.benefits-quick {
  background: var(--c-rosa);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 26px;
}
.benefits-quick .head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.benefits-quick .head svg { width: 38px; height: 38px; color: var(--c-guinda); }
.benefits-quick h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: 4px; }
.benefits-quick .sub { color: var(--c-dorado); font-weight: 700; }
.benefits-quick ul { list-style: none; }
.benefits-quick li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px dashed rgba(122,31,43,0.18);
  font-weight: 600;
}
.benefits-quick li:last-child { border-bottom: 0; }
.benefits-quick li .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-marfil); color: var(--c-guinda);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefits-quick .secure {
  margin-top: 14px; padding: 14px;
  background: var(--c-marfil); border-radius: var(--r-sm);
  display: flex; gap: 12px; align-items: center;
}
.benefits-quick .secure svg { color: var(--c-guinda); width: 32px; height: 32px; flex-shrink: 0; }
.benefits-quick .secure b { display: block; }
.benefits-quick .secure span { color: var(--c-text-soft); font-size: 0.88rem; }

/* Formulario */
.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 26px;
}
.form-card h2 { display: inline-flex; align-items: center; gap: 12px; color: var(--c-guinda); font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin-bottom: 18px; }
.form-card h2 svg { width: 28px; height: 28px; flex-shrink: 0; }
.form-row { margin-bottom: 12px; }
.form-row label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--c-text);
}
.form-row label svg { width: 18px; height: 18px; color: var(--c-guinda); flex-shrink: 0; }
.form-row input, .form-row select {
  width: 100%;
  background: var(--c-marfil);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color .15s ease, background .15s ease;
}
.form-row input:focus, .form-row select:focus {
  outline: 0;
  border-color: var(--c-guinda);
  background: var(--c-white);
}
.form-row input::placeholder { color: #B0A6A2; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0 18px; font-size: 0.88rem; color: var(--c-text-soft); }
.form-check input { width: 20px; height: 20px; accent-color: var(--c-guinda); margin-top: 2px; }
.form-check a { color: var(--c-guinda); text-decoration: underline; font-weight: 600; }
.form-card .btn-primary { width: 100%; justify-content: center; padding: 16px; }
.form-msg {
  display: none; margin-top: 14px;
  padding: 12px 14px; border-radius: var(--r-sm);
  background: #E6F5E6; color: #1F5C2A; border: 1px solid #B7DCB6;
  font-weight: 600; font-size: 0.92rem;
}
.form-msg.show { display: block; }

/* ---------- 17. BENEFICIOS GRID NEGOCIOS ---------- */
.benefits-section { padding: 48px 0; background: var(--c-marfil); }
.benefits-section .section-title-wrap {
  text-align: center; margin-bottom: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.benefits-section .section-title-wrap h2 {
  display: inline-flex; align-items: center; gap: 16px; color: var(--c-guinda);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.benefits-section .section-title-wrap .arrow-side { width: 24px; height: auto; opacity: 0.85; }
.benefits-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.benefit-card {
  background: var(--c-rosa);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .2s ease;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card .ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-marfil); color: var(--c-guinda);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.benefit-card .ic svg { width: 26px; height: 26px; }
.benefit-card.gold .ic { color: var(--c-dorado); }
.benefit-card h3 { margin-bottom: 6px; }
.benefit-card p { color: var(--c-text-soft); font-size: 0.94rem; }

/* ---------- 18. STICKERS ---------- */
.stickers-section {
  background: var(--c-rosa);
  border-top: 1px solid var(--c-line);
}
.stickers-section .section-title-wrap { text-align: center; margin-bottom: 28px; }
.stickers-section h2 { display: inline-flex; align-items: center; gap: 16px; color: var(--c-guinda); font-size: clamp(1.5rem, 4vw, 2rem); }
.stickers-grid {
  display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr);
  justify-items: center; align-items: center;
  padding: 8px 0 24px;
}
.stickers-grid img {
  width: 100%; max-width: 180px; height: auto;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
  transition: transform .2s ease;
}
.stickers-grid img:hover { transform: scale(1.04) rotate(-2deg); }

/* ---------- 19. FOOTER NEGOCIOS ---------- */
.footer-negocios .lead-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--c-line);
}
.footer-negocios .lead-row p { color: var(--c-text); font-weight: 700; }
.footer-negocios .lead-row .aliados {
  display: flex; gap: 14px; flex-wrap: wrap; margin-left: auto; align-items: center;
}
.footer-negocios .lead-row .aliados img { height: 36px; }
.footer-negocios .lead-row .aliados span { color: var(--c-text-soft); font-size: 0.85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 40px; }
  .filters { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stickers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .cta-final .grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .register-grid { grid-template-columns: 1fr 1.2fr; }
  .how-grid { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; }
  .how-arrow { display: inline-flex; }
}

@media (min-width: 980px) {
  section { padding: 72px 0; }
  .nav-desktop { display: inline-flex; }
  .btn-burger { display: none; }
  .filters { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 80px 0 70px; }
}

@media (max-width: 720px) {
  .hero-display .arrow.tl { left: -20px; width: 38px; }
  .hero-display .arrow.tr { right: -10px; width: 38px; }
  .hero-display .arrow.bl { display: none; }
  .map-pin .pin-icon { width: 28px; height: 36px; }
  .map-pin .pin-tag { font-size: 0.7rem; padding: 4px 8px; margin-bottom: 14px; }
  .cta-heart { width: 84px; height: 84px; font-size: 0.66rem; right: 12px; bottom: 12px; }
}

/* ---------- 20. UTILIDADES ---------- */
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
