/* ================================================================
   WS COVER — PREMIUM CSS v2
   Mediterranean Dark Luxury · Editorial · Aspiracional
   Tipografía: Cormorant Garamond + DM Sans
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --void:      #050d1a;
  --deep:      #081525;
  --surface:   #0d1e35;
  --rim:       rgba(255,255,255,.07);
  --rim-hover: rgba(255,255,255,.14);

  --ivory:     #f0ebe0;
  --ivory-mid: #c8c3b8;
  --ivory-dim: #8a8780;

  --pool:      #0099cc;
  --pool-hi:   #22b8e8;
  --pool-lo:   #006b99;

  --sand:      #c8a97e;
  --sand-lo:   #8a7358;

  --white: #fff;
  --black: #000;

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.4, 0, 0.2, 1);
  --t1: 150ms; --t2: 280ms; --t3: 420ms; --t4: 600ms; --t5: 900ms;

  --header-h: 76px;
  --max-w: 1320px;

  --r:   8px; --r-lg: 16px; --r-xl: 24px; --r-full: 999px;

  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.5);
  --glow-pool: 0 0 48px rgba(0,153,204,.2);
}

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ivory-mid);
  background: var(--void);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── Tipografía ───────────────────────────────────────────── */
.t-hero {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--ivory);
}

.t-xl {
  font-family: var(--font-d);
  font-size: clamp(2.75rem, 6vw, 6rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.025em;
  color: var(--ivory);
}

.t-lg {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ivory);
}

.t-md {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
}

.t-label {
  font-family: var(--font-b);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
}

.t-body { font-size: 1rem; line-height: 1.75; color: var(--ivory-mid); }
.t-sm { font-size: .875rem; line-height: 1.65; color: var(--ivory-dim); }

.t-pool { color: var(--pool-hi); }
.t-sand { color: var(--sand); }
.t-ivory { color: var(--ivory); }
em { font-style: italic; color: var(--pool-hi); }

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .9rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-b);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all var(--t3) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--pool);
  color: var(--white);
  border-color: var(--pool);
}
.btn-primary:hover {
  background: var(--pool-hi);
  box-shadow: 0 0 32px rgba(0,153,204,.35);
  transform: translateY(-1px);
}

.btn-sand {
  background: var(--sand);
  color: var(--void);
  border-color: var(--sand);
  font-weight: 600;
}
.btn-sand:hover {
  background: #d4b68a;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200,169,126,.25);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(240,235,224,.18);
}
.btn-ghost:hover {
  background: rgba(240,235,224,.06);
  border-color: rgba(240,235,224,.35);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  font-weight: 600;
}
.btn-wa:hover {
  background: #1dba58;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

.btn-lg { padding: 1.125rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .625rem 1.375rem; font-size: .8125rem; }

/* ── Pills ────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .3125rem .875rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.pill-pool { background: rgba(0,153,204,.12); border: 1px solid rgba(0,153,204,.25); color: var(--pool-hi); }
.pill-sand { background: rgba(200,169,126,.1); border: 1px solid rgba(200,169,126,.22); color: var(--sand); }
.pill-white { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--ivory); }

/* ── Líneas decorativas ───────────────────────────────────── */
.line-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rim-hover), transparent);
}

.line-v {
  width: 1px;
  height: 100%;
  background: var(--rim);
}

/* ─────────────────────────────────────────────────────────────
   HEADER
─────────────────────────────────────────────────────────────── */
.ws-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t3) var(--ease), border-color var(--t3);
  border-bottom: 1px solid transparent;
}

.ws-header.scrolled {
  background: rgba(5,13,26,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--rim);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* Logo */
.ws-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--pool);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--t2);
}

.ws-logo:hover .logo-mark { background: var(--pool-hi); }

.logo-text {
  font-family: var(--font-d);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: .01em;
}

.logo-text span { color: var(--pool-hi); }

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--ivory-dim);
  transition: color var(--t2);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--pool);
  transition: right var(--t3) var(--ease);
}

.nav-link:hover, .nav-link.active { color: var(--ivory); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

/* Dropdown */
.nav-dd { position: relative; }

.nav-dd-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .875rem;
  color: var(--ivory-dim);
  transition: color var(--t2);
  cursor: pointer;
  user-select: none;
}

.nav-dd-trigger svg {
  width: 12px; height: 12px;
  transition: transform var(--t2) var(--ease);
}

