:root {
  --bg: #fbf7fc;
  --panel: rgba(255,255,255,.84);
  --panel-strong: rgba(255,255,255,.94);
  --text: #2f1f36;
  --muted: #6d5a75;
  --purple: #6f2c91;
  --purple-2: #8e4cc0;
  --gold: #bb8a2d;
  --gold-light: #e1c47d;
  --shadow: 0 18px 50px rgba(81, 31, 96, .12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(160, 98, 199, .10), transparent 26%),
    radial-gradient(circle at top right, rgba(212, 179, 98, .12), transparent 18%),
    linear-gradient(180deg, #fffefd 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }
main, header, footer { width: 100%; }

.site-header,
.inner-page-header {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.site-header { padding: 18px 0 32px; }
.inner-page-header { padding: 18px 0 0; }

.navbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(185, 137, 45, .18);
  box-shadow: 0 10px 28px rgba(81, 31, 96, .08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 82px;
  height: auto;
  object-fit: contain;
}
.brand span {
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--purple);
  font-size: 1.08rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #4d3858;
  font-weight: 700;
  transition: .2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: rgba(122, 42, 163, .08);
}
.menu-toggle {
  display: none;
  border: 0;
  background: rgba(122, 42, 163, .08);
  color: var(--purple);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
}

.hero,
.page-hero {
  display: grid;
  gap: 30px;
}
.hero {
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  padding: 48px 0 24px;
}
.hero-home {
  min-height: calc(100vh - 160px);
}
.hero-content,
.hero-card,
.feature-card,
.package-card,
.gallery-note,
.review-form,
.reviews-panel,
.location-card,
.split-card,
.cta-box,
.category-card,
.included-box {
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(185, 137, 45, .16);
  box-shadow: var(--shadow);
}
.hero-content {
  padding: clamp(26px, 4vw, 42px);
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 900;
}
.hero-logo {
  width: min(100%, 420px);
  margin-bottom: 20px;
}
.hero h1,
.page-hero h1,
.section-title h2,
.location-card h2,
.cta-box h2,
.split-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--purple);
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 5.1rem); line-height: 1.02; }
.page-hero {
  justify-items: center;
  text-align: center;
  padding: 56px 20px 18px;
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
.page-hero p:last-child { max-width: 760px; color: var(--muted); }
.hero-text { max-width: 640px; color: var(--muted); font-size: 1.06rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.center-actions { justify-content: center; }
.compact-actions { margin-top: 18px; }
.btn {
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(122, 42, 163, .14);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 16px 28px rgba(111, 44, 145, .25);
}
.btn.ghost {
  color: var(--purple);
  background: rgba(255,255,255,.78);
}
.wide-btn { width: fit-content; }
.hero-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
}
.hero-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
}
.floating-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  min-width: 156px;
  text-align: center;
  color: white;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(111,44,145,.96), rgba(187,138,45,.92));
  box-shadow: 0 16px 28px rgba(81,31,96,.25);
}
.floating-badge strong { font-size: 1.5rem; }
.floating-badge span { text-transform: uppercase; letter-spacing: .13em; font-size: .73rem; }

.section {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 82px 0;
}
.page-section-tight { padding-top: 26px; }
.section-title {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-title h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.section-title p:last-child { color: var(--muted); }

.features-grid,
.packages-grid,
.categories-grid,
.split-preview-section,
.comments-layout,
.location-card {
  display: grid;
  gap: 22px;
}
.features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.categories-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.split-preview-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.packages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.comments-layout { grid-template-columns: .9fr 1.1fr; align-items: start; }
.location-card { grid-template-columns: 1fr .9fr; align-items: center; padding: clamp(26px, 4vw, 40px); }

.feature-card,
.category-card,
.split-card,
.review-form,
.reviews-panel,
.gallery-note,
.package-card,
.cta-box {
  padding: 28px;
}
.feature-card span,
.category-icon {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  height: 56px;
  padding: 0 14px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, var(--purple), var(--purple-2));
  font-weight: 900;
}
.feature-card h3,
.category-card h3,
.gallery-note h3,
.review-form h3 { margin: 18px 0 10px; color: var(--purple); }
.feature-card p,
.category-card p,
.gallery-note p,
.split-card p,
.location-card p { color: var(--muted); }
.category-card {
  display: block;
  transition: transform .2s ease, border-color .2s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 42, 163, .24);
}
.category-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--purple);
}

