:root {
  --black: #0a0d10;
  --black-2: #12161a;
  --yellow: #e8ff2e;
  --yellow-2: #c9e01a;
  --ink: #e9edf1;
  --muted: #9aa5ad;
  --line: rgba(255,255,255,.1);
  --lake: #1a5f52;
  --radius: 18px;
  --maxw: 1180px;
  --ff-display: 'Archivo Black', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.05; letter-spacing: -.01em; margin: 0 0 .4em; }
p { margin: 0 0 1em; color: var(--muted); }
ul { padding: 0; margin: 0; list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.eyebrow.center { display: block; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: #0a0d10; box-shadow: 0 8px 24px rgba(232,255,46,.25); }
.btn-primary:hover { background: var(--yellow-2); box-shadow: 0 12px 30px rgba(232,255,46,.35); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.35); color: var(--ink); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.25); color: var(--ink); width: 100%; justify-content: center; margin-top: 8px; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-wa { background: #1ebe5d; color: #fff; padding: 11px 20px; font-size: 14px; }
.btn-wa .ico { width: 18px; height: 18px; }
.btn-wa:hover { background: #17a34e; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 160;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled { background: rgba(10,13,16,.85); backdrop-filter: blur(12px); padding: 12px 0; border-bottom: 1px solid var(--line); }
body:not(.has-hero) .nav { background: rgba(10,13,16,.92); backdrop-filter: blur(12px); padding: 12px 0; border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 16px; letter-spacing: .02em; flex-shrink: 0; }
.brand-icon { font-size: 22px; }
.brand-text em { color: var(--yellow); font-style: normal; }
.brand-logo { height: 50px; width: auto; display: block; }
.footer-logo { height: 72px; }
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--muted); position: relative; padding: 4px 0; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--yellow); }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; position: relative; z-index: 220; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(5,7,9,.5); opacity: 0; transition: opacity .35s ease;
}
.nav-backdrop.open { display: block; opacity: 1; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,13,16,.55) 0%, rgba(10,13,16,.35) 45%, rgba(10,13,16,.9) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 0 24px; }
.hero h1 { font-size: clamp(34px, 6.4vw, 78px); color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.text-accent { color: var(--yellow); }
.hero-sub { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.85); max-width: 560px; margin: 18px auto 30px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span { display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 20px; position: relative; }
.scroll-cue span::before {
  content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  background: var(--yellow); border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 70% { top: 22px; opacity: 0; } 100% { top: 8px; opacity: 0; } }

/* ===== SPLIT LAYOUT ===== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.media-tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(10,13,16,.75);
  backdrop-filter: blur(6px); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--line);
}
.split-text h2 { font-size: clamp(28px, 3.6vw, 44px); }
.lead { font-size: 17px; color: var(--muted); max-width: 480px; }
.feature-list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.feature-ico { width: 38px; height: 38px; display: grid; place-items: center; background: var(--black-2); border-radius: 12px; font-size: 17px; flex-shrink: 0; border: 1px solid var(--line); }

/* video showcase */
.video-showcase { margin-top: 90px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.video-showcase.reverse { grid-template-columns: 1.2fr .8fr; }
.video-showcase.reverse .video-frame { margin-left: auto; }
@media (max-width: 900px) { .video-showcase.reverse .video-frame { order: -1; margin-left: 0; } }
.video-frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 9/16; max-width: 320px; box-shadow: 0 30px 60px rgba(0,0,0,.5); border: 1px solid var(--line); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-caption h3 { font-size: clamp(24px, 3vw, 34px); }

/* ===== TARIFAS ===== */
.tarifas { background: var(--black-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; max-width: 1080px; margin: 50px auto 0; }
.price-card {
  background: var(--black); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; position: relative; transition: transform .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(232,255,46,.4); }
.price-card.featured { border-color: var(--yellow); background: linear-gradient(160deg, #16190e, var(--black)); }
.price-badge { position: absolute; top: -13px; right: 24px; background: var(--yellow); color: #0a0d10; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 100px; }
.price-name { font-weight: 700; color: var(--muted); text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.price-value { font-family: var(--ff-display); font-size: 40px; color: #fff; margin: 6px 0 22px; }
.price-value span { font-family: var(--ff-body); font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.price-card ul li { font-size: 14px; color: var(--ink); padding-left: 22px; position: relative; }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 800; }
.price-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 30px; }

/* ===== GALERIA ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px;
  gap: 14px; margin: 50px 0 46px;
}
.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
.gallery-play {
  position: absolute; inset: 0; display: grid; place-items: center; font-size: 0;
  background: rgba(10,13,16,.18); color: #fff; transition: background .25s ease;
}
.gallery-play::before {
  content: '▶'; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  font-size: 18px; background: rgba(10,13,16,.55); backdrop-filter: blur(2px); padding-left: 4px;
}
.gallery-item:hover .gallery-play { background: rgba(10,13,16,.35); }

.social-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.social-card {
  display: flex; align-items: center; gap: 14px; background: var(--black-2); border: 1px solid var(--line);
  padding: 18px 26px; border-radius: 14px; font-weight: 700; font-size: 14px; transition: border-color .25s ease, transform .25s ease;
  flex: 1 1 260px; max-width: 320px;
}
.social-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.social-ico { font-size: 24px; }
.social-card em { font-style: normal; color: var(--yellow); font-weight: 600; font-size: 13px; }

/* ===== UBICACION ===== */
.map-frame { aspect-ratio: 4/5; }
.map-frame iframe { width: 100%; height: 100%; border-radius: var(--radius); filter: grayscale(.2) contrast(1.05); }

/* ===== POLITICAS ===== */
.politicas { background: var(--black-2); }
.accordion { max-width: 760px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--black); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0; color: var(--ink); font-family: var(--ff-body); font-weight: 700;
  font-size: 15.5px; padding: 20px 24px; cursor: pointer; text-align: left;
}
.acc-chevron { color: var(--yellow); font-size: 20px; transition: transform .3s ease; flex-shrink: 0; margin-left: 16px; }
.acc-item.open .acc-chevron { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; }
.acc-item.open .acc-body { max-height: 240px; padding: 0 24px 22px; }
.acc-body p { margin: 0; font-size: 14.5px; }

/* ===== FINAL CTA ===== */
.final-cta { padding-bottom: 70px; overflow: hidden; }
.final-cta h2 { font-size: clamp(28px, 4vw, 46px); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); padding: 46px 0 130px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-brand { justify-content: center; }
.footer-social { display: flex; gap: 22px; font-weight: 600; font-size: 14px; }
.footer-social a:hover { color: var(--yellow); }
.footer-credit { font-size: 12.5px; color: #5c666c; margin: 0; }

/* ===== STICKY JETSKI BAR ===== */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  transform: translateY(0); transition: transform .35s ease;
  border-top: 1px solid rgba(232,255,46,.25);
}
.sticky-bar.hide { transform: translateY(100%); }
.sticky-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, var(--yellow) 0 26px, #0a0d10 26px 52px);
  opacity: .12;
}
.sticky-content {
  position: relative; background: rgba(10,13,16,.92); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px)); max-width: var(--maxw); margin: 0 auto;
}
.sticky-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sticky-ico { font-size: 26px; flex-shrink: 0; }
.sticky-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.sticky-text strong { font-size: 14px; }
.sticky-text span { font-size: 12.5px; color: var(--yellow); font-weight: 700; }
.sticky-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost-sm, .btn-primary-sm { padding: 11px 16px; border-radius: 100px; font-weight: 700; font-size: 13.5px; }
.btn-ghost-sm { border: 1px solid rgba(255,255,255,.25); font-size: 16px; padding: 9px 13px; }
.btn-primary-sm { background: var(--yellow); color: #0a0d10; white-space: nowrap; }
.btn-primary-sm:hover { background: var(--yellow-2); }

/* ===== RESERVE MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 300; background: rgba(5,7,9,.75);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  position: relative; background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; width: 100%; max-width: 420px; box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--muted); font-size: 20px; cursor: pointer; }
.modal-close:hover { color: var(--ink); }
.modal-box h3 { font-size: 22px; color: #fff; }
.modal-sub { font-size: 13.5px; margin-bottom: 22px; }
#reserveForm { display: flex; flex-direction: column; gap: 16px; }
#reserveForm label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }
#reserveForm input {
  background: var(--black); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  color: var(--ink); font-family: var(--ff-body); font-size: 15px; font-weight: 500;
  color-scheme: dark;
}
#reserveForm input:focus { outline: none; border-color: var(--yellow); }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(5,7,9,.94);
  display: none; align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 900px; max-height: 86vh; width: 100%; }
.lightbox-content img, .lightbox-content video { width: 100%; height: 100%; max-height: 86vh; object-fit: contain; border-radius: 12px; margin: 0 auto; }
.lightbox-close { position: absolute; top: 24px; right: 28px; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split, .video-showcase { grid-template-columns: 1fr; }
  .video-frame { max-width: 260px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 76%; max-width: 320px; z-index: 210;
    background: rgba(10,13,16,.98); backdrop-filter: blur(16px); flex-direction: column; justify-content: center;
    gap: 30px; transform: translateX(100%); transition: transform .35s ease; border-left: 1px solid var(--line); }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 18px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .sticky-text strong { font-size: 13px; }
}
@media (max-width: 480px) {
  .section { padding: 76px 0; }
  .sticky-info { max-width: 55%; }
  .sticky-text span { font-size: 11px; }
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header { padding: 190px 0 70px; position: relative; overflow: hidden; }
.page-header h1 { font-size: clamp(30px, 4.6vw, 56px); color: #fff; }
.page-header-sub { max-width: 520px; margin: 0 auto; }
.page-header .container { position: relative; z-index: 1; }
.page-header-bg { position: absolute; inset: 0; z-index: 0; }
.page-header-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,13,16,.6) 0%, rgba(10,13,16,.8) 65%, var(--black) 100%);
}


/* ===== AMBIENT FLOATING BLOBS (decorative, behind content) ===== */
.ambient-blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ambient-blobs span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .2; animation: blobDrift 24s ease-in-out infinite alternate; }
.ambient-blobs span:nth-child(1) { width: 380px; height: 380px; background: var(--yellow); top: -120px; left: -100px; animation-duration: 22s; }
.ambient-blobs span:nth-child(2) { width: 340px; height: 340px; background: var(--lake); top: 30%; right: -110px; animation-duration: 29s; animation-delay: -6s; }
.ambient-blobs span:nth-child(3) { width: 300px; height: 300px; background: var(--yellow-2); bottom: -110px; left: 35%; animation-duration: 33s; animation-delay: -14s; }
.teaser-section > .container, .final-cta > .container { position: relative; z-index: 1; }

@keyframes blobDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 35px) scale(1.15); }
  100% { transform: translate(-35px, -25px) scale(.92); }
}

