/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0b0b0c;
  --bg-2:      #131314;
  --bg-3:      #1c1c1e;
  --cream:     #f3f1ed;
  --cream-2:   #d8d4cc;
  --cream-3:   #8f8b84;
  --accent:    #f08090;   /* coral — del logo real */
  --accent-2:  #d96b7c;
  --leaf:      #8fce46;   /* verde — del logo real */
  --line:      rgba(243,241,237,0.12);
  --line-soft: rgba(243,241,237,0.06);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --nav-h: 84px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-family: var(--sans); font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 720px) { .container { padding-inline: 2.5rem; } }

.kicker {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-top: .9rem; }
.section-head p { margin-top: 1rem; color: var(--cream-3); font-size: 1.05rem; max-width: 52ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

section { position: relative; background: var(--bg); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  font-family: var(--sans); font-size: .92rem; letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #1a0d10;
  box-shadow: 0 10px 30px -10px rgba(240,128,144,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(240,128,144,.7); }
.btn-ghost {
  border: 1px solid var(--line); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), height .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
@media (max-width: 959px) {
  :root { --nav-h: 68px; }
  /* En mobile el nav siempre es sólido: nunca se mezcla con el hero de atrás */
  .nav {
    background: rgba(11,11,12,.88);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line);
    height: var(--nav-h);
  }
}
.nav.is-scrolled {
  background: rgba(11,11,12,.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  height: 72px;
}
@supports not (backdrop-filter: blur(1px)) {
  .nav.is-scrolled { background: rgba(11,11,12,.98); }
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.nav-logo-text em { color: var(--accent); font-style: italic; }

.nav-links { display: none; gap: 2.2rem; }
.nav-links a {
  font-size: .88rem; letter-spacing: .03em; color: var(--cream-2);
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--cream); }

.nav-cta { display: none; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; width: 28px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; height: 1.5px; background: var(--cream); transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1rem; padding: 2rem;
  max-width: 100%; overflow-x: hidden; overflow-y: auto; box-sizing: border-box;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: clamp(1.2rem, 6vw, 1.5rem); color: var(--cream); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn {
  margin-top: .6rem; width: 100%; max-width: 100%;
  box-sizing: border-box; white-space: normal; text-align: center;
}
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash-mark { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; animation: splashPulse 1.8s ease-in-out infinite; }
@keyframes splashPulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.06); opacity: 1; } }

/* =============================================================
   7. Hero — vídeo controlado por scroll
   ============================================================= */
.scroll-video-hero { position: relative; }
.scroll-video-hero--hero { height: 460vh; }
.scroll-video-hero--duo  { height: 380vh; }
/* Secuencia de fotogramas 9:16 propia en móvil (distinta a la de desktop,
   filmada en vertical) — ver data-frame-canvas / data-frame-dir en main.js */
.is-mobile-only { display: none; }
@media (max-width: 768px) {
  .is-desktop-only { display: none !important; }
  .is-mobile-only { display: block; }
  .scroll-video-hero--hero { height: 280vh; }
  .scroll-video-hero--duo  { height: 220vh; }
  /* La franja de progreso queda pegada al mismo borde inferior donde caen
     los botones del hero (align-items:flex-end) — en una pantalla angosta
     se solapan visualmente. Se oculta en mobile, el scrubbing sigue igual. */
  .scroll-progress-bar { display: none; }
}
.scroll-video-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}
.scroll-progress-bar {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; z-index: 3;
  background: rgba(243,241,237,.14);
}
.scroll-progress-fill { height: 100%; width: 0%; background: var(--accent); }

.hero {
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
  background-image: url('assets/img/hero-poster.webp'); background-size: cover; background-position: center;
}
@media (max-width: 768px) {
  /* El poster de fondo (visible una fracción de segundo mientras carga el
     primer fotograma del canvas) tiene que ser la versión vertical — si no,
     se ve el recorte feo del poster panorámico de PC antes de corregirse. */
  .hero-media { background-image: url('assets/img/hero-mobile-poster.webp'); }
}
.hero-media video, .hero-media img, .hero-media canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-tint {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,.62) 0%, rgba(11,11,12,.42) 38%, rgba(11,11,12,.9) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}
.hero-inner { width: 100%; padding-block: calc(var(--nav-h) + 2rem) 4.5rem; }
.hero-rating {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--cream-2); margin-bottom: 1.2rem;
}
.hero-rating .stars { color: var(--accent); letter-spacing: .1em; }
.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  max-width: 20ch;
  font-style: italic;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub { margin-top: 1.4rem; max-width: 46ch; font-size: 1.1rem; color: var(--cream-2); }