.packages-section { position: relative; }
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(122,42,163,.12), transparent 34%);
  pointer-events: none;
}
.package-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,232,251,.9));
  border-color: rgba(122, 42, 163, .26);
  transform: translateY(-8px);
}
.tag {
  align-self: flex-start;
  padding: 7px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--purple);
  background: #fff;
  border: 1px solid rgba(122, 42, 163, .18);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.package-head span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .82rem;
}
.package-head strong {
  display: block;
  color: var(--purple);
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.package-head small {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--muted);
}
.package-card ul {
  position: relative;
  padding-left: 20px;
  margin: 24px 0;
  color: #3a2a43;
}
.package-card li { margin-bottom: 12px; }
.package-btn { margin-top: auto; width: 100%; }
.included-box {
  margin-top: 20px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 250, 241, .85);
}
.included-box p {
  margin: 0 0 14px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  font-size: .82rem;
}
.included-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.included-items span {
  padding: 11px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(185, 137, 45, .22);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}
.gallery-item {
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  background: white;
  min-height: 300px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item.wide { grid-row: span 2; }
.upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  background: var(--purple);
  font-weight: 800;
  cursor: pointer;
}
#photoUpload { display: none; }

.stars-input { display: flex; gap: 4px; }
.review-form label {
  display: block;
  margin: 16px 0 8px;
  font-weight: 800;
  color: #42234e;
}
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(75,17,111,.18);
  border-radius: 18px;
  padding: 14px 16px;
  background: white;
  outline: none;
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(122,42,163,.12);
}
.stars-input button {
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 2px;
  transition: .15s ease;
}
.stars-input button.active { color: var(--gold); transform: translateY(-1px); }
.form-note { color: var(--muted); font-size: .86rem; margin: 14px 0 0; }
.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  margin-bottom: 20px;
}
.rating-summary strong {
  font-size: 3rem;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}
.rating-summary span { color: var(--gold); font-size: 1.2rem; letter-spacing: .05em; }
.rating-summary small { grid-column: 2; color: var(--muted); }
.reviews-list { display: grid; gap: 12px; }
.review-card {
  padding: 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(75,17,111,.12);
}
.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.review-card strong { color: var(--purple); }
.review-card span { color: var(--gold); white-space: nowrap; }
.review-card p { margin: 0; color: #493b51; }

.mini-reviews { display: grid; gap: 14px; margin: 12px 0 18px; }
.mini-reviews article {
  padding: 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(75,17,111,.10);
}
.mini-reviews strong { display: block; color: var(--purple); }
.mini-reviews span { color: var(--gold); font-size: 1rem; }
.mini-reviews p { margin: 8px 0 0; }

.location-card h2,
.split-card h2,
.cta-box h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.location-card a { color: var(--purple); font-weight: 900; }
.slogan {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--purple) !important;
}
.map-placeholder {
  min-height: 330px;
  border-radius: 26px;
  border: 1px dashed rgba(75,17,111,.26);
  background: linear-gradient(145deg, rgba(243,232,251,.86), rgba(255,250,241,.92));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p {
  margin: 4px 0;
  color: var(--purple);
  font-weight: 900;
  font-size: 1.2rem;
}
.cta-box {
  text-align: center;
  padding: clamp(28px, 5vw, 52px);
}
.cta-box p:not(.eyebrow) { color: var(--muted); max-width: 660px; margin: 10px auto 0; }

.contact-section {
  max-width: 900px;
}
.contact-card {
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
}
.contact-logo-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.contact-logo-wrap img {
  width: min(100%, 330px);
}
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--purple);
}
.contact-card p:not(.eyebrow) {
  color: var(--muted);
}
.contact-buttons {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 30px auto 0;
}
.contact-button {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 18px;
  border-radius: 24px;
  color: white;
  box-shadow: 0 18px 34px rgba(75,17,111,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(75,17,111,.24);
}
.contact-button span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.18);
  font-size: 1.8rem;
  font-weight: 900;
}
.contact-button strong {
  display: block;
  font-size: 1.2rem;
}
.contact-button small {
  display: block;
  margin-top: 4px;
  opacity: .92;
  letter-spacing: .02em;
}
.whatsapp-button {
  background: linear-gradient(135deg, #2bb741, #168c2a);
}
.phone-button {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
}
.instagram-button {
  background: linear-gradient(135deg, #833ab4, #c13584 48%, #f77737);
}

.footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 26px 0 80px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(185, 137, 45, .18);
}
.footer img { width: 170px; margin: 0 auto 16px; }

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 18px 36px rgba(75,17,111,.32);
  font-size: 1.7rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(19, 8, 29, .86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 20px; box-shadow: 0 22px 80px rgba(0,0,0,.45); }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.16);
  font-size: 2rem;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .hero,
  .features-grid,
  .packages-grid,
  .comments-layout,
  .location-card,
  .split-preview-section,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .package-card.featured { transform: none; }
  .gallery-item.wide { grid-row: auto; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(255,250,241,.97);
    box-shadow: var(--shadow);
    border: 1px solid rgba(185,137,45,.24);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .navbar { top: 8px; border-radius: 26px; }
  .brand span { display: none; }
  .brand img { width: 76px; }
  .site-header, .inner-page-header { width: min(calc(100% - 20px), var(--container)); }
  .section, .footer { width: min(calc(100% - 20px), var(--container)); }
  .hero { padding-top: 34px; }
  .hero-actions .btn { width: 100%; }
  .wide-btn { width: 100%; }
  .features-grid, .categories-grid { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; }
  .rating-summary small { grid-column: auto; }
  .review-card header { flex-direction: column; align-items: flex-start; }
}


