/* ─────────────────────────────────────────────
   novedades.css — Inauguración Guaraní Tour App
───────────────────────────────────────────── */

/* ── Overlay ───────────────────────────────────────────── */
.nov-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background .35s ease;
  pointer-events: none;
}
.nov-overlay.nov-visible {
  background: rgba(0, 0, 0, .55);
  pointer-events: all;
}

/* ── Sheet ─────────────────────────────────────────────── */
.nov-sheet {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  padding: 1.2rem 1.4rem 2.2rem;
  box-shadow: 0 -8px 48px rgba(0, 0, 0, .22);
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.32, .72, 0, 1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.nov-overlay.nov-visible .nov-sheet {
  transform: translateY(0);
}

/* Banda de color sutil en el borde superior según slide */
.nov-sheet::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: var(--border);
  transition: background .4s ease;
}
.nov-sheet[data-tipo="pasado"]::before    { background: #9e9e9e; }
.nov-sheet[data-tipo="transicion"]::before { background: linear-gradient(90deg, #9e9e9e, var(--accent)); }
.nov-sheet[data-tipo="hoy"]::before        { background: linear-gradient(90deg, var(--accent), var(--gold)); }

/* ── Header ────────────────────────────────────────────── */
.nov-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.nov-header-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nov-close {
  width: 30px; height: 30px;
  border: none; border-radius: 50%;
  background: var(--bg2);
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.nov-close:hover { background: var(--border); color: var(--text); }

/* ── Slides wrapper ────────────────────────────────────── */
.nov-slides-wrap {
  min-height: 280px;
  display: flex;
  align-items: stretch;
}
.nov-slides {
  width: 100%;
  position: relative;
}

/* ── Slide individual ──────────────────────────────────── */
.nov-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .5rem;
  animation: novSlideIn .3s ease both;
}
.nov-slide.activa { display: flex; }

@keyframes novSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Visual: contenedor del ícono ──────────────────────── */
.nov-slide-visual {
  margin-bottom: 1.1rem;
}
.nov-slide-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
}

/* Colores por tipo de slide */
.nov-slide--pasado .nov-slide-icon {
  background: linear-gradient(135deg, #757575, #424242);
  color: #e0e0e0;
}
.nov-slide--transicion .nov-slide-icon {
  background: linear-gradient(135deg, #424242, #2d6a4f);
}
.nov-slide--hoy .nov-slide-icon {
  background: linear-gradient(135deg, #2d6a4f, #c9a84c);
}

/* ── Badge de etapa ────────────────────────────────────── */
.nov-slide-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: .22rem .7rem;
  margin-bottom: .8rem;
  border: 1.5px solid currentColor;
}
.nov-badge--pasado    { color: #9e9e9e;          border-color: #9e9e9e; }
.nov-badge--transicion { color: var(--accent2);   border-color: var(--accent2); }
.nov-badge--hoy        {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-color: transparent;
}

/* ── Título ────────────────────────────────────────────── */
.nov-slide-nombre {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .65rem;
  line-height: 1.2;
}
/* Slide pasado: tono más apagado */
.nov-slide--pasado .nov-slide-nombre { color: var(--text-muted); }

/* ── Descripción ───────────────────────────────────────── */
.nov-slide-desc {
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 340px;
}
.nov-slide--hoy .nov-slide-desc {
  color: var(--text);
}

/* ── Dots ──────────────────────────────────────────────── */
.nov-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 1.4rem 0 1.2rem;
}
.nov-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background .2s, width .2s, border-radius .2s;
}
.nov-dot.activo {
  background: var(--accent);
  border-color: var(--accent);
  width: 18px;
  border-radius: 4px;
}

/* ── Acciones ──────────────────────────────────────────── */
.nov-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}
.nov-btn-prev {
  background: none;
  border: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding: .5rem .2rem;
  transition: color .15s;
}
.nov-btn-prev:hover { color: var(--text); }

.nov-btn-next {
  flex: 1;
  padding: .78rem 1.2rem;
  border: none;
  border-radius: 12px;
  background: var(--accent2);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .12s, box-shadow .15s;
}
.nov-btn-next:hover {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(45, 106, 79, .28);
  transform: translateY(-1px);
}
.nov-btn-next:active { transform: translateY(0); }

/* Variante final "¡Empezar!" */
.nov-btn-next.nov-btn-empezar {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 4px 16px rgba(201, 168, 76, .32);
}
.nov-btn-next.nov-btn-empezar:hover {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}
