/* ============================================================
   Eclipse Tours — styles.css
   Premium Light-Themed Water Sports Website
   Paleta: #124054, #155264, #1a717a, #209497, #2bc9b8
   ============================================================ */

/* ── FUENTES LOCALES ── */
@font-face {
  font-family: 'Coolvetica';
  src: url('assets/fonts/Coolvetica-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Coolvetica';
  src: url('assets/fonts/Coolvetica-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('assets/fonts/CreatoDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('assets/fonts/CreatoDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('assets/fonts/CreatoDisplay-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── RESET Y BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta de colores solicitada */
  --color-1: #124054;
  --color-2: #155264;
  --color-3: #1a717a;
  --color-4: #209497;
  --color-5: #2bc9b8;

  /* Fondos de página y tarjetas (Premium light theme, estilo Mary Wright Travel) */
  --bg: #f0fbfb;             /* extremely pale, soft aqua */
  --bg-2: #e2f7f7;           /* slightly darker light aqua */
  --bg-3: #d1eded;           /* accent light aqua */
  --bg-card: #ffffff;
  --header-bg: rgba(240, 251, 251, 0.9);
  --header-bg-scrolled: rgba(240, 251, 251, 0.96);

  /* Colores de texto */
  --text: var(--color-1);
  --text-soft: var(--color-2);
  --text-mute: #588090;

  /* Líneas, bordes y acentos */
  --line: rgba(32, 148, 151, 0.15);
  --line-light: rgba(32, 148, 151, 0.08);

  /* Sombras y efectos táctiles (efecto sombrita pedido) */
  --shadow-sm: 0 2px 8px rgba(18, 64, 84, 0.06);
  --shadow-md: 0 6px 20px rgba(18, 64, 84, 0.08);
  --shadow-lg: 0 12px 30px rgba(18, 64, 84, 0.12);
  --shadow-btn-primary: 0 4px 14px rgba(26, 113, 122, 0.3);
  --shadow-btn-hover: 0 8px 24px rgba(26, 113, 122, 0.45);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);

  /* Tipografías */
  --font: 'Creato Display', 'Segoe UI', system-ui, sans-serif;
  --font-headings: 'Coolvetica', 'Segoe UI', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: linear-gradient(to bottom, var(--bg) 0%, #ffffff 100%) no-repeat fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILIDADES ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px)  { .container { padding-inline: 3rem; } }
@media (min-width: 1280px) { .container { padding-inline: 5rem; } }

/* ── ANIMACIÓN REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Defensivo: si data-split también, no ocultar */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── TIPOGRAFÍA BASE ── */
h1, h2, h3 {
  font-family: var(--font-headings);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

em { font-style: italic; color: var(--color-3); }

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75em 1.5em;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-headings);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-3);
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--shadow-btn-primary);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-btn-hover);
  background: var(--color-2);
  color: #fff !important;
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--color-3) !important;
  border-color: var(--color-3);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: rgba(26, 113, 122, 0.05);
  color: var(--color-2) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav {
  background: var(--color-3);
  color: #fff !important;
  padding: 0.55em 1.3em;
  font-size: 0.875rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: var(--color-2);
  color: #fff !important;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.55em 1em;
  width: 100%;
  justify-content: center;
}

.btn-large {
  font-size: 1.1rem;
  padding: 1em 2.2em;
}

/* Pulso suave en botones CTA principales */
.btn-pulse {
  animation: pulseCTA 2.5s ease-in-out infinite;
}
@keyframes pulseCTA {
  0%, 100% { box-shadow: 0 0 14px rgba(26,113,122,0.3); }
  50%       { box-shadow: 0 0 28px rgba(26,113,122,0.6), 0 0 40px rgba(43,201,184,0.3); }
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

/* Scrolled or mobile menu open state styling */
.site-header.scrolled,
.site-header.menu-open {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.875rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-headings);
  color: var(--text);
}
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.logo-text strong { color: var(--color-3); }