/* Galería actualizada */
.gallery-page-section {
  padding-top: 24px;
}
.gallery-showcase {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(185, 137, 45, .16);
  box-shadow: var(--shadow);
}
.gallery-stage {
  position: relative;
  min-height: clamp(360px, 70vh, 760px);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243,232,251,.9), rgba(255,255,255,.96));
}
.gallery-main-trigger {
  border: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-stage img {
  width: 100%;
  height: clamp(360px, 70vh, 760px);
  object-fit: cover;
  display: block;
}
.gallery-nav,
.lightbox-nav,
.lightbox-close {
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(35, 19, 45, .55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.gallery-nav:hover,
.lightbox-nav:hover,
.lightbox-close:hover {
  transform: translateY(-1px);
  background: rgba(35, 19, 45, .75);
}
.gallery-nav.prev,
.lightbox-nav.prev { left: 16px; }
.gallery-nav.next,
.lightbox-nav.next { right: 16px; }
.gallery-nav { top: calc(50% - 27px); font-size: 1.8rem; }
.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px 4px;
}
.gallery-counter {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--purple);
  background: rgba(122, 42, 163, .08);
}
.gallery-caption {
  margin: 0;
  color: var(--muted);
  text-align: right;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.gallery-thumb {
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active {
  border-color: rgba(122, 42, 163, .85);
  box-shadow: 0 18px 44px rgba(81, 31, 96, .18);
}
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(19, 8, 29, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(1200px, 88vw);
  max-height: 84vh;
  border-radius: 20px;
  box-shadow: 0 22px 80px rgba(0,0,0,.45);
}
.lightbox-close {
  top: 18px;
  right: 22px;
  font-size: 2rem;
}
.lightbox-nav {
  top: calc(50% - 27px);
  font-size: 1.8rem;
}

@media (max-width: 720px) {
  .gallery-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-caption {
    text-align: left;
  }
  .gallery-nav,
  .lightbox-nav,
  .lightbox-close {
    width: 46px;
    height: 46px;
  }
  .gallery-nav { top: calc(50% - 23px); }
  .lightbox-nav { top: calc(50% - 23px); }
  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* gallery-slider-updated */
.gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2vw, 22px);
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid rgba(185, 137, 45, .16);
  box-shadow: var(--shadow);
}
.slider-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #1f1426;
  cursor: zoom-in;
}
.slider-frame img {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 420px;
  object-fit: contain;
  background: radial-gradient(circle at top left, rgba(142,76,192,.28), transparent 34%), linear-gradient(135deg, #170c1f, #33203d);
}
.slider-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: white;
  background: rgba(24, 10, 33, .64);
  backdrop-filter: blur(12px);
}
.slider-frame figcaption span { font-weight: 700; }
.slider-frame figcaption small { white-space: nowrap; color: #f6e6bc; font-weight: 900; }
.slider-arrow {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 16px 28px rgba(111,44,145,.22);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.slider-arrow:hover { transform: translateY(-2px); box-shadow: 0 22px 36px rgba(111,44,145,.28); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.gallery-thumb {
  position: relative;
  height: 130px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(81, 31, 96, .11);
  transition: transform .2s ease, border-color .2s ease;
}
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox .lightbox-close {
  position: absolute; top: 18px; right: 22px; border: 0; width: 48px; height: 48px; border-radius: 50%;
  color: white; background: rgba(255,255,255,.16); font-size: 2rem; cursor: pointer;
}
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); border: 0; width: 58px; height: 58px; border-radius: 50%;
  color: white; background: rgba(255,255,255,.18); backdrop-filter: blur(10px); font-size: 2.6rem; line-height: 1; cursor: pointer;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); max-width: min(780px, 82vw);
  margin: 0; padding: 12px 18px; border-radius: 999px; color: white; background: rgba(24, 10, 33, .62);
  text-align: center; backdrop-filter: blur(10px);
}
@media (max-width: 760px) {
  .gallery-slider { grid-template-columns: 1fr; }
  .slider-arrow {
    position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 2rem;
  }
  .slider-prev { left: 18px; }
  .slider-next { right: 18px; }
  .slider-arrow:hover { transform: translateY(-50%); }
  .slider-frame img { min-height: 360px; height: 64vh; }
  .slider-frame figcaption { flex-direction: column; align-items: flex-start; }
  .gallery-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lightbox-arrow { width: 48px; height: 48px; font-size: 2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-caption { border-radius: 18px; bottom: 12px; }
}


/* Galería final con fotos nuevas y flechas */
.gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2vw, 22px);
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid rgba(185, 137, 45, .16);
  box-shadow: var(--shadow);
}
.slider-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #1f1426;
  cursor: zoom-in;
}
.slider-frame img {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 430px;
  object-fit: contain;
  background: radial-gradient(circle at top left, rgba(142,76,192,.28), transparent 34%), linear-gradient(135deg, #170c1f, #33203d);
}
.slider-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: white;
  background: rgba(24, 10, 33, .64);
  backdrop-filter: blur(12px);
}
.slider-frame figcaption span { font-weight: 700; }
.slider-frame figcaption small { white-space: nowrap; color: #f6e6bc; font-weight: 900; }
.slider-arrow {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 16px 28px rgba(111,44,145,.22);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.slider-arrow:hover { transform: translateY(-2px); box-shadow: 0 22px 36px rgba(111,44,145,.28); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.gallery-thumb {
  position: relative;
  height: 130px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(81, 31, 96, .11);
  transition: transform .2s ease, border-color .2s ease;
}
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.gallery-photo {
  border: 0;
  padding: 0;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-photo:hover img { transform: scale(1.035); }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox .lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.16);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  max-width: min(780px, 82vw);
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: rgba(24, 10, 33, .62);
  text-align: center;
  backdrop-filter: blur(10px);
}
@media (max-width: 760px) {
  .gallery-slider { grid-template-columns: 1fr; }
  .slider-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
  .slider-prev { left: 18px; }
  .slider-next { right: 18px; }
  .slider-arrow:hover { transform: translateY(-50%); }
  .slider-frame img { min-height: 360px; height: 64vh; }
  .slider-frame figcaption { flex-direction: column; align-items: flex-start; }
  .gallery-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-photo { height: 220px; }
  .lightbox-arrow { width: 48px; height: 48px; font-size: 2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-caption { border-radius: 18px; bottom: 12px; }
}

/* Google Maps embebido */
.map-embed {
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(75,17,111,.16);
  box-shadow: 0 18px 40px rgba(81, 31, 96, .12);
  background: linear-gradient(145deg, rgba(243,232,251,.86), rgba(255,250,241,.92));
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.welcome-only-section {
  padding-top: 54px;
}

.map-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(122,42,163,.08);
  border: 1px solid rgba(122,42,163,.14);
  color: var(--purple) !important;
}

/* Optimización responsiva automática: teléfono / tablet / computadora */
html { -webkit-text-size-adjust: 100%; }
body[data-device="mobile"] .navbar,
body[data-device="tablet"] .navbar {
  max-width: calc(100vw - 20px);
}
body[data-device="desktop"] .nav-links {
  display: flex;
}
body[data-device="mobile"] .hero-card img {
  min-height: 300px;
}
body[data-device="mobile"] .floating-badge {
  position: static;
  margin: 12px auto 0;
  width: 100%;
  border-radius: 18px;
}
body[data-device="mobile"] .whatsapp-float {
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
}

@media (min-width: 1200px) {
  .site-header,
  .inner-page-header,
  .section,
  .footer {
    width: min(calc(100% - 64px), 1240px);
  }
  .hero-home {
    min-height: calc(100vh - 140px);
  }
  .hero-card img {
    min-height: 520px;
  }
}

@media (min-width: 921px) and (max-width: 1199px) {
  .site-header,
  .inner-page-header,
  .section,
  .footer {
    width: min(calc(100% - 36px), 1060px);
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
  .hero-card img {
    min-height: 420px;
  }
  .nav-links a {
    padding: 10px 12px;
    font-size: .95rem;
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .site-header,
  .inner-page-header,
  .section,
  .footer {
    width: min(calc(100% - 28px), 820px);
  }
  .hero-home {
    min-height: auto;
  }
  .hero-card img {
    min-height: 390px;
    max-height: 560px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .contact-buttons {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }
  .site-header,
  .inner-page-header,
  .section,
  .footer {
    width: min(calc(100% - 18px), var(--container));
  }
  .navbar {
    padding: 10px 12px;
    border-radius: 22px;
  }
  .nav-links {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .brand img {
    width: 64px;
  }
  .hero-content,
  .feature-card,
  .package-card,
  .category-card,
  .split-card,
  .cta-box,
  .review-form,
  .reviews-panel,
  .location-card,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }
  .hero-logo {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1,
  .page-hero h1,
  .section-title h2,
  .location-card h2,
  .cta-box h2,
  .split-card h2,
  .contact-card h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
    line-height: 1.05;
  }
  .hero-text,
  .section-title p,
  .location-card p,
  .split-card p,
  .category-card p,
  .feature-card p {
    font-size: .98rem;
  }
  .hero-card {
    padding: 10px;
    border-radius: 22px;
  }
  .hero-card img {
    min-height: 300px;
    max-height: 440px;
    border-radius: 18px;
  }
  .features-grid,
  .categories-grid,
  .split-preview-section,
  .comments-layout,
  .location-card,
  .packages-grid,
  .gallery-grid-modern {
    grid-template-columns: 1fr !important;
  }
  .btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 18px;
  }
  .included-items span {
    width: 100%;
  }
  .package-head strong {
    font-size: 3.15rem;
  }
  .map-embed,
  .map-embed iframe {
    min-height: 330px;
  }
  .contact-button {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 15px;
  }
  .contact-button span {
    width: 50px;
    height: 50px;
  }
  .contact-button small {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .page-hero {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero-actions {
    gap: 10px;
  }
  .gallery-thumbs {
    grid-template-columns: 1fr;
  }
  .gallery-thumb {
    height: 165px;
  }
  .slider-frame img {
    min-height: 300px;
    height: 58vh;
  }
  .slider-frame figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 11px 12px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .category-card:hover,
  .gallery-thumb:hover,
  .slider-arrow:hover,
  .gallery-photo:hover img {
    transform: none;
  }
  .nav-links a,
  .btn,
  .slider-arrow,
  .contact-button,
  .gallery-thumb {
    -webkit-tap-highlight-color: rgba(122, 42, 163, .16);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
