/* SALVIA BLANCA — landing Vendimia de Aniversario.
   DISEÑO MÓVIL-PRIMERO: la pauta cae en el navegador in-app del teléfono.
   Todo es una columna centrada (máx ~520px) que se ve nativa en móvil y
   queda centrada, tipo tarjeta, si se abre en escritorio.
   Acabado limpio y cálido (paleta de la marca), a tono con el flyer. */

:root {
  --aniv-naranja: #E2691B;
  --aniv-ambar: #EFA24C;
  --aniv-tinta: #1C1A17;
  --aniv-crema: #F8F4EC;
  --aniv-suave: #6b6157;
  --aniv-wa: #25D366;
}

* { box-sizing: border-box; }
body.aniv {
  margin: 0;
  background: #efe7d9;
  color: var(--aniv-tinta);
  font-family: var(--font-cuerpo, system-ui, sans-serif);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.aniv img { display: block; max-width: 100%; }

.aniv-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--aniv-crema);
  min-height: 100vh;
  box-shadow: 0 0 60px rgb(28 26 23 / 0.12);
  padding-bottom: 96px; /* espacio para la barra fija */
}

/* ── Top con logo ── */
.aniv-top {
  display: flex;
  justify-content: center;
  padding: 22px 20px 14px;
}
.aniv-logo { height: 40px; width: auto; }

/* ── Banner (flyer) ── */
.aniv-banner { margin: 0; }
.aniv-banner img { width: 100%; height: auto; }

/* ── Intro / datos en texto ── */
.aniv-intro {
  padding: 32px 24px 8px;
  text-align: center;
}
.aniv-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aniv-naranja);
  font-weight: 500;
  margin: 0 0 12px;
}
.aniv-intro h1 {
  font-family: var(--font-titulo, Georgia, serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 9vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 16px;
}
.aniv-intro h1 em { font-style: italic; color: var(--aniv-naranja); }
.aniv-lead {
  color: var(--aniv-suave);
  font-size: 1.02rem;
  margin: 0 auto 24px;
  max-width: 40ch;
}

.aniv-datos {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  justify-content: center;
}
.aniv-datos li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: var(--font-titulo, Georgia, serif);
  font-size: 1.1rem;
}
.aniv-datos span { font-size: 1.1rem; }

/* ── Botón WhatsApp ── */
.aniv-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--aniv-wa);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgb(37 211 102 / 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aniv-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgb(37 211 102 / 0.45); }
.aniv-wa svg { width: 22px; height: 22px; flex: none; }

/* ── Qué vas a encontrar ── */
.aniv-que {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 36px 20px 8px;
}
.aniv-que-item {
  text-align: center;
  background: #fff;
  border: 1px solid rgb(28 26 23 / 0.08);
  border-radius: 14px;
  padding: 18px 10px;
}
.aniv-que-item span { font-size: 1.7rem; display: block; margin-bottom: 6px; }
.aniv-que-item h2 {
  font-family: var(--font-titulo, Georgia, serif);
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 4px;
}
.aniv-que-item p { font-size: 0.78rem; color: var(--aniv-suave); margin: 0; line-height: 1.4; }

/* ── Video recap ── */
.aniv-video-sec { padding: 40px 20px 8px; }
.aniv-video {
  max-width: 300px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgb(28 26 23 / 0.2);
  background: #000;
}
.aniv-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* ── Galería ── */
.aniv-galeria-sec { padding: 40px 20px 8px; }
.aniv-h2 {
  font-family: var(--font-titulo, Georgia, serif);
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 20px;
}
/* Carrusel horizontal: se desliza con el dedo, sin JS (scroll-snap nativo). */
.aniv-galeria {
  display: flex;
  align-items: flex-start;           /* que NO estire las fotos a lo alto */
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;              /* Firefox */
  padding: 4px 20px 8px;
  margin: 0 -20px;                    /* que el carrusel llegue a las orillas */
  scroll-padding: 0 20px;
}
.aniv-galeria::-webkit-scrollbar { display: none; }  /* WebKit */
.aniv-galeria img {
  flex: 0 0 62%;
  max-width: 240px;
  height: 300px;                      /* altura fija: antes el flex la estiraba */
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: center;
}
.aniv-hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aniv-suave);
  margin: 4px 0 0;
}

/* ── Cierre ── */
.aniv-cierre {
  margin: 44px 16px 0;
  padding: 44px 24px;
  background: linear-gradient(160deg, var(--aniv-ambar) 0%, var(--aniv-naranja) 100%);
  color: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 34px rgb(226 105 27 / 0.28);
}
.aniv-cierre h2 {
  font-family: var(--font-titulo, Georgia, serif);
  font-weight: 400;
  font-size: 2.1rem;
  margin: 0 0 8px;
  color: #fff;
}
.aniv-cierre > p { color: rgb(255 255 255 / 0.92); margin: 0 0 22px; }
/* Sobre el naranja, el botón blanco con texto verde resalta más que el verde. */
.aniv-cierre .aniv-wa {
  background: #fff;
  color: #128C3E;
  box-shadow: 0 8px 22px rgb(28 26 23 / 0.18);
}
.aniv-cierre .aniv-wa:hover { background: #fff; box-shadow: 0 12px 28px rgb(28 26 23 / 0.26); }
.aniv-dir {
  margin: 22px 0 0 !important;
  font-size: 0.76rem;
  color: rgb(255 255 255 / 0.8) !important;
  letter-spacing: 0.03em;
}
.aniv-volver { margin: 18px 0 0 !important; }
.aniv-volver a { color: #fff; text-decoration: underline; font-size: 0.9rem; }

/* ── Barra fija de reserva ── */
.aniv-fija {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aniv-wa);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.3);
  width: calc(100% - 40px);
  max-width: 440px;
  justify-content: center;
}
.aniv-fija svg { width: 20px; height: 20px; flex: none; }

@media (prefers-reduced-motion: reduce) {
  .aniv-wa { transition: none; }
}

.aniv-salvios { max-width: 40ch; margin: 14px auto 0; font-size: 0.85rem; color: var(--aniv-suave, #6b6157); }