.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.main-nav a {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 700;
  position: relative;
  padding-block: 0.25rem;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-3);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.main-nav a:hover {
  color: var(--color-3);
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 768px) { .main-nav { display: flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 768px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.mobile-menu.active {
  display: flex;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu a {
  padding: 0.7rem 0;
  color: var(--text-soft);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-primary { margin-top: 0.5rem; text-align: center; justify-content: center; }

/* ── SELECTOR DE IDIOMA ── */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-inline: 0.5rem;
}
.lang-link {
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}
.lang-link:hover {
  color: var(--color-3);
}
.lang-link.active {
  color: var(--color-1);
  pointer-events: none;
  font-weight: 800;
}
.lang-divider {
  color: var(--line);
  font-weight: 400;
  user-select: none;
}

.mobile-lang-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
}
.mobile-lang-selector .lang-link {
  color: var(--text-soft);
}
.mobile-lang-selector .lang-link.active {
  color: var(--color-3);
  font-weight: 800;
}
.mobile-lang-selector .lang-divider {
  color: var(--line);
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 94svh; /* Increased to push the bottom transition lower */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-block: 8rem 6rem;
  background-image: url('assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 41, 0.88) 0%,
    rgba(18, 64, 84, 0.65) 60%,
    rgba(18, 64, 84, 0.25) 88%,
    var(--bg) 100%
  );
  z-index: 1;
}

/* Partículas simples (dots) */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: floatParticle 8s ease-in-out infinite;
}
.hero-particles::before {
  width: 6px; height: 6px;
  background: var(--color-5);
  top: 20%; left: 15%;
  box-shadow: 0 0 10px var(--color-5),
    180px 80px 0 3px rgba(43,201,184,0.6),
    400px -30px 0 2px rgba(32,148,151,0.5),
    -100px 200px 0 4px rgba(43,201,184,0.4);
  animation-delay: 0s;
}
.hero-particles::after {
  width: 4px; height: 4px;
  background: var(--color-5);
  top: 60%; left: 70%;
  box-shadow: 0 0 10px var(--color-5),
    -120px -60px 0 2px rgba(43,201,184,0.5),
    200px -100px 0 3px rgba(32,148,151,0.4);
  animation-delay: -4s;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.2); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-5);
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(10, 31, 41, 0.6);
}
.hero-title em {
  color: var(--color-5);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 60ch;
  text-shadow: 0 2px 12px rgba(10, 31, 41, 0.5);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.45em 1.1rem;
  background: rgba(18, 64, 84, 0.75);
  border: 1px solid rgba(43, 201, 184, 0.45);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(18, 64, 84, 0.15);
}

.hero .btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  text-shadow: 0 1px 4px rgba(10, 31, 41, 0.3);
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--color-1) !important;
  border-color: #fff;
  text-shadow: none;
}

/* ── SECTION COMPARTIDA ── */
.section-servicios,
.section-trust,
.section-ubicacion,
.como-reservar {
  padding-block: 6rem;
  background: var(--bg);
}

.section-combos {
  padding-block: 6rem;
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-3);
  margin-bottom: 0.6rem;
  display: block;
}

.section-header h2 { color: var(--text); margin-bottom: 0.75rem; }

.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── TARJETAS DE SERVICIOS ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(18, 64, 84, 0.12);
  border-color: var(--color-3);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-2);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-2);
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35em 0.85em;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.badge-blue   { background: rgba(18, 64, 84, 0.85); color: #fff; border: 1px solid var(--color-4); }
.badge-cyan   { background: rgba(26, 113, 122, 0.85); color: #fff; border: 1px solid var(--color-5); }
.badge-orange { background: rgba(18, 64, 84, 0.85); color: #fff; border: 1px solid var(--color-3); }

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  flex: 1;
}

.card-body h3 { color: var(--color-1); font-family: var(--font-headings); }

.card-tagline {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-block: 0.5rem 1.25rem;
  padding-left: 0;
}
.card-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.4;
}
.card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--color-3);
  font-weight: 900;
  font-size: 0.95rem;
}

/* Pricing tiers */
.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.price-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-4);
}
.price-row--highlight {
  background: rgba(43, 201, 184, 0.08);
  border-color: var(--color-3);
  box-shadow: 0 4px 12px rgba(26, 113, 122, 0.1);
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.1rem;
}

.price-time {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-1);
  line-height: 1;
}
.price-tour-note {
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-top: 0.1rem;
  line-height: 1.25;
}