/* ===== HOME TEASERS ===== */
.teaser-section { padding-top: 90px; display: flex; flex-direction: column; gap: 100px; overflow: hidden; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

.tarifas-teaser { max-width: 720px; }
.mini-price-row { display: flex; gap: 20px; justify-content: center; margin: 40px 0 34px; flex-wrap: wrap; }
.mini-price {
  background: var(--black-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 40px; text-align: center; min-width: 180px;
}
.mini-price.featured { border-color: var(--yellow); }
.mini-price strong { display: block; font-family: var(--ff-display); font-size: 26px; color: #fff; margin-bottom: 6px; }
.mini-price span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.mini-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 40px 0 34px; }
.mini-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); transition: transform .4s ease; }
.mini-gallery img:hover { transform: scale(1.04); }
@media (max-width: 760px) { .mini-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ===== SERVICIOS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 10px; }
.service-card {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(232,255,46,.4); }
.service-card img, .service-card video { width: 100%; height: 340px; object-fit: contain; object-position: center; background: #0a0d10; }
.service-card-body { padding: 30px 28px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.service-card-body h3 { font-size: 22px; color: #fff; margin-top: 2px; }
.service-card-body p { font-size: 14.5px; }
.service-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.service-actions .btn { flex: 1 1 auto; justify-content: center; }
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== NOSOTROS values ===== */
.values-block { margin-top: 100px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.value-card {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; transition: border-color .25s ease, transform .25s ease;
}
.value-card:hover { border-color: rgba(232,255,46,.4); transform: translateY(-4px); }
.value-card .feature-ico { width: 52px; height: 52px; font-size: 22px; margin: 0 auto 16px; }
.value-card h3 { font-size: 18px; color: #fff; }
.value-card p { font-size: 14px; margin: 0; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }

/* ===== CAROUSEL LIGHTBOX ===== */
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.2); color: #fff;
  font-size: 24px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(232,255,46,.25); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-counter {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 13px; background: rgba(0,0,0,.5);
  padding: 3px 12px; border-radius: 20px;
}
.lightbox-content { position: relative; }
