/* SALVIA BLANCA — landing "Ven al Valle entre semana".
   Monta sobre pilares.css (hero, cuerpo, botones) y añade lo suyo:
   los tres motivos y la lista de ciudades con tiempos de manejo. */

.vs-hero-sub {
  max-width: 46ch;
  margin: var(--sp-4) auto 0;
  color: rgb(255 255 255 / 0.9);
  font-size: var(--txt-md);
}
.vs-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-6);
}

.vs-h2 {
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin: var(--sp-16) 0 var(--sp-6);
  text-align: center;
}

/* ── Tres motivos ── */
.vs-puntos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.vs-punto {
  background: #fff;
  border: 1px solid rgb(28 26 23 / 0.09);
  border-radius: 3px;
  padding: var(--sp-6);
  text-align: center;
}
.vs-punto h3 {
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 0 var(--sp-2);
}
.vs-punto p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--color-texto-suave, #5b544a);
}

/* ── Ciudades y tiempos ── */
.vs-lista {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 460px;
}
.vs-lista li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgb(28 26 23 / 0.1);
}
.vs-ciudad {
  font-family: var(--font-titulo);
  font-size: 1.15rem;
}
.vs-tiempo {
  font-family: var(--font-cuerpo);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-acento, #8a7a52);
  white-space: nowrap;
}
.vs-nota {
  max-width: 52ch;
  margin: var(--sp-5) auto 0;
  text-align: center;
  font-size: var(--txt-xs);
  color: var(--color-texto-suave, #7a7266);
}

/* ── Menú y cierre ── */
.vs-menu {
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}
.vs-menu p:not(.pil-cta) {
  color: var(--color-texto-suave, #5b544a);
}
.vs-menu .pil-cta {
  margin-top: var(--sp-5);
}

.vs-cierre {
  margin-top: var(--sp-16);
  padding: var(--sp-12) var(--sp-5);
  text-align: center;
  background: #fff;
  border: 1px solid rgb(28 26 23 / 0.09);
  border-radius: 3px;
}
.vs-cierre h2 {
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 var(--sp-2);
}
.vs-cierre .pil-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-6);
}

@media (max-width: 700px) {
  .vs-cierre { padding: var(--sp-8) var(--sp-4); }
}