/* Override btn inside price row */
.price-row .btn {
  width: auto;
  padding: 0.45em 1.25rem;
  font-size: 0.85rem;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  background: transparent;
  color: var(--color-3) !important;
  border: 2px solid var(--color-3);
}
.price-row .btn:hover {
  background: var(--color-3);
  color: #fff !important;
  border-color: var(--color-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.price-row--highlight .btn {
  background: var(--color-3);
  color: #fff !important;
  border-color: var(--color-3);
  box-shadow: var(--shadow-btn-primary);
}
.price-row--highlight .btn:hover {
  background: var(--color-1);
  color: #fff !important;
  border-color: var(--color-1);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}/* ── GALERÍA DE IMÁGENES EN TARJETAS ── */
.card-gallery {
  position: relative;
  overflow: hidden;
}
.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-slides img.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-2);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: scale(1);
}
.gallery-slides img.slide.active {
  opacity: 1;
  z-index: 2;
}
.service-card:hover .gallery-slides img.slide.active {
  transform: scale(1.05);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 64, 84, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff !important;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0.85; /* Visible por defecto para móvil y escritorio */
  transition: opacity var(--transition), background var(--transition), transform var(--transition);
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
}
.service-card:hover .gallery-nav {
  opacity: 1;
}
.gallery-nav:hover {
  background: var(--color-3);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
  color: #fff !important;
}
.gallery-nav.prev {
  left: 0.75rem;
}
.gallery-nav.next {
  right: 0.75rem;
}
.gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(18, 64, 84, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.gallery-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.gallery-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ── ¿CÓMO RESERVAR? ── */
.reserve-banner {
  background: rgba(43, 201, 184, 0.05);
  border: 1px dashed var(--color-4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  max-width: 820px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.reserve-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.reserve-banner-text {
  font-size: 0.95rem;
  color: var(--color-1);
  line-height: 1.5;
}
.reserve-banner-text strong {
  color: var(--color-3);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(18, 64, 84, 0.12);
  border-color: var(--color-3);
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--color-1);
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-4);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.step-card:hover .step-num {
  background: var(--color-3);
  color: #fff;
  border-color: var(--color-3);
}

.step-title {
  font-family: var(--font-headings);
  color: var(--color-1);
  font-size: 1.25rem;
  font-weight: 700;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ── COMBOS ── */
.combos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 820px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .combos-grid { grid-template-columns: 1fr 1fr; }
}

.combo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.combo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(18, 64, 84, 0.12);
  border-color: var(--color-3);
}
.combo-card--featured {
  border-color: var(--color-3);
  background: linear-gradient(160deg, rgba(43,201,184,0.05) 0%, var(--bg-card) 60%);
  box-shadow: 0 4px 20px rgba(26,113,122,0.12);
}

.combo-popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-3);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35em 0.85em;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.combo-ribbon {
  display: inline-flex;
  align-items: center;
  background: var(--color-5);
  color: var(--color-1);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35em 0.9em;
  border-radius: 50px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.combo-ribbon--big { font-size: 0.8rem; padding: 0.4em 1em; }

.combo-header { display: flex; flex-direction: column; gap: 0.25rem; }
.combo-icon { font-size: 2rem; }
.combo-header h3 { color: var(--color-1); font-size: 1.3rem; }
.combo-for { font-size: 0.85rem; color: var(--text-mute); }

.combo-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.combo-includes li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.combo-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-3);
  font-weight: 700;
  font-size: 0.95rem;
  top: 0.15em;
}

.combo-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.combo-old {
  font-size: 0.82rem;
  color: var(--text-mute);
}
.combo-old s { text-decoration: line-through; }

.combo-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.combo-new {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-1);
  line-height: 1;
}
.combo-saving {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-1);
  background: rgba(43, 201, 184, 0.15);
  border: 1px solid var(--color-5);
  border-radius: 50px;
  padding: 0.25em 0.85em;
}

.combo-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
}

/* ── TRUST / CONFIANZA ── */
.section-trust {
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon { font-size: 2rem; line-height: 1; }

.trust-stat {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.trust-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-3);
  line-height: 1;
}
.trust-plus { font-size: 1.4rem; font-weight: 800; color: var(--color-3); }

.trust-stars {
  color: #fbc02d;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-mute);
  font-weight: 600;
  text-align: center;
}

/* Testimonios */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--color-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  font-style: italic;
}
.testimonial cite {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-3);
  font-style: normal;
}

/* ── UBICACIÓN ── */
.section-ubicacion {
  background: var(--bg);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .location-wrapper { grid-template-columns: 1fr 1fr; align-items: center; }
}

.location-info {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.location-info:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-4);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.loc-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.location-detail strong { display: block; font-size: 0.95rem; color: var(--color-3); margin-bottom: 0.25rem; }
.location-detail p { font-size: 0.9rem; color: var(--text-soft); }

.map-btn { align-self: flex-start; }