.nav-dd:hover .nav-dd-trigger,
.nav-dd.open .nav-dd-trigger { color: var(--ivory); }
.nav-dd.open .nav-dd-trigger svg { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 290px;
  background: var(--surface);
  border: 1px solid var(--rim-hover);
  border-radius: var(--r-lg);
  padding: .375rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t3) var(--ease);
  box-shadow: var(--shadow-lg);
}

.nav-dd.open .nav-dd-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  transition: background var(--t1);
}

.nav-dd-item:hover { background: rgba(255,255,255,.05); }

.nav-dd-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(0,153,204,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pool-hi);
  flex-shrink: 0;
}

.nav-dd-icon svg { width: 18px; height: 18px; }

.nav-dd-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}

.nav-dd-sub {
  font-size: .75rem;
  color: var(--ivory-dim);
  margin-top: 1px;
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.header-phone {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ivory-mid);
  transition: color var(--t2);
  display: flex;
  align-items: center;
  gap: .375rem;
}

.header-phone:hover { color: var(--ivory); }
.header-phone svg { width: 14px; height: 14px; color: var(--pool-hi); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}

.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: all var(--t3) var(--ease);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--void);
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + 1rem);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t3) var(--ease);
  overflow-y: auto;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-link {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 300;
  color: var(--ivory);
  padding: .875rem 0;
  border-bottom: 1px solid var(--rim);
  display: block;
  transition: color var(--t2), padding-left var(--t3) var(--ease);
}

.mobile-menu-link:hover {
  color: var(--pool-hi);
  padding-left: .75rem;
}

.mobile-menu-sub {
  font-family: var(--font-b);
  font-size: .875rem;
  color: var(--ivory-dim);
  padding: .5rem 0 .5rem 1rem;
  display: block;
  border-bottom: 1px solid var(--rim);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

/* ─────────────────────────────────────────────────────────────
   HERO — Full viewport cinematic
─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

/* Fondo animado */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--void) 0%, rgba(5,13,26,.6) 40%, rgba(5,13,26,.2) 100%),
    linear-gradient(to right, rgba(5,13,26,.8) 0%, transparent 60%);
  z-index: 1;
}

/* Texto hero */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: flex-end;
}

.hero-left { display: flex; flex-direction: column; gap: 2rem; }

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--sand);
}

.hero-headline { max-width: 780px; }

.hero-sub {
  font-size: clamp(.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--ivory-mid);
  max-width: 520px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rim);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-trust-num {
  font-family: var(--font-d);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ivory);
}

.hero-trust-label {
  font-size: .75rem;
  color: var(--ivory-dim);
  line-height: 1.3;
}

.hero-trust-sep {
  width: 1px;
  height: 28px;
  background: var(--rim-hover);
}

/* Hero derecho — contacto inmediato */
.hero-right {
  background: rgba(13,30,53,.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--rim-hover);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-contact-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.hero-contact-sub {
  font-size: .8125rem;
  color: var(--ivory-dim);
  margin-top: -.5rem;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: var(--ivory-dim);
  letter-spacing: .08em;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rim-hover);
}

.hero-contact-btn {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--rim-hover);
  transition: all var(--t2) var(--ease);
  text-decoration: none;
}

.hero-contact-btn:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--rim-hover);
  transform: translateX(3px);
}

.hero-contact-btn.phone-btn { border-color: rgba(0,153,204,.2); }
.hero-contact-btn.phone-btn:hover { border-color: rgba(0,153,204,.4); }

.hero-contact-btn.wa-btn { border-color: rgba(37,211,102,.2); }
.hero-contact-btn.wa-btn:hover { border-color: rgba(37,211,102,.4); }

.hcb-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-btn .hcb-icon { background: rgba(0,153,204,.15); color: var(--pool-hi); }
.wa-btn .hcb-icon { background: rgba(37,211,102,.15); color: #25d366; }
.hcb-icon svg { width: 20px; height: 20px; }

.hcb-text {}
.hcb-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ivory-dim); font-weight: 600; }
.hcb-value { font-size: 1rem; font-weight: 500; color: var(--ivory); line-height: 1.2; }

.hero-lang-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem;
  border: 1px solid var(--rim);
  border-radius: var(--r);
  font-size: .75rem;
  color: var(--ivory-dim);
  text-align: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  writing-mode: vertical-lr;
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: scrollLine 1.8s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────────────────────────
   TRUST BAR
─────────────────────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  padding: 1.5rem 0;
  background: rgba(13,30,53,.4);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .625rem 2.5rem;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--rim-hover);
}