@media (max-width: 539px) {
  /* Título más contenido en mobile: menos líneas, no empuja el contenido por encima del nav */
  .hero-title { font-size: clamp(1.9rem, 8.6vw, 2.5rem); max-width: 13ch; line-height: 1.08; }
  .hero-rating { margin-bottom: .8rem; font-size: .78rem; }
  .hero-sub { margin-top: 1rem; font-size: .95rem; }
  .hero-actions { margin-top: 1.5rem; gap: .7rem; }
  .hero-inner { padding-block: calc(var(--nav-h) + 1.2rem) 2.6rem; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* =============================================================
   8. Nosotros
   ============================================================= */
.about { padding-block: 6rem; }
.about-grid { display: grid; gap: 3rem; }
.about-figure { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about-figure:hover img { transform: scale(1.06); }
.about-quote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--cream); margin-block: 1.6rem; max-width: 40ch; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: var(--cream-2); padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; }
.about-feature svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .85fr 1.15fr; align-items: center; } }

/* =============================================================
   9. Servicios
   ============================================================= */
.services { padding-block: 6rem; background: var(--bg-2); }
.service-groups { display: grid; gap: 1.6rem; }
.service-card {
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  background: var(--bg-3);
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
  transform-style: preserve-3d;
}
.service-card:hover { border-color: rgba(240,128,144,.4); box-shadow: 0 24px 60px -24px rgba(0,0,0,.6); }
.service-card-media { aspect-ratio: 16/10; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.service-card:hover .service-card-media img { transform: scale(1.07); }
.service-card-body { padding: 1.8rem; }
.service-card-body h3 { font-size: 1.7rem; }
.service-card-body .note { color: var(--cream-3); font-size: .88rem; margin-top: .3rem; }
.service-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-block: .7rem; border-top: 1px solid var(--line-soft);
  font-size: .95rem;
}
.service-row .name { color: var(--cream-2); }
.service-row .price { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); white-space: nowrap; }
@media (min-width: 960px) { .service-groups { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   10. Paquete en pareja (video spotlight)
   ============================================================= */
.duo {
  display: flex; align-items: center; isolation: isolate;
}
.duo-media {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
  background-image: url('assets/img/duo-poster.webp'); background-size: cover; background-position: center;
}
@media (max-width: 768px) {
  .duo-media { background-image: url('assets/img/jacuzzi-mobile-poster.webp'); }
}
.duo-media video, .duo-media img, .duo-media canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.duo-tint { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11,11,12,.94) 0%, rgba(11,11,12,.62) 55%, rgba(11,11,12,.3) 100%); }
.duo-content { max-width: 520px; padding-block: 5rem; }
.duo-content h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-style: italic; }
.duo-content p { margin-top: 1.1rem; color: var(--cream-2); max-width: 42ch; }
.duo-price { display: flex; gap: 1.6rem; margin-top: 2rem; flex-wrap: wrap; }
.duo-price-item { border-left: 2px solid var(--accent); padding-left: 1rem; }
.duo-price-item .p-name { font-size: .85rem; color: var(--cream-3); max-width: 22ch; }
.duo-price-item .p-price { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); }

/* =============================================================
   11. Paquetes (cards)
   ============================================================= */
.packages { padding-block: 6rem; }
.package-grid { display: grid; gap: 1.4rem; }
.package-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
  position: relative;
}
.package-card:hover { transform: translateY(-6px); border-color: rgba(143,206,70,.4); }
.package-card h3 { font-size: 1.6rem; }
.package-card .service-list { margin-top: 1.2rem; }
@media (min-width: 960px) { .package-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   12. Ambiente — pinned horizontal showcase
   ============================================================= */
.ambience { padding-block: 6rem 0; background: var(--bg-2); }
.ambience-head { padding-inline: 1.5rem; }
@media (min-width: 720px) { .ambience-head { padding-inline: 2.5rem; } }
.showcase {
  /* Mobile/tablet: carrusel táctil nativo con snap (no hay pin de GSAP debajo de 960px) */
  position: relative; z-index: 2; background: var(--bg-2);
  overflow-x: auto; overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.showcase::-webkit-scrollbar { display: none; }
.showcase-track {
  display: flex; gap: 1.4rem; padding: 2rem 1.5rem 3rem;
  will-change: transform;
}
.showcase-card {
  flex: 0 0 auto; width: min(78vw, 460px); aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden; position: relative;
  scroll-snap-align: start;
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem;
  background: linear-gradient(0deg, rgba(11,11,12,.85), transparent);
  font-size: .85rem; color: var(--cream-2);
}
@media (min-width: 960px) {
  /* Desktop: el pin horizontal de GSAP toma el control, sin scroll táctil propio */
  .showcase { overflow: hidden; scroll-snap-type: none; }
  .showcase-track { gap: 2rem; padding: 2rem 2.5rem 8rem; }
  .showcase-card { width: 420px; }
}

/* =============================================================
   13. Reseñas
   ============================================================= */
.reviews { padding-block: 6rem; text-align: center; }
.reviews-badge { display: inline-flex; flex-direction: column; align-items: center; gap: .6rem; }
.reviews-stars { color: var(--accent); font-size: 1.8rem; letter-spacing: .12em; }
.reviews-score { font-family: var(--serif); font-size: 3.4rem; color: var(--cream); }
.reviews-count { color: var(--cream-3); font-size: .9rem; }
.reviews-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--cream); max-width: 62ch; margin: 2.4rem auto 0; }
.reviews-link { margin-top: 1.6rem; display: inline-block; font-size: .88rem; border-bottom: 1px solid var(--line); padding-bottom: .2rem; transition: border-color .3s, color .3s; }
.reviews-link:hover { color: var(--accent); border-color: var(--accent); }

