:root {
  /* Paleta oficial — Manual de marca Grupo Lauquen */
  --brand-dark: #264D47;
  --brand-teal: #4CBF8C;
  --brand-grey: #F2F2F2;
  --brand-ink: #373A36;

  --ink: var(--brand-ink);
  --ink-soft: #66706b;
  --accent: var(--brand-teal);
  --accent-dark: #2f8f65;
  --max-width: 1180px;
  --gutter: max(24px, calc((100vw - var(--max-width)) / 2));
  --slide-h: clamp(340px, 62vh, 580px);
  --header-h: 64px;

  --grad-brand: linear-gradient(135deg, #0f2a26 0%, #264D47 38%, #2f8f6c 78%, #4CBF8C 100%);
  --glow: radial-gradient(60% 55% at 85% 10%, rgba(76,191,140,0.55) 0%, rgba(76,191,140,0) 70%),
          radial-gradient(50% 50% at 5% 95%, rgba(76,191,140,0.25) 0%, rgba(76,191,140,0) 70%);

  --font-title: 'Saira', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Vazirmatn', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f4f6f5 0%, #e4eeea 100%) fixed;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; }
a { color: inherit; }
[hidden] { display: none !important; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #12403a 0%, #1d5a4d 55%, #2a8467 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 18px rgba(10,40,34,0.25);
  color: #fff;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-logo { height: 32px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.whatsapp-btn {
  background: #fff;
  color: var(--brand-dark);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.28); }

.edit-toggle-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.edit-toggle-btn:hover { border-color: #fff; }
.edit-toggle-btn.is-active { background: var(--accent); border-color: var(--accent); }

.save-status { font-size: 12px; color: #cfe6dd; white-space: nowrap; }
.save-status:empty { display: none; }
.save-status--error { color: #ffb4a8; }

/* ========== BIENVENIDA ========== */
.home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: url(../assets/isotipo-watermark.png) no-repeat 104% 50% / auto 88%, var(--grad-brand);
  color: #fff;
  overflow: hidden;
}
.home-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  text-align: center;
}
.home-eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.home-title {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.home-title span {
  background: linear-gradient(90deg, #ffffff 0%, #b9f0d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-ask {
  margin: 0 0 44px;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
}
.home-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.home-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 150px;
  padding: 20px 22px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(5,25,20,0.25);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-choice:hover, .home-choice:focus-visible {
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 18px 44px rgba(5,25,20,0.35);
  outline: none;
}
.hc-num {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  color: #b9f0d8;
}
.hc-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.hc-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.15;
}
.hc-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.25s ease;
}
.home-choice:hover .hc-arrow { transform: translateX(4px); }

/* ========== PÁGINA DE SERVICIO ========== */
.service-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px var(--gutter);
  background: rgba(244,246,245,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38,77,71,0.1);
  overflow-x: auto;
  scrollbar-width: none;
}
.service-nav::-webkit-scrollbar { display: none; }
.nav-btn {
  flex: 0 0 auto;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--brand-dark);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-btn:hover { background: rgba(38,77,71,0.09); }
.nav-btn--current {
  background: linear-gradient(135deg, #264D47, #2f8f6c);
  color: #fff;
  cursor: default;
}
.nav-btn--current:hover { background: linear-gradient(135deg, #264D47, #2f8f6c); }
.nav-btn--home { margin-right: 10px; padding-left: 4px; color: var(--accent-dark); }
.nav-btn--home:hover { background: transparent; text-decoration: underline; }

.service-hero {
  position: relative;
  background: url(../assets/isotipo-watermark.png) no-repeat 104% 50% / auto 150%, var(--grad-brand);
  color: #fff;
  overflow: hidden;
}
.service-hero-inner { position: relative; padding: 64px var(--gutter) 56px; }
.service-kicker {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b9f0d8;
}
.service-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.service-hero p { margin: 0; max-width: 620px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.82); }
.service-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-jump:empty { display: none; }
.jump-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.jump-btn:hover { background: #fff; color: var(--brand-dark); }

/* Grupos (cada tira) */
.group { padding: 64px 0 40px; scroll-margin-top: 130px; }
.group-head {
  padding: 0 var(--gutter);
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.group-title h2 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: var(--brand-dark);
}
.group-title h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #264D47, #4CBF8C);
}
.group-title p { margin: 14px 0 0; max-width: 620px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.group-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(38,77,71,0.25);
  background: rgba(255,255,255,0.7);
  color: var(--brand-dark);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.arrow-btn:hover { background: linear-gradient(135deg, #264D47, #2f8f6c); color: #fff; border-color: transparent; }

.empty-msg {
  margin: 0 var(--gutter);
  padding: 44px 24px;
  border: 1px dashed rgba(38,77,71,0.3);
  border-radius: 18px;
  background: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
}

/* Tira horizontal */
.strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px var(--gutter) 28px;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: rgba(38,77,71,0.5) transparent;
}
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: rgba(38,77,71,0.4); border-radius: 3px; }

.slide {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slide-media {
  position: relative;
  height: var(--slide-h);
  min-width: 200px;
  background: #cfd8d4;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(15,42,38,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slide-media:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(15,42,38,0.28); }
.slide--large .slide-media { height: calc(var(--slide-h) * 1.18); }
.slide-media img { height: 100%; width: auto; }

.slide-caption {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 15px;
  color: var(--brand-dark);
  padding: 0 4px;
  line-height: 1.3;
  max-width: 420px;
}

.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  pointer-events: none;
}
.muted-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Antes y después */
.compare {
  position: relative;
  height: var(--slide-h);
  border-radius: 18px;
  overflow: hidden;
  user-select: none;
  background: #000;
  box-shadow: 0 10px 30px rgba(15,42,38,0.18);
  --pos: 50%;
}
.slide--large .compare { height: calc(var(--slide-h) * 1.18); }
.compare img { -webkit-user-drag: none; }
.compare .img-after { height: 100%; width: auto; min-width: 260px; }
.compare .img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare-label {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,42,38,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  pointer-events: none;
}
.compare-label--before { left: 14px; }
.compare-label--after { right: 14px; background: rgba(47,143,108,0.75); }
.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  pointer-events: none;
}
.compare-knob {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  pointer-events: none;
}
.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}
.compare-hint {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}
.compare-hint span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15,42,38,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
}

/* Otros servicios */
.other-services {
  position: relative;
  margin-top: 40px;
  padding: 72px var(--gutter) 80px;
  background: var(--grad-brand);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.other-services h2 {
  margin: 0 0 28px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
}
.other-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.other-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.other-btn:hover { background: #fff; color: var(--brand-dark); }
.other-btn--home { background: transparent; border-color: rgba(255,255,255,0.25); }

/* Modo edición */
body.edit-mode .slide-media { cursor: default; }
body.edit-mode .slide-media:hover { transform: none; }
.slide-edit {
  width: 0;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.edit-caption-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #c3cbc7;
  background: rgba(255,255,255,0.9);
  font-size: 14px;
  font-family: var(--font-body);
}
.slide-edit-row { display: flex; gap: 6px; flex-wrap: wrap; }
.edit-btn {
  background: #fff;
  border: 1px solid #c3cbc7;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.edit-btn:hover { border-color: var(--accent); }
.edit-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.edit-btn--danger { background: #d9534f; border-color: #d9534f; color: #fff; margin-left: auto; }

.slide--add .slide-media {
  width: 220px;
  background: rgba(255,255,255,0.5);
  border: 1px dashed rgba(38,77,71,0.45);
  box-shadow: none;
  color: var(--brand-dark);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}
.add-tile-icon { font-size: 30px; line-height: 1; }
.add-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: center;
}
.add-opt:hover { color: var(--accent-dark); }

.compare-dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,20,18,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.compare-dialog-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-dialog-box h3 { margin: 0; font-family: var(--font-title); font-size: 22px; color: var(--brand-dark); }
.compare-dialog-box label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; }
.compare-dialog-box input[type="password"],
.compare-dialog-box input[type="file"] {
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #c3cbc7;
  font-size: 14px;
  font-family: var(--font-body);
}
.confirm-dialog-msg--error { color: #c9433f; font-weight: 600; font-size: 13px; }
.compare-dialog-actions { display: flex; gap: 10px; justify-content: flex-end; }
.compare-dialog-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #c3cbc7;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}
.compare-dialog-actions .primary { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.compare-dialog-actions .primary.danger { background: #d9534f; border-color: #d9534f; }
.confirm-dialog-msg { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink); font-weight: 400; }

/* Footer */
.site-footer {
  background: #0f2a26;
  color: #93b1a7;
  text-align: center;
  padding: 44px 24px;
  font-size: 14px;
  line-height: 1.8;
}
.footer-logo { height: 34px; width: auto; margin: 0 auto 16px; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 17, 0.94);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-content {
  max-width: min(90vw, 1000px);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  background: #000;
}
.lightbox-content .compare { height: 72vh; }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: #e8efec;
  font-family: var(--font-title);
  font-size: 16px;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover, .lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.video-missing {
  width: min(90vw, 800px);
  aspect-ratio: 4 / 3;
  background: #1c3a35;
  color: #cfe0da;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  gap: 8px;
}
.video-missing strong { color: #fff; font-size: 16px; }
.video-missing code { background: rgba(255,255,255,0.08); padding: 2px 8px; border-radius: 4px; font-size: 12px; }

.nl-short { display: none; }

@media (max-width: 800px) {
  :root { --slide-h: clamp(300px, 56vh, 440px); --header-h: 54px; }
  .header-inner { padding: 8px 16px; }
  .brand-logo { height: 24px; }
  .whatsapp-btn { padding: 7px 14px; font-size: 12px; }
  .wa-long { display: none; }
  .edit-toggle-btn { padding: 6px 12px; font-size: 12px; }
  .home-inner { padding: 40px 20px 48px; }
  .home-eyebrow { font-size: 11px; padding: 6px 14px; letter-spacing: 2px; margin-bottom: 16px; }
  .home-title { font-size: 30px; }
  .home-ask { font-size: 14px; margin-bottom: 26px; }
  .home-choices { grid-template-columns: 1fr; gap: 10px; max-width: 330px; margin: 0 auto; }
  .home-choice { flex-direction: row; align-items: center; min-height: 0; gap: 12px; padding: 13px 14px; border-radius: 14px; }
  .home-choice:hover { transform: none; }
  .hc-bottom { flex: 1; align-items: center; }
  .hc-title { font-size: 17px; text-align: left; }
  .hc-arrow { width: 28px; height: 28px; font-size: 14px; }
  .hc-num { font-size: 12px; }
  .service-nav { gap: 2px; padding: 8px 14px; justify-content: center; }
  .nav-btn { padding: 6px 10px; font-size: 13px; }
  .nav-btn--home { margin-right: 4px; padding-left: 0; }
  .nl-full { display: none; }
  .nl-short { display: inline; }
  .service-hero-inner { padding: 36px 20px 32px; }
  .service-hero p { font-size: 15px; }
  .service-jump { gap: 8px; margin-top: 20px; }
  .jump-btn { padding: 7px 14px; font-size: 12px; }
  .group { padding: 40px 0 24px; }
  .group-head { padding: 0 20px; margin-bottom: 20px; }
  .group-title p { font-size: 14px; }
  .group-arrows { display: none; }
  .strip { padding-left: 20px; padding-right: 20px; gap: 12px; scroll-padding-left: 20px; }
  .slide-media, .compare { border-radius: 14px; }
  .play-badge { width: 56px; height: 56px; font-size: 18px; }
  .other-services { padding: 52px 20px 56px; }
  .other-btn { padding: 8px 16px; font-size: 13px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 15px; }
  .lightbox-close { width: 38px; height: 38px; font-size: 22px; }
  .compare-knob { width: 38px; height: 38px; margin: -19px 0 0 -19px; font-size: 16px; }
}

/* Botón flotante de WhatsApp */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0;
  height: 54px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fc27f, #1f8f63);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15,60,45,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,60,45,0.5); }
.wa-fab svg { flex: 0 0 auto; }
.wa-fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  transition: max-width 0.3s ease, margin 0.3s ease;
}
.wa-fab:hover .wa-fab-label { max-width: 140px; margin-left: 10px; }
@media (max-width: 800px) {
  .wa-fab { right: 14px; bottom: 14px; height: 50px; padding: 0 12px; }
  .home { background-position: 135% 55%, 0 0; background-size: auto 58%, 100% 100%; }
  .service-hero { background-position: 118% 50%, 0 0; background-size: auto 130%, 100% 100%; }
}
