/* ============================================================
   NEOWEEK VIAJES — Sistema visual
   Tokens del brief · Mulish (sub. Avenir Next) + Fraunces
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --nw-brand: #C60204;
  --nw-brand-dark: #8C0001;
  --nw-brand-tint: #FBEBEB;

  /* Neutros */
  --nw-ink: #0F0F0F;
  --nw-ink-soft: #3C3C3C;
  --nw-muted: #6B6B6B;
  --nw-line: #E5E5E5;
  --nw-line-soft: #F0F0F0;

  /* Backgrounds */
  --nw-white: #FFFFFF;
  --nw-cream: #FAF7F2;

  /* Accent */
  --nw-whatsapp: #25D366;
  --nw-whatsapp-dark: #128C7E;

  /* Type */
  --nw-sans: "Mulish", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nw-serif: "Fraunces", "Playfair Display", Georgia, serif;

  --nw-text-xs: 0.75rem;
  --nw-text-sm: 0.875rem;
  --nw-text-base: 1rem;
  --nw-text-lg: 1.125rem;
  --nw-text-xl: 1.25rem;

  /* Spacing (4px system) */
  --nw-space-1: 4px;
  --nw-space-2: 8px;
  --nw-space-3: 12px;
  --nw-space-4: 16px;
  --nw-space-6: 24px;
  --nw-space-8: 32px;
  --nw-space-10: 40px;
  --nw-space-12: 48px;
  --nw-space-16: 64px;
  --nw-space-20: 80px;
  --nw-space-24: 96px;

  /* Radius */
  --nw-radius-sm: 6px;
  --nw-radius: 12px;
  --nw-radius-lg: 16px;
  --nw-radius-full: 9999px;

  /* Shadows */
  --nw-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --nw-shadow: 0 4px 12px rgba(0,0,0,0.06);
  --nw-shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --nw-shadow-cta: 0 4px 16px rgba(198, 2, 4, 0.3);

  /* Motion */
  --nw-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nw-dur-hover: 220ms;
  --nw-dur-enter: 720ms;

  /* Layout */
  --nw-maxw: 1200px;
  --nw-header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--nw-sans);
  color: var(--nw-ink);
  background: var(--nw-white);
  font-size: var(--nw-text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
}
img, picture, svg { display: block; max-width: 100%; }
button, input, a { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { text-decoration: none; }
ul { list-style: none; }

/* ---------- Helpers ---------- */
.nw-wrap { width: 100%; max-width: var(--nw-maxw); margin-inline: auto; padding-inline: var(--nw-space-6); }
.nw-section { padding-block: clamp(56px, 8vw, 104px); }
.nw-section--cream { background: var(--nw-cream); }

.nw-eyebrow {
  display: inline-block;
  background: var(--nw-brand);
  color: #fff;
  font-size: var(--nw-text-xs);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--nw-radius-full);
}
.nw-eyebrow--ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
/* Refuerzo: el eyebrow del hero SIEMPRE transparente y tipo píldora (gana a cualquier override) */
.nw-slide .nw-eyebrow--ghost,
.nw-hero .nw-eyebrow--ghost {
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 9999px !important;
  box-shadow: none !important;
}

.nw-h2 {
  font-family: var(--nw-serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--nw-ink);
  text-wrap: balance;
}
.nw-h2 em { font-style: italic; color: var(--nw-brand); }
.nw-lede {
  color: var(--nw-ink-soft);
  font-size: var(--nw-text-lg);
  max-width: 56ch;
  text-wrap: pretty;
}
.nw-section-head { margin-bottom: var(--nw-space-12); }
.nw-section-head .nw-eyebrow { margin-bottom: var(--nw-space-4); }
.nw-section-head .nw-h2 { margin-bottom: var(--nw-space-4); }