.trust-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,153,204,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pool-hi);
  flex-shrink: 0;
}

.trust-icon svg { width: 18px; height: 18px; }

.trust-num {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
}

.trust-label {
  font-size: .75rem;
  color: var(--ivory-dim);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────
   STATEMENT — Sección editorial sin contenido
─────────────────────────────────────────────────────────────── */
.statement {
  padding: clamp(5rem, 10vh, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.statement-text {}

.statement-number {
  font-family: var(--font-d);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(0,153,204,.06);
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

.statement-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--rim-hover);
}

.statement-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.statement-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ivory-dim);
}

.photo-slot {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface), var(--deep));
  font-size: .875rem;
  color: var(--ivory-dim);
  gap: .75rem;
  padding: 2rem;
  text-align: center;
}

.photo-slot-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rim-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}

.photo-slot-icon svg { width: 22px; height: 22px; }

/* ─────────────────────────────────────────────────────────────
   PRODUCTOS — Editorial, no cards
─────────────────────────────────────────────────────────────── */
.products {
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.products-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rim);
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rim);
  transition: background var(--t2);
}

.product-row:last-child { border-bottom: 1px solid var(--rim); }

.product-row:hover { background: rgba(255,255,255,.02); }

.product-row-visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
  border-right: 1px solid var(--rim);
}

.product-row.reverse .product-row-visual {
  border-right: none;
  border-left: 1px solid var(--rim);
  order: 2;
}

.product-row.reverse .product-row-info { order: 1; }

.product-row-info {
  padding: clamp(2.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.product-num {
  font-family: var(--font-d);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,.05);
  line-height: 1;
  letter-spacing: -.03em;
}

.product-title {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -.015em;
}

.product-desc {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--ivory-dim);
  max-width: 420px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: .375rem;
}

.product-price-from {
  font-size: .75rem;
  color: var(--ivory-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-price-num {
  font-family: var(--font-d);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--sand);
}

.product-price-unit {
  font-size: .75rem;
  color: var(--ivory-dim);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--pool-hi);
  letter-spacing: .04em;
  transition: gap var(--t2) var(--ease);
}

.product-link:hover { gap: 1rem; }
.product-link svg { width: 16px; height: 16px; }

/* ─────────────────────────────────────────────────────────────
   NÚMEROS — Stats grandes
─────────────────────────────────────────────────────────────── */
.numbers {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--deep);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  position: relative;
  overflow: hidden;
}

.numbers-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-d);
  font-size: clamp(6rem, 20vw, 20rem);
  font-weight: 300;
  color: rgba(0,153,204,.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

.numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.number-item {
  padding: 2.5rem;
  border-right: 1px solid var(--rim);
  text-align: center;
  position: relative;
}

.number-item:last-child { border-right: none; }

.number-value {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -.03em;
}

.number-value em {
  font-style: normal;
  color: var(--pool-hi);
}

.number-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: .875rem;
}

.number-sub {
  font-size: .8125rem;
  color: var(--sand);
  margin-top: .375rem;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIAL — Cita grande
─────────────────────────────────────────────────────────────── */
.testimonial {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-bar {
  width: 2px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  flex-shrink: 0;
  margin-top: .5rem;
}

.testimonial-content {}

.testimonial-quote {
  font-family: var(--font-d);
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
  letter-spacing: -.01em;
}

.testimonial-quote::before { content: '\201C'; color: var(--sand); }
.testimonial-quote::after  { content: '\201D'; color: var(--sand); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pool-lo), var(--pool));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ivory);
}

.testimonial-location {
  font-size: .8125rem;
  color: var(--ivory-dim);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--sand);
  font-size: .875rem;
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────────────────────
   POR QUÉ WS COVER — 4 pilares
─────────────────────────────────────────────────────────────── */
.why {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--deep);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
}

.why-header { margin-bottom: clamp(3rem, 5vh, 4.5rem); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  padding: 2.5rem;
  border-right: 1px solid var(--rim);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background var(--t2);
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,.02); }

.pillar-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--rim-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pool-hi);
  transition: all var(--t2);
}

.pillar:hover .pillar-icon-wrap {
  background: rgba(0,153,204,.1);
  border-color: rgba(0,153,204,.25);
}

.pillar-icon-wrap svg { width: 20px; height: 20px; }

.pillar-title {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}

.pillar-text {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ivory-dim);
}