/* Mapa card */
/* Mapa card / iframe wrapper */
.map-card-iframe-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.map-card-iframe-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-4);
}

.map-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.map-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.map-visual {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.map-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(26, 113, 122, 0.04);
  border: 1px solid rgba(26, 113, 122, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: mapRipple 3s ease-in-out infinite;
}
.map-visual::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(26, 113, 122, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: mapRipple 3s ease-in-out infinite 1s;
}
@keyframes mapRipple {
  0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.map-pin-icon { font-size: 2.5rem; position: relative; z-index: 1; }
.map-name { font-size: 1.1rem; font-weight: 700; color: var(--color-1); position: relative; z-index: 1; }
.map-subname { font-size: 0.85rem; color: var(--text-mute); position: relative; z-index: 1; }

.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-3);
}
.map-arrow {
  transition: transform var(--transition);
}
.map-card:hover .map-arrow { transform: translateX(4px); }

/* ── CTA FINAL ── */
.section-cta {
  background: var(--color-1);
  color: #fff;
  padding-block: 6rem;
}

.cta-box {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-box h2 { color: #fff; }
.cta-sub { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: 4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand .logo { font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-nav { flex-direction: column; gap: 0.4rem; }
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-mute);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-3); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-mute);
  align-self: flex-end;
}
.footer-copy a { color: var(--color-3); text-decoration: underline; }

/* ── WHATSAPP FLOTANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.wa-icon { flex-shrink: 0; }
.wa-tooltip { white-space: nowrap; }

/* ── ACCESIBILIDAD ── */
:focus-visible {
  outline: 2px solid var(--color-3);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── GALERÍA INTERACTIVA ── */
.section-galeria {
  padding-top: 6rem;
  padding-bottom: 0.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line-light);
  overflow: hidden;
}

.section-trust {
  padding-top: 1rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  color: var(--text-soft);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-3);
  color: var(--color-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active {
  background: var(--color-3);
  border-color: var(--color-3);
  color: #fff !important;
  box-shadow: var(--shadow-btn-primary);
}

.gallery-slider-wrap {
  position: relative;
  width: 100%;
}

.gallery-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-block: 0.5rem 1.25rem;
  width: 100%;
  scrollbar-width: none; /* Firefox */
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.gallery-item-card {
  flex: 0 0 calc(33.333% - 1rem); /* Exactly 3 visible on desktop, no cut-off */
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), box-shadow var(--transition);
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1100px) {
  .gallery-item-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 visible on smaller desktop/tablet */
  }
}

@media (max-width: 600px) {
  .gallery-item-card {
    flex: 0 0 100%; /* 1 visible on mobile */
  }
}

.gallery-item-card.hide {
  display: none !important;
}

.gallery-slider-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  color: var(--color-3);
  font-size: 1.15rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  flex-shrink: 0;
}

.gallery-slider-btn:hover {
  background: var(--color-3);
  border-color: var(--color-3);
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-slider-btn:active {
  transform: scale(0.95);
}

@media (min-width: 769px) {
  .gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .gallery-slider-btn.prev {
    left: -2.5rem;
  }
  .gallery-slider-btn.next {
    right: -2.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-slider-btn {
    display: none; /* solo touch en móviles */
  }
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-card);
  transition: transform 0.6s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 64, 84, 0.85) 0%, rgba(18, 64, 84, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.gallery-category-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-5);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.gallery-item-title {
  color: #fff;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.gallery-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item-card:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-item-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-card:hover .gallery-zoom-icon {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

/* ── LIGHTBOX MODAL ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 32, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 80vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.lightbox-modal.active .lightbox-content img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: #fff;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.25rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  .lightbox-nav {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
  .lightbox-caption {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* ── BURBUJAS INTERACTIVAS Y LUPA CARTOON ── */
.bubble {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(43, 201, 184, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.03), 0 4px 8px rgba(43, 201, 184, 0.08);
  pointer-events: auto;
  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(0.5px) saturate(1.1);
  -webkit-backdrop-filter: blur(0.5px) saturate(1.1);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.bubble.pop {
  animation: bubblePop 0.25s ease-out forwards;
  pointer-events: none;
}

@keyframes bubblePop {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* Efecto lupa en los elementos de texto */
.magnify-text {
  transform: scale(1.08) !important;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.4), 0 0 10px rgba(43, 201, 184, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.hero-title, 
.hero-sub, 
.section-header h2, 
.section-kicker, 
.combo-header h3, 
.step-title,
.service-card h3 {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s var(--transition);
}