/* ---------- Buttons ---------- */
.nw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--nw-space-2);
  padding: 14px 28px;
  border-radius: var(--nw-radius-full);
  font-weight: 800;
  font-size: var(--nw-text-base);
  letter-spacing: 0.01em;
  transition: transform var(--nw-dur-hover) var(--nw-ease),
              box-shadow var(--nw-dur-hover) var(--nw-ease),
              background var(--nw-dur-hover) var(--nw-ease),
              color var(--nw-dur-hover) var(--nw-ease);
  white-space: nowrap;
  line-height: 1;
}
.nw-btn svg { width: 19px; height: 19px; }
.nw-btn--primary { background: var(--nw-brand); color: #fff; box-shadow: var(--nw-shadow-cta); }
.nw-btn--primary:hover { background: var(--nw-brand-dark); transform: translateY(-2px); }
.nw-btn--whatsapp { background: var(--nw-whatsapp); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.nw-btn--whatsapp:hover { background: var(--nw-whatsapp-dark); transform: translateY(-2px); }
.nw-btn--ghost { background: transparent; border: 1.5px solid var(--nw-brand); color: var(--nw-brand); }
.nw-btn--ghost:hover { background: var(--nw-brand); color: #fff; }
.nw-btn--ghost-light {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  backdrop-filter: blur(8px);
}
.nw-btn--ghost-light:hover { background: rgba(255,255,255,0.18); border-color: #fff; transform: translateY(-2px); }

/* ---------- Focus ---------- */
:focus-visible { outline: 3px solid var(--nw-brand); outline-offset: 2px; border-radius: 4px; }
.nw-skip {
  position: absolute; left: var(--nw-space-4); top: -60px;
  background: var(--nw-ink); color: #fff; padding: 10px 18px;
  border-radius: var(--nw-radius-sm); z-index: 2000;
  transition: top 160ms var(--nw-ease);
}
.nw-skip:focus { top: var(--nw-space-4); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--nw-dur-enter) var(--nw-ease), transform var(--nw-dur-enter) var(--nw-ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 160ms; }
.reveal[data-d="3"] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   IMAGE STAND-INS — gradientes duotono por destino
   (placeholder hasta cargar fotograf\u00eda editorial real)
   ============================================================ */
.g-fill { position: absolute; inset: 0; width: 100%; height: 100%; }
.g-caribe   { background:
  radial-gradient(120% 90% at 20% 8%, #7FE3E0 0%, transparent 55%),
  radial-gradient(120% 120% at 95% 100%, #0A4C73 0%, transparent 60%),
  linear-gradient(150deg, #28B5C4 0%, #0E6E91 55%, #073A55 100%); }
.g-brasil   { background:
  radial-gradient(110% 90% at 15% 10%, #FFD27A 0%, transparent 55%),
  radial-gradient(120% 120% at 90% 95%, #8C1E5A 0%, transparent 60%),
  linear-gradient(150deg, #FF8A4B 0%, #E0476A 55%, #7E2150 100%); }
.g-europa   { background:
  radial-gradient(110% 90% at 18% 8%, #F3E6C9 0%, transparent 55%),
  radial-gradient(120% 120% at 92% 96%, #5B4A38 0%, transparent 60%),
  linear-gradient(150deg, #D9B98A 0%, #A98455 55%, #5E4730 100%); }
.g-argentina{ background:
  radial-gradient(110% 90% at 16% 8%, #DDEAF2 0%, transparent 55%),
  radial-gradient(120% 120% at 92% 96%, #1C3A55 0%, transparent 60%),
  linear-gradient(150deg, #8FB6CE 0%, #4C7B9C 55%, #213F5A 100%); }
.g-puntacana{ background:
  radial-gradient(120% 90% at 18% 10%, #B6F2E6 0%, transparent 55%),
  linear-gradient(150deg, #34C6B0 0%, #128A9A 55%, #0A5570 100%); }
.g-buzios   { background:
  radial-gradient(120% 90% at 18% 10%, #FFE08A 0%, transparent 55%),
  linear-gradient(150deg, #FFB05A 0%, #F0735F 55%, #B23A63 100%); }
.g-roma     { background:
  radial-gradient(120% 90% at 18% 10%, #F0DFC0 0%, transparent 55%),
  linear-gradient(150deg, #C9A06A 0%, #9C6F47 55%, #5E3D2A 100%); }
.g-iguazu   { background:
  radial-gradient(120% 90% at 18% 10%, #CFEAC2 0%, transparent 55%),
  linear-gradient(150deg, #5FA86B 0%, #2E7E6E 55%, #1A4E55 100%); }
.g-ig-a { background: linear-gradient(150deg,#34C6B0,#0A5570); }
.g-ig-b { background: linear-gradient(150deg,#FFB05A,#B23A63); }
.g-ig-c { background: linear-gradient(150deg,#8FB6CE,#213F5A); }
.g-ig-d { background: linear-gradient(150deg,#C9A06A,#5E3D2A); }
.g-ig-e { background: linear-gradient(150deg,#5FA86B,#1A4E55); }
.g-ig-f { background: linear-gradient(150deg,#E0476A,#7E2150); }

/* placeholder hatch + label so el cliente sabe que va una foto real */
.g-ph { position: absolute; inset: 0; pointer-events: none; }
.g-ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, rgba(255,255,255,0) 10px 20px);
}
.g-ph__lbl {
  position: absolute; left: 12px; top: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); background: rgba(0,0,0,0.28);
  padding: 4px 8px; border-radius: 4px; backdrop-filter: blur(3px);
}

/* ---------- Tweak overrides ---------- */
.nw-no-serif .nw-h2,
.nw-no-serif .nw-slide__title,
.nw-no-serif .nw-vcard__name,
.nw-no-serif .nw-pkg__title,
.nw-no-serif .nw-pkg__price b,
.nw-no-serif .nw-cta-final h2,
.nw-no-serif .nw-mobile__list a { font-family: var(--nw-sans); font-weight: 800; letter-spacing: -0.02em; }
.nw-no-serif .nw-h2 em,
.nw-no-serif .nw-slide__title em { font-style: normal; }
.nw-no-serif .nw-diffitem__num { font-style: normal; font-weight: 900; }
.nw-no-cream .nw-section--cream { background: var(--nw-white); }

/* ============================================================
   HEADER
   ============================================================ */
.nw-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nw-header-h);
  background: var(--nw-white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--nw-dur-hover) var(--nw-ease), border-color var(--nw-dur-hover) var(--nw-ease);
}
.nw-header.is-scrolled { box-shadow: var(--nw-shadow); border-color: var(--nw-line-soft); }
.nw-header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--nw-space-6);
}
.nw-logo { display: flex; align-items: center; }
.nw-logo img,
.nw-logo .custom-logo { height: 42px; width: auto; max-height: 42px; display: block; }
@media (max-width: 720px){ .nw-logo img, .nw-logo .custom-logo { height: 36px; max-height: 36px; } }
/* Si WordPress mete su propio enlace de custom-logo, neutralizarlo */
.nw-logo .custom-logo-link { display: flex; align-items: center; pointer-events: none; }
/* Logo del menú mobile: tamaño acotado sí o sí */
.nw-mobile__top .nw-logo img,
.nw-mobile__top .nw-logo .custom-logo { height: 36px !important; max-height: 36px !important; width: auto !important; }

.nw-nav { display: flex; align-items: center; gap: var(--nw-space-2); }
.nw-nav__list { display: flex; align-items: center; gap: 2px; }
.nw-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--nw-radius-sm);
  font-weight: 700; font-size: var(--nw-text-sm); color: var(--nw-ink-soft);
  transition: color var(--nw-dur-hover) var(--nw-ease), background var(--nw-dur-hover) var(--nw-ease);
}
.nw-nav__link:hover, .nw-nav__link[aria-expanded="true"] { color: var(--nw-brand); background: var(--nw-brand-tint); }
.nw-nav__link svg { width: 14px; height: 14px; transition: transform var(--nw-dur-hover) var(--nw-ease); }
.nw-nav__link[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Dropdown */
.nw-has-dropdown { position: relative; }
.nw-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 200px; background: #fff; border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius); box-shadow: var(--nw-shadow-lg);
  padding: var(--nw-space-3); opacity: 0; visibility: hidden;
  transition: opacity 180ms var(--nw-ease), transform 180ms var(--nw-ease), visibility 180ms;
}
.nw-has-dropdown.is-open .nw-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nw-dropdown__item { display: flex; align-items: center; gap: var(--nw-space-3); padding: 11px 12px; border-radius: var(--nw-radius-sm); transition: background var(--nw-dur-hover) var(--nw-ease), color var(--nw-dur-hover) var(--nw-ease); }
.nw-dropdown__item:hover { background: var(--nw-cream); color: var(--nw-brand); }
.nw-dropdown__swatch { width: 34px; height: 34px; border-radius: 8px; flex: none; }
.nw-dropdown__t { font-weight: 800; font-size: var(--nw-text-base); color: inherit; }
.nw-dropdown__all { display: block; margin-top: 6px; padding: 11px 12px; border-top: 1px solid var(--nw-line-soft); font-weight: 800; font-size: var(--nw-text-sm); color: var(--nw-brand); }

.nw-header__cta { display: inline-flex; }
.nw-burger { display: none; width: 44px; height: 44px; border-radius: var(--nw-radius-sm); align-items: center; justify-content: center; }
.nw-burger span { display: block; width: 22px; height: 2px; background: var(--nw-ink); border-radius: 2px; position: relative; transition: transform 220ms var(--nw-ease), opacity 220ms var(--nw-ease); }
.nw-burger span::before, .nw-burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--nw-ink); border-radius: 2px; transition: transform 220ms var(--nw-ease); }
.nw-burger span::before { top: -7px; }
.nw-burger span::after { top: 7px; }

/* ---------- Mobile overlay menu ---------- */
.nw-mobile {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--nw-white);
  display: flex; flex-direction: column;
  padding: var(--nw-space-6);
  transform: translateX(100%); transition: transform 320ms var(--nw-ease);
  overflow-y: auto;
}
.nw-mobile.is-open { transform: none; }
.nw-mobile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--nw-space-8); }
.nw-mobile__close { width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--nw-radius-sm); font-size: 1.6rem; color: var(--nw-ink); }
.nw-mobile__list { display: flex; flex-direction: column; gap: 2px; }
.nw-mobile__list a { padding: 16px 8px; font-family: var(--nw-serif); font-size: 1.6rem; color: var(--nw-ink); border-bottom: 1px solid var(--nw-line-soft); }
.nw-mobile__sub { display: flex; flex-direction: column; gap: 2px; padding-left: var(--nw-space-4); }
.nw-mobile__sub a { font-family: var(--nw-sans); font-size: 1.05rem; font-weight: 700; color: var(--nw-ink-soft); padding: 11px 8px; }
.nw-mobile__cta { margin-top: auto; padding-top: var(--nw-space-8); display: flex; flex-direction: column; gap: var(--nw-space-3); }
.nw-mobile__cta .nw-btn { width: 100%; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.nw-hero { position: relative; height: 92vh; min-height: 600px; max-height: 920px; overflow: hidden; background: var(--nw-ink); }
.nw-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms var(--nw-ease); }
.nw-slide.is-active { opacity: 1; }
.nw-slide__bg { position: absolute; inset: 0; transform: scale(1.04); transition: transform 7000ms ease-out; }
.nw-slide__bg--photo { background-size: cover; background-position: center; }
.nw-slide__bg--photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,12,20,0.62) 0%, rgba(8,12,20,0.30) 45%, rgba(8,12,20,0) 75%);
}
.nw-slide.is-active .nw-slide__bg { transform: scale(1.12); }
.nw-slide__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,20,0.30) 0%, rgba(8,12,20,0.18) 35%, rgba(8,12,20,0.62) 100%);
}
.nw-slide__grain { position: absolute; inset: 0; opacity: 0.10; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.nw-slide__tag { position: absolute; right: 16px; bottom: 16px; z-index: 3; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.25); padding: 4px 8px; border-radius: 4px; backdrop-filter: blur(4px); }

.nw-slide__content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.nw-slide__inner { max-width: 720px; }
.nw-slide .nw-eyebrow { margin-bottom: var(--nw-space-6); }
.nw-slide__title { font-family: var(--nw-serif); font-weight: 400; color: #fff; font-size: clamp(2.5rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -0.015em; text-wrap: balance; }
.nw-slide__title em { font-style: italic; }
.nw-slide__sub { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 1.6vw, 1.35rem); margin-top: var(--nw-space-6); max-width: 52ch; text-wrap: pretty; }
.nw-slide__cta { display: flex; flex-wrap: wrap; gap: var(--nw-space-4); margin-top: var(--nw-space-10); }

/* hero text enter animation */
.nw-slide.is-active .nw-eyebrow,
.nw-slide.is-active .nw-slide__title,
.nw-slide.is-active .nw-slide__sub,
.nw-slide.is-active .nw-slide__cta { animation: heroUp 800ms var(--nw-ease) backwards; }
.nw-slide.is-active .nw-slide__title { animation-delay: 90ms; }
.nw-slide.is-active .nw-slide__sub { animation-delay: 180ms; }
.nw-slide.is-active .nw-slide__cta { animation-delay: 270ms; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* slider controls */
.nw-hero__arrows { position: absolute; z-index: 5; bottom: 40px; right: 40px; display: flex; gap: var(--nw-space-3); }
.nw-arrow { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.4); color: #fff; display: grid; place-items: center; backdrop-filter: blur(8px); transition: background var(--nw-dur-hover) var(--nw-ease); }
.nw-arrow:hover { background: rgba(255,255,255,0.28); }
.nw-arrow svg { width: 20px; height: 20px; }
.nw-hero__dots { position: absolute; z-index: 5; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.nw-dot { width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.35); transition: background var(--nw-dur-hover) var(--nw-ease); position: relative; overflow: hidden; }
.nw-dot.is-active { background: rgba(255,255,255,0.95); }

/* hero credentials strip */
.nw-hero__cred { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; }

/* ============================================================
   VERTICALES
   ============================================================ */
.nw-verticals { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--nw-space-6); }
.nw-vcard {
  position: relative; aspect-ratio: 3/4.2; border-radius: var(--nw-radius-lg); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--nw-space-6); color: #fff; isolation: isolate;
}
.nw-vcard__bg { position: absolute; inset: 0; z-index: -2; transition: transform 700ms var(--nw-ease); }
.nw-vcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%); transition: background var(--nw-dur-hover) var(--nw-ease); }
.nw-vcard:hover .nw-vcard__bg { transform: scale(1.06); }
.nw-vcard:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.10) 20%, rgba(0,0,0,0.82) 100%); }
.nw-vcard__name { font-family: var(--nw-serif); font-size: 1.9rem; line-height: 1; letter-spacing: -0.01em; }
.nw-vcard__desc { font-size: var(--nw-text-sm); color: rgba(255,255,255,0.88); margin-top: var(--nw-space-3); }
.nw-vcard__link { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--nw-space-4); font-weight: 800; font-size: var(--nw-text-sm); }
.nw-vcard__link span { background: linear-gradient(currentColor, currentColor) 0 100%/0 1.5px no-repeat; transition: background-size 280ms var(--nw-ease); }
.nw-vcard:hover .nw-vcard__link span { background-size: 100% 1.5px; }
.nw-vcard__link svg { width: 16px; height: 16px; transition: transform var(--nw-dur-hover) var(--nw-ease); }
.nw-vcard:hover .nw-vcard__link svg { transform: translateX(4px); }
.nw-verticals__more { margin-top: var(--nw-space-10); text-align: center; }
.nw-verticals__more a { font-weight: 800; color: var(--nw-ink-soft); border-bottom: 2px solid var(--nw-brand); padding-bottom: 3px; transition: color var(--nw-dur-hover) var(--nw-ease); }
.nw-verticals__more a:hover { color: var(--nw-brand); }

/* ============================================================
   PAQUETES
   ============================================================ */
.nw-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--nw-space-8); }
.nw-pkg {
  background: #fff; border: 1px solid var(--nw-line); border-radius: var(--nw-radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--nw-dur-hover) var(--nw-ease), box-shadow var(--nw-dur-hover) var(--nw-ease);
}
.nw-pkg:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--nw-shadow-lg); }
.nw-pkg__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.nw-pkg__media > div { position: absolute; inset: 0; transition: transform 600ms var(--nw-ease); }
.nw-pkg:hover .nw-pkg__media > div { transform: scale(1.05); }
.nw-pkg__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--nw-brand); color: #fff; font-size: var(--nw-text-xs); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--nw-radius-full); }
.nw-pkg__body { padding: var(--nw-space-6); display: flex; flex-direction: column; flex: 1; }
.nw-pkg__title { font-family: var(--nw-serif); font-size: 1.4rem; line-height: 1.1; letter-spacing: -0.01em; }
.nw-pkg__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: var(--nw-space-4); color: var(--nw-muted); font-size: var(--nw-text-sm); }
.nw-pkg__meta span { display: inline-flex; align-items: center; gap: 6px; }
.nw-pkg__meta svg { width: 15px; height: 15px; color: var(--nw-brand); flex: none; }
.nw-pkg__foot { margin-top: auto; padding-top: var(--nw-space-6); display: flex; align-items: flex-end; justify-content: space-between; gap: var(--nw-space-4); }
.nw-pkg__price small { display: block; font-size: var(--nw-text-xs); color: var(--nw-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.nw-pkg__price b { font-family: var(--nw-serif); font-size: 1.6rem; color: var(--nw-ink); font-weight: 600; }
.nw-pkg__price em { font-style: normal; font-size: var(--nw-text-xs); color: var(--nw-muted); display: block; }
.nw-pkg__btn { flex: none; padding: 11px 22px; font-size: var(--nw-text-sm); }
.nw-packages__more { margin-top: var(--nw-space-12); text-align: center; }
.nw-packages__more a { font-weight: 800; color: var(--nw-ink-soft); border-bottom: 2px solid var(--nw-brand); padding-bottom: 3px; transition: color var(--nw-dur-hover) var(--nw-ease); }
.nw-packages__more a:hover { color: var(--nw-brand); }

/* ============================================================
   DIFERENCIALES
   ============================================================ */
.nw-diff { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--nw-space-10) var(--nw-space-8); }
.nw-diffitem { border-top: 2px solid var(--nw-line); padding-top: var(--nw-space-6); }
.nw-diffitem__num { font-family: var(--nw-serif); font-style: italic; font-size: 2.6rem; color: var(--nw-brand); line-height: 1; }
.nw-diffitem__t { font-size: var(--nw-text-lg); font-weight: 800; margin-top: var(--nw-space-4); }
.nw-diffitem__d { color: var(--nw-ink-soft); margin-top: var(--nw-space-2); font-size: var(--nw-text-sm); text-wrap: pretty; }

/* ============================================================
   PASAJEROS / RESEÑAS
   ============================================================ */
.nw-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--nw-space-6); }
.nw-review {
  background: #fff; border: 1px solid var(--nw-line); border-radius: var(--nw-radius-lg);
  padding: var(--nw-space-6); transition: transform var(--nw-dur-hover) var(--nw-ease), box-shadow var(--nw-dur-hover) var(--nw-ease);
}
.nw-review:hover { transform: translateY(-2px); box-shadow: var(--nw-shadow); }
.nw-review__head { display: flex; align-items: center; gap: var(--nw-space-3); }
.nw-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--nw-brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; flex: none; }
.nw-review__name { font-weight: 800; font-size: var(--nw-text-base); }
.nw-review__meta { font-size: var(--nw-text-sm); color: var(--nw-muted); }
.nw-review__quote { margin-top: var(--nw-space-4); color: var(--nw-ink-soft); line-height: 1.6; }
.nw-review__g { margin-top: var(--nw-space-4); display: flex; align-items: center; gap: 8px; color: var(--nw-muted); font-size: var(--nw-text-xs); font-weight: 700; }
.nw-review__g svg { width: 16px; height: 16px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.nw-ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--nw-space-6); flex-wrap: wrap; margin-bottom: var(--nw-space-10); }
.nw-ig { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--nw-space-3); }
.nw-ig__cell { position: relative; aspect-ratio: 1; border-radius: var(--nw-radius); overflow: hidden; }
.nw-ig__cell > div { position: absolute; inset: 0; transition: transform 500ms var(--nw-ease); }
.nw-ig__cell:hover > div { transform: scale(1.08); }
.nw-ig__cell::after { content: ""; position: absolute; inset: 0; background: rgba(198,2,4,0); transition: background var(--nw-dur-hover) var(--nw-ease); }
.nw-ig__cell:hover::after { background: rgba(198,2,4,0.18); }
.nw-ig__ico { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; opacity: 0; transition: opacity var(--nw-dur-hover) var(--nw-ease); color: #fff; }
.nw-ig__cell:hover .nw-ig__ico { opacity: 1; }
.nw-ig__ico svg { width: 26px; height: 26px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.nw-cta-final { background: linear-gradient(120deg, var(--nw-brand) 0%, var(--nw-brand-dark) 100%); color: #fff; position: relative; overflow: hidden; }
.nw-cta-final::before { content: ""; position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 45%), radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 40%); }
.nw-cta-final__inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.nw-cta-final h2 { font-family: var(--nw-serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; }
.nw-cta-final p { margin-top: var(--nw-space-6); font-size: var(--nw-text-lg); color: rgba(255,255,255,0.92); text-wrap: pretty; }
.nw-cta-final .nw-btn { margin-top: var(--nw-space-10); }
.nw-cta-final .nw-btn--whatsapp { background: #fff; color: var(--nw-whatsapp-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.nw-cta-final .nw-btn--whatsapp:hover { background: var(--nw-cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.nw-footer { background: var(--nw-ink); color: rgba(255,255,255,0.72); padding-block: var(--nw-space-20) var(--nw-space-8); }
.nw-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--nw-space-12); }
.nw-footer__brand .nw-logo img { height: 48px; }
.nw-footer__brand p { margin-top: var(--nw-space-4); font-size: var(--nw-text-sm); max-width: 32ch; }
.nw-footer__social { display: flex; gap: var(--nw-space-3); margin-top: var(--nw-space-6); }
.nw-footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: #fff; transition: background var(--nw-dur-hover) var(--nw-ease), border-color var(--nw-dur-hover) var(--nw-ease); }
.nw-footer__social a:hover { background: var(--nw-brand); border-color: var(--nw-brand); }
.nw-footer__social svg { width: 18px; height: 18px; }
.nw-footer h4 { color: #fff; font-size: var(--nw-text-sm); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--nw-space-4); }
.nw-footer__links { display: flex; flex-direction: column; gap: var(--nw-space-3); }
.nw-footer__links a { font-size: var(--nw-text-sm); color: rgba(255,255,255,0.72); transition: color var(--nw-dur-hover) var(--nw-ease); }
.nw-footer__links a:hover { color: #fff; }
.nw-footer__contact p { font-size: var(--nw-text-sm); margin-bottom: var(--nw-space-3); display: flex; gap: 10px; }
.nw-footer__contact svg { width: 16px; height: 16px; color: var(--nw-brand); flex: none; margin-top: 3px; }
.nw-footer__legal { margin-top: var(--nw-space-16); padding-top: var(--nw-space-8); border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: var(--nw-space-4) var(--nw-space-8); justify-content: space-between; font-size: var(--nw-text-xs); color: rgba(255,255,255,0.5); }
.nw-footer__legal a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.nw-footer__legal a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
.nw-wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 1200; width: 60px; height: 60px; border-radius: 50%; background: var(--nw-whatsapp); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,0.45); transition: transform var(--nw-dur-hover) var(--nw-ease); }
.nw-wa-float:hover { transform: scale(1.08); }
.nw-wa-float svg { width: 32px; height: 32px; }
.nw-wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--nw-whatsapp); animation: waPulse 2.4s var(--nw-ease) infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nw-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--nw-space-12) var(--nw-space-8); }
  .nw-ig { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1023px) {
  .nw-nav, .nw-header__cta { display: none; }
  .nw-burger { display: flex; }
  .nw-packages { grid-template-columns: repeat(2, 1fr); }
  .nw-diff { grid-template-columns: repeat(2, 1fr); }
  .nw-reviews { grid-template-columns: 1fr; }
  .nw-hero__arrows { display: none; }
}
@media (max-width: 720px) {
  :root { --nw-header-h: 60px; }
  .nw-wrap { padding-inline: var(--nw-space-5, 20px); }
  .nw-hero { height: 78vh; min-height: 520px; }
  .nw-packages, .nw-diff, .nw-reviews, .nw-verticals { grid-template-columns: 1fr; }
  .nw-verticals .nw-vcard { aspect-ratio: 16/10; }
  .nw-footer__grid { grid-template-columns: 1fr; gap: var(--nw-space-10); }
  .nw-ig { grid-template-columns: repeat(3, 1fr); }
  .nw-slide__cta { flex-direction: column; align-items: stretch; }
  .nw-slide__cta .nw-btn { width: 100%; }
  .nw-slide__inner { padding-right: 8px; }
  .nw-reviews { gap: var(--nw-space-4); }
}
@media (max-width: 380px) {
  .nw-logo { font-size: 1.3rem; }
}

/* ---- Avatar de reseña con foto real (WordPress) ---- */
.nw-avatar--img { padding: 0; overflow: hidden; }
.nw-avatar--img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ---- Compensar header sticky al saltar a anclas (#diferenciales, #pasajeros, etc.) ---- */
:target { scroll-margin-top: calc(var(--nw-header-h) + 24px); }
section[id], div[id] { scroll-margin-top: calc(var(--nw-header-h) + 24px); }

/* ============================================================
   CARRUSEL DE TESTIMONIOS (reseñas con flechas)
   ============================================================ */
.nw-reviews-carousel { position: relative; }

.nw-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--nw-space-6)) / 3);
  gap: var(--nw-space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--nw-space-4);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nw-reviews-track::-webkit-scrollbar { display: none; }
.nw-reviews-track .nw-review { scroll-snap-align: start; }

/* Flechas */
.nw-reviews-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--nw-white);
  border: 1px solid var(--nw-line);
  box-shadow: var(--nw-shadow);
  color: var(--nw-ink);
  display: grid; place-items: center;
  z-index: 5;
  transition: background var(--nw-dur-hover) var(--nw-ease), transform var(--nw-dur-hover) var(--nw-ease), opacity var(--nw-dur-hover) var(--nw-ease);
}
.nw-reviews-arrow:hover { background: var(--nw-brand); color: #fff; border-color: var(--nw-brand); }
.nw-reviews-arrow svg { width: 22px; height: 22px; }
.nw-reviews-arrow--prev { left: -22px; }
.nw-reviews-arrow--next { right: -22px; }
.nw-reviews-arrow[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }

/* Dots */
.nw-reviews-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: var(--nw-space-8);
}
.nw-reviews-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--nw-line); border: none;
  transition: background var(--nw-dur-hover) var(--nw-ease), width var(--nw-dur-hover) var(--nw-ease);
}
.nw-reviews-dots button.is-active { background: var(--nw-brand); width: 26px; border-radius: 5px; }