/* ─────────────────────────────────────────────────────────────
   PROCESO — 3 pasos horizontales
─────────────────────────────────────────────────────────────── */
.proceso {
  padding: clamp(5rem, 8vh, 7rem) 0;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(2.5rem, 4vh, 4rem);
  border: 1px solid var(--rim);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.proceso-step {
  padding: 2.5rem;
  border-right: 1px solid var(--rim);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: background var(--t2);
}

.proceso-step:last-child { border-right: none; }
.proceso-step:hover { background: rgba(255,255,255,.02); }

.proceso-step-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(0,153,204,.12);
  line-height: 1;
  letter-spacing: -.03em;
}

.proceso-step-title {
  font-family: var(--font-d);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ivory);
}

.proceso-step-text {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ivory-dim);
}

.proceso-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--rim-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  z-index: 1;
}

.proceso-arrow svg { width: 12px; height: 12px; }

/* ─────────────────────────────────────────────────────────────
   ZONA DE SERVICIO
─────────────────────────────────────────────────────────────── */
.zona {
  padding: clamp(4rem, 7vh, 6rem) 0;
  background: var(--deep);
  border-top: 1px solid var(--rim);
}

.zona-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.zona-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 1.5rem;
}

.zona-chip {
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid var(--rim-hover);
  font-size: .8125rem;
  color: var(--ivory-dim);
  transition: all var(--t1);
}

.zona-chip:hover {
  border-color: rgba(0,153,204,.25);
  color: var(--pool-hi);
  background: rgba(0,153,204,.05);
}

.zona-chip.highlight {
  border-color: rgba(200,169,126,.25);
  color: var(--sand);
  background: rgba(200,169,126,.05);
}

.zona-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--rim-hover);
  aspect-ratio: 4/3;
  background: var(--surface);
}

.zona-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) brightness(.85) contrast(1.1);
}

/* ─────────────────────────────────────────────────────────────
   CTA FINAL
─────────────────────────────────────────────────────────────── */
.cta-final {
  padding: clamp(5rem, 10vh, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,153,204,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-inner { position: relative; z-index: 1; }

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.cta-final-note {
  margin-top: 1.5rem;
  font-size: .8125rem;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.cta-note-item {
  display: flex;
  align-items: center;
  gap: .375rem;
}

.cta-note-item svg { width: 14px; height: 14px; color: var(--sand); }

/* ─────────────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────────────── */
.ws-footer {
  border-top: 1px solid var(--rim);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rim);
}

.footer-brand-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-heading {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-link {
  font-size: .875rem;
  color: var(--ivory-dim);
  transition: color var(--t1);
}

.footer-link:hover { color: var(--ivory); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--ivory-dim);
  padding: .25rem 0;
}

.footer-contact-item svg {
  width: 15px; height: 15px;
  color: var(--pool-hi);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-link { color: var(--ivory-dim); transition: color var(--t1); }
.footer-contact-link:hover { color: var(--pool-hi); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .8125rem;
  color: var(--ivory-dim);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: .8125rem;
  color: var(--ivory-dim);
  transition: color var(--t1);
}

.footer-legal a:hover { color: var(--ivory); }

/* ─────────────────────────────────────────────────────────────
   WHATSAPP FLOAT
─────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--t3) var(--ease);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
─────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t4) var(--ease), transform var(--t4) var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-item:nth-child(2) { border-right: none; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .nav-burger { display: flex; }

  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .hero-trust-sep { display: none; }

  .statement-inner { grid-template-columns: 1fr; }
  .statement-number { display: none; }

  .product-row { grid-template-columns: 1fr; }
  .product-row-visual { aspect-ratio: 16/9; border-right: none; border-bottom: 1px solid var(--rim); }
  .product-row.reverse .product-row-visual { order: 0; border-left: none; border-bottom: 1px solid var(--rim); }
  .product-row.reverse .product-row-info { order: 0; }

  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-item { padding: 1.75rem; }

  .testimonial-inner { grid-template-columns: 1fr; }
  .testimonial-bar { display: none; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rim); }
  .pillar:last-child { border-bottom: none; }

  .proceso-steps { grid-template-columns: 1fr; }
  .proceso-step { border-right: none; border-bottom: 1px solid var(--rim); }
  .proceso-step:last-child { border-bottom: none; }
  .proceso-arrow { display: none; }

  .zona-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .products-header { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: flex-start; }
  .trust-item { padding: .5rem 1.25rem; }
  .trust-item + .trust-item::before { display: none; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--rim); }
}