/* =============================================================
   14. Ubicación
   ============================================================= */
.location { padding-block: 6rem; background: var(--bg-2); }
.location-grid { display: grid; gap: 2rem; }
.location-info { display: flex; flex-direction: column; gap: 1.4rem; }
.location-row { display: flex; gap: 1rem; align-items: flex-start; }
.location-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.location-row .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-3); }
.location-row .value { color: var(--cream); font-size: 1.02rem; margin-top: .2rem; }
.location-map { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) invert(.92) contrast(.9); }
@media (min-width: 960px) { .location-grid { grid-template-columns: .85fr 1.15fr; } .location-map { aspect-ratio: auto; height: 100%; min-height: 380px; } }

/* =============================================================
   15. CTA final
   ============================================================= */
.final-cta { padding-block: 7rem; text-align: center; position: relative; overflow: clip; }
.final-cta-halo {
  position: absolute; inset: -40% -10% -60% -10%; z-index: -1;
  background: radial-gradient(45% 40% at 50% 40%, rgba(240,128,144,.16), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
.final-cta .kicker { justify-content: center; }
.final-cta .kicker::before { display: none; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 1rem; max-width: 20ch; margin-inline: auto; font-style: italic; }
.final-cta p { margin-top: 1.1rem; color: var(--cream-2); }
.final-cta .btn { margin-top: 2.2rem; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { padding-block: 3.5rem 2.5rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-brand span { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: var(--cream-3); font-weight: 400; margin-bottom: 1rem; }
.footer-col p, .footer-col a { display: block; font-size: .92rem; color: var(--cream-2); margin-bottom: .55rem; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s, transform .3s var(--ease-out);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: .8rem; color: var(--cream-3); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); } }

/* =============================================================
   17. WhatsApp + redes sociales flotantes
   ============================================================= */
.float-stack {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.wa-float {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #06210f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .4s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

.social-float {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(11,11,12,.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.6);
  transition: transform .4s var(--ease-bounce), border-color .3s, color .3s;
}
.social-float:hover { transform: scale(1.08); border-color: var(--accent); color: var(--accent); }
.social-float svg { width: 19px; height: 19px; }
@media (max-width: 768px) {
  /* En mobile los íconos sociales flotando encima del contenido tapan la
     web; solo queda el de WhatsApp. Las redes se acceden desde el menú
     (ver .menu-social) — siguen visibles, pero no interrumpen la vista. */
  .social-float { display: none; }
}

.menu-social { display: flex; justify-content: center; gap: .8rem; margin-top: .8rem; width: 100%; }
.menu-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(243,241,237,.06);
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s;
}
.menu-social a:hover { border-color: var(--accent); color: var(--accent); }
.menu-social svg { width: 16px; height: 16px; }

/* =============================================================
   18. Cursor (desktop only)
   ============================================================= */
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px;
  border: 1px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 200; opacity: 0;
  transition: opacity .25s var(--ease-out), width .3s var(--ease-out), height .3s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-active { width: 56px; height: 56px; }
@media (hover: none) { .cursor-ring { display: none; } }

/* =============================================================
   19. Responsive base tweaks
   ============================================================= */
@media (min-width: 540px) { .about-features { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1600px) { .container { max-width: 1360px; } }

/* =============================================================
   20. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash-mark { animation: none; }
}