@media (max-width: 900px) {
  .nw-reviews-track { grid-auto-columns: calc((100% - var(--nw-space-6)) / 2); }
}
@media (max-width: 600px) {
  .nw-reviews-track { grid-auto-columns: 100%; }
  .nw-reviews-arrow--prev { left: 4px; }
  .nw-reviews-arrow--next { right: 4px; }
}

/* ---- Card de paquete totalmente clickeable ---- */
.nw-pkg--clickable { position: relative; cursor: pointer; }
.nw-pkg__link {
  position: absolute; inset: 0;
  z-index: 1;
  font-size: 0; /* sin texto visible */
}
/* El media ya no es un <a>, mantener su posicionamiento */
.nw-pkg--clickable .nw-pkg__media { position: relative; }
/* Efecto hover en toda la card */
.nw-pkg--clickable:hover { transform: translateY(-4px); box-shadow: var(--nw-shadow-lg); }
.nw-pkg--clickable:hover .nw-pkg__img { transform: scale(1.04); }

/* ============================================================
   BUSCADOR DE PAQUETES (home) — cascada + validación + mobile
   ============================================================ */
.nw-buscador-wrap { background: var(--nw-cream); }
.nw-buscador {
  position: relative; z-index: 20; margin-top: -62px;
  display: flex; align-items: flex-end; gap: 14px;
  background: #34302c; padding: 22px 24px;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 70px -18px rgba(0,0,0,.55);
}
.nw-buscador__field { display: flex; flex-direction: column; gap: 8px; flex: 1 1 0; min-width: 0; position: relative; }
.nw-buscador__field--dates { flex: 1.6 1 0; }
.nw-buscador__field--pax { flex: 0 0 150px; }
.nw-buscador__field > label {
  font: 700 11px/1 var(--nw-sans, Helvetica, Arial, sans-serif);
  letter-spacing: .09em; color: #f1efed; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nw-buscador__field > label span {
  font-weight: 400; letter-spacing: 0; text-transform: none; color: #9a948d;
}

/* Inputs base (fechas) */
.nw-buscador__input {
  display: flex; align-items: center; gap: 9px;
  height: 52px; padding: 0 14px; background: #fff;
  border-radius: 10px; transition: box-shadow .15s; min-width: 0;
  border: 2px solid transparent;
}
.nw-buscador__input svg { width: 18px; height: 18px; color: var(--nw-brand); flex: none; }
.nw-buscador__input input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  font: 400 15px var(--nw-sans, Helvetica, Arial, sans-serif); color: var(--nw-ink-soft);
}
.nw-buscador__dates { display: flex; gap: 9px; }
.nw-buscador__dates .nw-buscador__input { flex: 1; padding: 0 13px; }

/* Dropdown custom */
.nw-bsel { position: relative; }
.nw-bsel__btn {
  display: flex; align-items: center; gap: 9px; width: 100%;
  height: 52px; padding: 0 14px; background: #fff;
  border: 2px solid transparent; border-radius: 10px; cursor: pointer;
  font: inherit; text-align: left; transition: box-shadow .15s, border-color .15s;
}
.nw-bsel__btn:hover { box-shadow: 0 0 0 2px rgba(198,2,4,.18); }
.nw-bsel.is-open .nw-bsel__btn { border-color: var(--nw-brand); }
.nw-bsel__btn:focus { outline: none; }
.nw-bsel__btn > svg:first-child { width: 18px; height: 18px; color: var(--nw-brand); flex: none; }
.nw-bsel__label {
  flex: 1; min-width: 0; font: 400 15px var(--nw-sans, Helvetica, Arial, sans-serif);
  color: #a9a4a0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nw-bsel__label.is-filled { color: var(--nw-ink); font-weight: 600; }
.nw-bsel__chev { width: 16px; height: 16px; color: #bdb7b1; flex: none; transition: transform .2s; }
.nw-bsel.is-open .nw-bsel__chev { transform: rotate(180deg); }

/* Menú */
.nw-bsel__menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: #fff; border-radius: 12px; box-shadow: 0 20px 50px -12px rgba(0,0,0,.35);
  border: 1px solid var(--nw-line); padding: 6px; max-height: 320px; overflow-y: auto;
  display: none;
}
.nw-bsel.is-open .nw-bsel__menu { display: block; }
.nw-bsel__opt {
  padding: 11px 14px; border-radius: 8px; cursor: pointer;
  font: 400 15px var(--nw-sans, Helvetica, Arial, sans-serif); color: var(--nw-ink);
  transition: background .12s;
}
.nw-bsel__opt:hover { background: var(--nw-brand-tint, #FBEBEB); }
.nw-bsel__opt.is-selected { background: var(--nw-brand); color: #fff; font-weight: 600; }
.nw-bsel__opt--all { font-weight: 700; color: var(--nw-brand); border-bottom: 1px solid var(--nw-line-soft, #f0f0f0); border-radius: 8px 8px 0 0; }
.nw-bsel__opt--all.is-selected { color: #fff; }
.nw-bsel__empty { padding: 14px; color: var(--nw-muted); font-size: 13px; font-style: italic; }

/* Menú en cascada (destino) */
.nw-bsel__menu--cascade { display: none; padding: 0; width: 540px; max-width: 92vw; }
.nw-bsel.is-open .nw-bsel__menu--cascade { display: flex; }
.nw-bsel__col { padding: 8px; }
.nw-bsel__col--verticals { flex: 0 0 180px; border-right: 1px solid var(--nw-line); background: var(--nw-cream); border-radius: 12px 0 0 12px; }
.nw-bsel__col--cities { flex: 1; max-height: 340px; overflow-y: auto; }
.nw-bsel__vert {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 8px; cursor: pointer;
  font: 600 15px var(--nw-sans, Helvetica, Arial, sans-serif); color: var(--nw-ink);
  transition: background .12s;
}
.nw-bsel__vert svg { width: 16px; height: 16px; color: var(--nw-muted); }
.nw-bsel__vert:hover, .nw-bsel__vert.is-active { background: var(--nw-brand); color: #fff; }
.nw-bsel__vert.is-active svg { color: #fff; }
.nw-bsel__cities { display: none; }
.nw-bsel__cities.is-active { display: block; }

/* Botón buscar */
.nw-buscador__btn {
  height: 52px; padding: 0 30px; background: var(--nw-brand); color: #fff;
  border: none; border-radius: 10px; font: 700 14px var(--nw-sans, Helvetica, Arial, sans-serif);
  letter-spacing: .05em; display: flex; align-items: center; gap: 9px;
  cursor: pointer; white-space: nowrap; transition: background .15s; align-self: flex-end;
}
.nw-buscador__btn svg { width: 18px; height: 18px; }
.nw-buscador__btn:hover { background: var(--nw-brand-dark, #8C0001); }

/* Estado de error (solo borde rojo, sin texto) */
.nw-buscador__field.has-error .nw-bsel__btn,
.nw-buscador__field.has-error .nw-bdate__btn,
.nw-buscador__field.has-error .nw-buscador__input {
  border-color: #ff5a5a !important; box-shadow: 0 0 0 2px rgba(255,90,90,.3) !important;
}

/* Campos de fecha (botones tipo dropdown) */
.nw-bdate { position: relative; flex: 1; min-width: 0; }
.nw-bdate__btn { height: 52px; align-items: center; }
.nw-bdate__txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; text-align: left; }
.nw-bdate__txt small { font: 600 10px/1 var(--nw-sans, Helvetica, Arial, sans-serif); text-transform: uppercase; letter-spacing: .05em; color: #b0aaa4; }
.nw-bdate__txt .nw-bsel__label { font-size: 14px; }
.nw-bdate.is-active .nw-bdate__btn { border-color: var(--nw-brand); }

/* Calendario popover */
.nw-cal {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  background: #fff; border-radius: 16px; box-shadow: 0 20px 50px -12px rgba(0,0,0,.35);
  border: 1px solid var(--nw-line); padding: 16px; width: 320px; max-width: 92vw;
}
.nw-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.nw-cal__title { font: 600 16px var(--nw-serif, Georgia, serif); color: var(--nw-ink); }
.nw-cal__nav { width: 32px; height: 32px; border-radius: 8px; border: none; background: var(--nw-cream); color: var(--nw-ink); cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.nw-cal__nav:hover { background: var(--nw-brand-tint, #FBEBEB); }
.nw-cal__nav svg { width: 16px; height: 16px; }
.nw-cal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.nw-cal__dow span { text-align: center; font: 700 11px var(--nw-sans, Helvetica, Arial, sans-serif); color: var(--nw-muted); padding: 4px 0; }
.nw-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px 0; }
.nw-cal__day {
  position: relative; aspect-ratio: 1; border: none; background: none;
  font: 500 14px var(--nw-sans, Helvetica, Arial, sans-serif); color: var(--nw-ink);
  cursor: pointer; display: grid; place-items: center; transition: color .12s;
  z-index: 1;
}
/* círculo del día (hover y selección) usa ::before para no romper la barra de rango */
.nw-cal__day::before {
  content: ""; position: absolute; inset: 2px; border-radius: 50%; z-index: -1;
  transition: background .12s;
}
.nw-cal__day:hover:not(.is-disabled):not(.is-selected)::before { background: var(--nw-brand-tint, #FBEBEB); }
/* días intermedios del rango: barra de fondo clara y continua */
.nw-cal__day.is-range { background: var(--nw-brand-tint, #FBEBEB); border-radius: 0; }
/* extremos del rango: medio círculo para empalmar con la barra */
.nw-cal__day.is-range-start { background: linear-gradient(to right, transparent 50%, var(--nw-brand-tint, #FBEBEB) 50%); }
.nw-cal__day.is-range-end { background: linear-gradient(to left, transparent 50%, var(--nw-brand-tint, #FBEBEB) 50%); }
/* día seleccionado: círculo lleno oscuro */
.nw-cal__day.is-selected { color: #fff; font-weight: 700; }
.nw-cal__day.is-selected::before { background: #1a1a1a; }
.nw-cal__day.is-disabled { color: #d4cfc9; cursor: default; }
.nw-cal__day.is-disabled::before { display: none; }
.nw-cal__day--empty { background: none; cursor: default; }
.nw-cal__day--empty::before { display: none; }

/* Footer del calendario (borrar fechas) */
.nw-cal__foot { display: flex; justify-content: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--nw-line); }
.nw-cal__clear {
  background: none; border: none; color: var(--nw-brand); cursor: pointer;
  font: 600 13px var(--nw-sans, Helvetica, Arial, sans-serif); padding: 6px 14px;
  border-radius: 8px; transition: background .12s;
}
.nw-cal__clear:hover { background: var(--nw-brand-tint, #FBEBEB); }

/* ===== Tablet ===== */
@media (max-width: 980px) {
  .nw-buscador { flex-wrap: wrap; margin-top: -40px; }
  .nw-buscador__field { flex: 1 1 calc(50% - 7px); }
  .nw-buscador__field--pax { flex: 1 1 calc(50% - 7px); }
  .nw-buscador__btn { flex: 1 1 100%; justify-content: center; }
  .nw-bsel__menu--cascade { width: 100%; }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .nw-buscador { margin-top: -24px; padding: 16px; gap: 12px; border-radius: 14px; }
  .nw-buscador__field, .nw-buscador__field--pax, .nw-buscador__field--dates { flex: 1 1 100%; }
  .nw-bsel__menu--cascade { flex-direction: column; max-height: 70vh; }
  .nw-bsel__col--verticals { flex: none; border-right: none; border-bottom: 1px solid var(--nw-line); border-radius: 12px 12px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
  .nw-bsel__vert { flex: 1 1 calc(50% - 6px); font-size: 14px; padding: 9px 12px; }
  .nw-bsel__col--cities { max-height: 240px; }
  .nw-bsel__menu { position: fixed; left: 16px; right: 16px; top: auto; }
  .nw-cal { left: 50%; transform: translateX(-50%); }
}
