/* ─── Design tokens — Crema + Salvia ─────────────────────────────────── */
:root {
  --bg: #F4ECE0;
  --surface: #EBE0CE;
  --surface-2: #E3D6C0;
  --surface-3: #D9C9B0;
  --border: #D2C2A6;
  --border-strong: #B8A688;
  --text: #232A45;
  --text-mute: #5A6079;
  --text-dim: #8C92A6;

  --accent: #232A45;
  --accent-soft: rgba(35, 42, 69, 0.10);
  --accent-glow: rgba(35, 42, 69, 0.28);
  --accent-hover: #15192B;
  --accent-2: #5A6079;
  --accent-2-soft: rgba(90, 96, 121, 0.16);
  --accent-warm: #8C92A6;
  --ink: #232A45;

  --wa-green: #25D366;
  --wa-green-2: #128C7E;
  --ig-1: #f09433;
  --ig-2: #e6683c;
  --ig-3: #dc2743;
  --ig-4: #cc2366;
  --ig-5: #bc1888;

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Geist Mono", monospace;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Dark variant — marrón cálido en vez de negro frío */
[data-theme="dark"] {
  --bg: #1F1813;
  --surface: #2A2118;
  --surface-2: #332820;
  --surface-3: #3D3128;
  --border: #4A3D32;
  --border-strong: #6B5848;
  --text: #F2E8D9;
  --text-mute: #B5A795;
  --text-dim: #7F715F;
  --accent: #5A6079;
  --accent-soft: rgba(90, 96, 121, 0.18);
  --accent-glow: rgba(90, 96, 121, 0.35);
  --accent-2: #8C92A6;
  --ink: #D9C9B0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay — sutil sobre el cream para textura papel */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.28 0 0 0 0 0.20 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); position: relative; z-index: 2; }

/* Focus accesible */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Type helpers ───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-mute); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--text-dim);
}
.eyebrow-light { color: rgba(255,255,255,0.75); }
.eyebrow-light::before { background: rgba(255,255,255,0.45); }

.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.018em; line-height: 0.98; font-variation-settings: "opsz" 144, "SOFT" 50; }
.display em { font-style: italic; color: var(--text); font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 100; }
h2.display { font-size: clamp(40px, 6.2vw, 84px); }
h3.display { font-size: clamp(28px, 3.4vw, 44px); }

.desc { font-size: clamp(15px, 1.2vw, 18px); color: var(--text-mute); line-height: 1.55; max-width: 48ch; }

/* Reveal on scroll — avoid clip-path in initial state (breaks IntersectionObserver ratio) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.005em;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
  position: relative;
}
.btn-lg { padding: 18px 26px; font-size: 15px; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 34px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-primary:hover {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 14px 40px -8px var(--accent-glow), inset 0 0 0 1.5px var(--accent);
}
.btn-ghost {
  border: 1px solid var(--border-strong); color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text-mute); }
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,0.35); color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

.wa-icon { width: 16px; height: 16px; }

/* ─── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px var(--gutter);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 25%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  padding-block: 10px;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 72px; width: auto;
  transition: opacity .25s var(--ease), height .3s var(--ease);
}
.nav.scrolled .nav-logo-img { height: 56px; }
@media (max-width: 600px) {
  .nav-logo-img { height: 56px; }
  .nav.scrolled .nav-logo-img { height: 44px; }
}
/* Swap blanco/negro según estado del nav */
.nav-logo-black { display: none; }
.nav.scrolled .nav-logo-white { display: none; }
.nav.scrolled .nav-logo-black { display: block; }
/* Footer logo (siempre negro sobre crema) */
.nav-logo-foot .nav-logo-img { height: 52px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 500;
  transition: color .2s;
}
.nav.scrolled .nav-links a { color: var(--text-mute); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; }
.nav-ig {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  transition: background .2s, transform .2s, color .2s, border-color .2s;
}
.nav.scrolled .nav-ig { color: var(--text); border-color: var(--border-strong); background: transparent; }
.nav-ig:hover { background: linear-gradient(45deg, var(--ig-1), var(--ig-3), var(--ig-5)); border-color: transparent; color: #fff; transform: scale(1.05); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ─── 01 HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 120px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(160deg, #2D2620 0%, #1F1813 60%, #2A2118 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(90, 96, 121, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 20% 90%, rgba(140, 146, 166, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero-content { position: relative; }
.hero-content .eyebrow { margin-bottom: 28px; }
.hero-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(54px, 7.6vw, 108px);
  line-height: 0.94; letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 14ch;
  text-wrap: balance;
  text-shadow: 0 4px 60px rgba(0,0,0,0.35);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-title em {
  font-style: italic; color: inherit; font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  opacity: 0.92;
}

/* ─── iPhone mockup ─── */
.hero-phone {
  position: relative;
  display: block;
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  background: #0a0a0a;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.75),
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 2px #1a1a1a;
  transform: rotate(-3deg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  will-change: transform;
}
.hero-phone:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow:
    0 80px 140px -30px rgba(0,0,0,0.85),
    0 40px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
}
.hero-phone-notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 4;
}
.hero-phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-phone-video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-phone-statusbar {
  position: absolute;
  top: 18px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 28px;
  z-index: 5;
  color: #fff; font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  pointer-events: none;
}
.hero-phone-cell { letter-spacing: 1px; opacity: 0.85; }
.hero-phone-badge {
  position: absolute;
  bottom: -14px; right: -18px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.18);
  z-index: 5;
  transform: rotate(3deg);
}
.hero-phone-badge-ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  box-shadow: 0 12px 28px -8px rgba(221, 42, 123, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
@media (max-width: 980px) {
  .hero-phone { width: 240px; transform: rotate(-2deg); }
  .hero-phone:hover { transform: rotate(0deg) translateY(-4px); }
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, color .2s;
}
.hero-handle:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: #fff; }
.handle-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 12px var(--wa-green);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6) 50%, transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
@media (max-width: 540px) { .hero-scroll { display: none; } }

/* ─── Section head shared ────────────────────────────────────────────── */
.section-head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-head .desc { justify-self: end; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .desc { justify-self: start; }
}

/* ─── 02 REELS ───────────────────────────────────────────────────────── */
.reels {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0;
  background: var(--bg);
  z-index: 2;
}

/* ─── Social platforms row (IG + YT + TT + FB) — una línea ─────────────── */
.social-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .social-platforms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .social-platforms { grid-template-columns: 1fr; } }

.splat {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .35s var(--ease), border-color .25s, background .25s, box-shadow .25s;
  will-change: transform;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  text-decoration: none;
}
.splat::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.splat:hover { box-shadow: 0 24px 50px -22px rgba(35,42,69,0.35); }
.splat:hover::before { opacity: 1; }
.splat > * { position: relative; z-index: 1; }

/* Icono de marca — ancla visual */
.splat-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.25);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.splat:hover .splat-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4);
}
.splat-icon-ig { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
.splat-icon-yt { background: #FF0000; }
.splat-icon-tt { background: #000; }
.splat-icon-fb { background: #1877F2; }

/* Info bloque */
.splat-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.splat-name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text); line-height: 1.05;
  letter-spacing: -0.005em;
}
.splat-handle {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Flecha sutil */
.splat-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  transition: color .25s, transform .25s var(--ease);
}
.splat-arrow svg { transition: transform .25s var(--ease); }
.splat:hover .splat-arrow { color: var(--text); }
.splat:hover .splat-arrow svg { transform: translate(2px, -2px); }

/* Tinte de marca en el fondo al hover */
.splat-ig::before { background: linear-gradient(135deg, rgba(221,42,123,0.06) 0%, rgba(129,52,175,0.06) 100%); }
.splat-yt::before { background: linear-gradient(135deg, rgba(255,0,0,0.06) 0%, transparent 100%); }
.splat-tt::before { background: linear-gradient(135deg, rgba(0,0,0,0.07) 0%, transparent 100%); }
.splat-fb::before { background: linear-gradient(135deg, rgba(24,119,242,0.07) 0%, transparent 100%); }

.splat-ig:hover { border-color: rgba(221,42,123,0.4); }
.splat-yt:hover { border-color: rgba(255,0,0,0.4); }
.splat-tt:hover { border-color: rgba(0,0,0,0.45); }
.splat-fb:hover { border-color: rgba(24,119,242,0.45); }

/* En cards muy estrechas escondemos el handle pequeño y solo dejamos nombre */
@media (max-width: 1100px) and (min-width: 721px) {
  .splat { padding: 14px; gap: 12px; }
  .splat-icon { width: 42px; height: 42px; border-radius: 11px; }
  .splat-handle { display: none; }
  .splat-arrow { width: 22px; height: 22px; }
}

/* ─── Contador de redes (seguidores + visualizaciones) ─────────────────── */
.reels-stats {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(36px, 4vw, 48px);
}
.rstat {
  flex: 1 1 240px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  gap: 14px; text-align: left;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
  will-change: transform;
}
.rstat::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  opacity: 0; transition: opacity .35s var(--ease); pointer-events: none;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--accent-soft) 0%, transparent 70%);
}
.rstat:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 44px -30px rgba(35, 42, 69, 0.3);
}
.rstat:hover::before { opacity: 1; }
.rstat > * { position: relative; z-index: 1; }
.rstat-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px; color: #fff;
  background: var(--accent);
  box-shadow: 0 6px 16px -8px rgba(35, 42, 69, 0.4);
}
.rstat-ico svg { width: 20px; height: 20px; }
.rstat-ico-ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  box-shadow: 0 6px 16px -8px rgba(221, 42, 123, 0.5);
}
.rstat-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.rstat-num {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.05;
  letter-spacing: -0.015em; color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-variant-numeric: tabular-nums;
}
.rstat-lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute);
}

/* Bento grid: 1 destacado grande + 5 alrededor (Apple-style asimétrico) */
.reels-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  margin-bottom: 64px;
}
.reel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-2);
  isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
  cursor: pointer;
}
.reel:hover { box-shadow: 0 30px 80px -25px rgba(35, 42, 69, 0.45); }
.reel image-slot {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.reel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--surface-3);
  transition: transform .6s var(--ease);
}
.reel:hover .reel-video { transform: scale(1.04); }
.reel-ig-badge {
  position: absolute; top: 14px; right: 14px;
  z-index: 5;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
}
.reel:hover .reel-ig-badge { opacity: 1; transform: translateY(0); }
.reel-feat .reel-ig-badge { top: 22px; right: 22px; width: 40px; height: 40px; }
.reel-feat .reel-ig-badge svg { width: 18px; height: 18px; }
.reel-feat {
  grid-column: span 2; grid-row: span 2;
}
.reel-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s;
}
.reel:hover .reel-shade { opacity: 0.7; }
.reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92);
  color: var(--bg);
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s, transform .3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.reel-play svg { width: 28px; height: 28px; margin-left: 3px; }
.reel:hover .reel-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.reel-meta {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  z-index: 4;
  display: flex; flex-direction: column; gap: 6px;
  color: #fff;
}
.reel-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
.reel-title {
  font-family: var(--display); font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.reel-feat .reel-title { font-size: clamp(22px, 2.4vw, 36px); }
.reel-feat .reel-meta { left: 28px; right: 28px; bottom: 28px; gap: 10px; }

@media (max-width: 980px) {
  .reels-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .reel-feat { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .reels-bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .reel-feat { grid-column: span 1; }
  .ig-profile-card { padding: 12px 18px 12px 12px; }
  .ig-handle { font-size: 18px; }
  .ig-avatar { width: 48px; height: 48px; }
  .ig-follow { padding: 8px 14px; font-size: 12px; }
}

.reels-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  box-shadow: 0 20px 50px -15px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .2s, color .2s;
}
.reels-cta:hover {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 30px 70px -15px var(--accent-glow), inset 0 0 0 1.5px var(--accent);
}
.reels-cta svg { transition: transform .25s var(--ease); }
.reels-cta:hover svg { transform: translate(3px, -3px); }

/* ─── 03 SERVICIOS ───────────────────────────────────────────────────── */
.services {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 2;
}

/* Bento asimétrico: 1 destacado grande izquierda + 3 pequeños apilados derecha */
.svc-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  min-height: 640px;
}
.svc-card-hero {
  grid-column: 1;
  grid-row: 1 / -1;
}
.svc-card-sm { grid-column: 2; }

@media (max-width: 900px) {
  .svc-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .svc-card-hero, .svc-card-sm { grid-column: 1; grid-row: auto; }
}

/* Card base */
.svc-card {
  position: relative;
  display: block;
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s, background .3s, box-shadow .3s, transform .3s var(--ease);
  will-change: transform;
  color: var(--text);
  text-decoration: none;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, transparent 30%, var(--accent-soft) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 70px -28px rgba(35, 42, 69, 0.32);
}
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; z-index: 2; }

/* Tag (Más reservado) */
.svc-tag {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 4;
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 18px -8px var(--accent-glow);
}

/* Ilustración base */
.svc-illu {
  display: block;
  color: var(--accent);
  transition: color .35s, transform .5s var(--ease);
}
.svc-card:hover .svc-illu { transform: translateY(-4px) scale(1.04); }

/* Ilustración destacada (hero) */
.svc-illu-hero {
  width: 100%;
  max-height: 220px;
  margin-bottom: 28px;
}
.svc-illu-hero svg { width: 100%; height: 100%; max-height: 220px; }

/* Body del card destacado */
.svc-card-hero {
  display: flex; flex-direction: column;
  padding: 36px 40px;
}
.svc-card-hero .svc-body {
  display: flex; flex-direction: column;
  gap: 14px; flex: 1;
}

.svc-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-mute);
}
.svc-name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1; letter-spacing: -0.015em;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-desc {
  font-size: 15px; color: var(--text-mute); line-height: 1.55;
  max-width: 42ch;
}
.svc-feat {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.svc-feat li {
  position: relative;
  padding-left: 22px;
  font-size: 14px; color: var(--text);
  line-height: 1.4;
}
.svc-feat li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

.svc-foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.svc-price {
  font-family: var(--display); font-size: 26px;
  color: var(--text); font-weight: 500;
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: transform .25s var(--ease), background .2s, color .2s, box-shadow .2s;
}
.svc-cta svg { transition: transform .25s var(--ease); }
.svc-card:hover .svc-cta {
  background: #fff;
  color: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.svc-card:hover .svc-cta svg { transform: translate(2px, -2px); }

/* Cards pequeños (3 a la derecha) */
.svc-card-sm {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  min-height: 0;
}
.svc-card-sm .svc-illu {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border-radius: 16px;
  flex-shrink: 0;
  padding: 14px;
}
.svc-card-sm .svc-illu svg { width: 100%; height: 100%; }
.svc-card-sm:hover .svc-illu {
  background: var(--surface-3);
}
.svc-sm-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.svc-name-sm {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-desc-sm {
  font-size: 13px; color: var(--text-mute); line-height: 1.45;
}
.svc-card-sm .svc-foot {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-strong);
  align-items: baseline;
}
.svc-price-sm {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text);
  font-weight: 500;
}
.svc-arrow-sm {
  font-size: 18px; color: var(--accent);
  transition: transform .25s var(--ease);
}
.svc-card-sm:hover .svc-arrow-sm { transform: translateX(4px); }

/* Tramos de precio del pack de bonos (5 / 10 / 20) */
.svc-tiers {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 6px;
}
.svc-tier {
  display: flex; align-items: baseline; gap: 8px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.04em; color: var(--text-mute);
  transition: border-color .25s, background .25s;
}
.svc-card-packs:hover .svc-tier { border-color: var(--border-strong); }
.svc-tier b {
  font-family: var(--display); font-weight: 500; font-size: 18px;
  color: var(--text); line-height: 1; min-width: 26px;
}
.svc-tier em {
  margin-left: auto;
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: 17px; color: var(--text);
}

@media (max-width: 900px) {
  .svc-card-sm { padding: 20px; }
}
@media (max-width: 520px) {
  .svc-card-sm { grid-template-columns: 64px 1fr; gap: 14px; padding: 18px; }
  .svc-card-sm .svc-illu { width: 64px; height: 64px; padding: 10px; }
}

/* ─── 04 CONTACTO ────────────────────────────────────────────────────── */
.contact {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0;
  background: var(--bg);
  z-index: 2;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 30px 70px -25px rgba(35, 42, 69, 0.35), 0 12px 24px -16px rgba(35, 42, 69, 0.22);
}
.contact-photo image-slot,
.contact-photo .contact-photo-img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
}
.contact-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  pointer-events: none;
}
.contact-photo-tag {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  color: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.contact-photo-tag .role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
.contact-photo-tag .name { font-family: var(--display); font-size: 24px; line-height: 1; }

.contact-body .eyebrow { margin-bottom: 24px; }
.contact-body h2 { font-size: clamp(56px, 7.5vw, 104px); margin-bottom: 20px; }
.contact-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-mute);
  margin-bottom: 36px;
  max-width: 42ch;
}

.contact-buttons {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px;
}
.cbtn {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--sans);
  transition: transform .25s var(--ease), border-color .25s, background .25s, box-shadow .25s;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.cbtn:hover {
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: 0 20px 50px -22px rgba(35, 42, 69, 0.45);
}
.cbtn-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}
.cbtn-icon svg { width: 26px; height: 26px; }
.cbtn-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cbtn-label { font-size: 18px; font-weight: 600; color: #fff; }
.cbtn-sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); }
.cbtn-arrow { font-size: 24px; opacity: 0.6; transition: transform .25s var(--ease), opacity .25s; }
.cbtn:hover .cbtn-arrow { transform: translateX(4px); opacity: 1; }

/* Los 3 botones del contacto unificados a navy con inversión al hover */
.cbtn-wa,
.cbtn-ig,
.cbtn-call {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.cbtn-wa .cbtn-icon,
.cbtn-ig .cbtn-icon,
.cbtn-call .cbtn-icon {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transition: background .25s, color .25s;
}
.cbtn-wa:hover,
.cbtn-ig:hover,
.cbtn-call:hover {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 20px 50px -22px rgba(35,42,69,0.45), inset 0 0 0 1.5px var(--accent);
}
.cbtn-wa:hover .cbtn-icon,
.cbtn-ig:hover .cbtn-icon,
.cbtn-call:hover .cbtn-icon {
  background: var(--accent-soft);
  color: var(--accent);
}
.cbtn-wa:hover .cbtn-label,
.cbtn-ig:hover .cbtn-label,
.cbtn-call:hover .cbtn-label { color: var(--accent); }
.cbtn-wa:hover .cbtn-sub,
.cbtn-ig:hover .cbtn-sub,
.cbtn-call:hover .cbtn-sub { color: var(--text-mute); }
.cbtn-wa:hover .cbtn-arrow,
.cbtn-ig:hover .cbtn-arrow,
.cbtn-call:hover .cbtn-arrow { color: var(--accent); }

.contact-info {
  display: grid; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-info > div { display: flex; flex-direction: column; gap: 6px; }
.ci-k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim);
}
.ci-v { font-size: 15px; color: var(--text); }

/* ─── FAB WhatsApp global ────────────────────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.25);
  transition: transform .25s var(--ease), opacity .35s var(--ease), bottom .35s var(--ease);
}
.fab-wa svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.fab-wa:hover { transform: scale(1.08); }
.fab-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  z-index: 1;
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab-tooltip {
  position: absolute; right: calc(100% + 14px);
  top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s var(--ease);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}
.fab-wa:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
.fab-wa.is-hidden { opacity: 0; transform: scale(0.6) translateY(40px); pointer-events: none; }
@media (max-width: 600px) {
  .fab-wa { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .fab-wa svg { width: 28px; height: 28px; }
  .fab-tooltip { display: none; }
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 2;
}
.foot-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.foot-brand {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.foot-cred { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); transition: color .2s; }
.foot-legal a:hover { color: var(--text); }

/* ─── image-slot adjustments for cover-style usage ───────────────────── */
image-slot { display: block; }

/* ─── 04 RESEÑAS — polaroid wall ─────────────────────────────────────── */
.resenas {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0 clamp(120px, 15vw, 200px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 2;
  overflow: hidden;
}

/* Stats line */
.resenas-stats {
  display: flex; justify-content: center; gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap;
  padding: 28px 32px;
  margin-bottom: clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rs-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.rs-num {
  font-family: var(--display); font-size: clamp(36px, 4.5vw, 56px); line-height: 1;
  color: var(--text); font-weight: 500;
}
.rs-num em { font-style: italic; color: var(--accent); font-weight: 400; }
.rs-lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute);
}

/* Marquee zig-zag · 3 filas en direcciones opuestas, velocidades distintas */
.quote-marquee {
  position: relative;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  margin-bottom: clamp(48px, 6vw, 80px);
  display: flex; flex-direction: column;
  gap: 18px;
  /* Fade edges para que no se vea el borde duro */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.quote-row { overflow: hidden; }
.quote-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: marqueeLeft 70s linear infinite;
  will-change: transform;
}
.quote-row-1 .quote-track { animation: marqueeLeft 75s linear infinite; }
.quote-row-2 .quote-track { animation: marqueeRight 90s linear infinite; }
.quote-row-3 .quote-track { animation: marqueeLeft 100s linear infinite; }

.quote-row:hover .quote-track { animation-play-state: paused; }

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .quote-track { animation: none !important; }
}

/* Pills individuales */
.quote-pill {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 380px);
  padding: 22px 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.quote-row:hover .quote-pill:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 22px 40px -22px rgba(35,42,69,0.45);
}
.quote-pill-text {
  font-family: var(--display);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.quote-pill-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(35, 42, 69, 0.18);
}
.quote-pill-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 15px; font-weight: 500;
  flex-shrink: 0;
}
.quote-pill-name {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1;
}
.quote-pill-stars { color: #D9A445; font-size: 11px; letter-spacing: 1px; }

@media (max-width: 600px) {
  .quote-pill { width: 280px; padding: 18px 22px; }
  .quote-row-1 .quote-track { animation-duration: 55s; }
  .quote-row-2 .quote-track { animation-duration: 70s; }
  .quote-row-3 .quote-track { animation-duration: 80s; }
}

/* CTA Google reviews */
.resenas-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 26px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
  margin: 0 auto;
}
.resenas-link:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: 0 14px 30px -14px rgba(35,42,69,0.3);
}
.resenas-link svg:last-child { transition: transform .25s var(--ease); }
.resenas-link:hover svg:last-child { transform: translate(2px, -2px); }

/* Centrado del bloque de link */
.resenas .wrap > .resenas-link {
  display: flex; width: fit-content;
}

/* ─── 04 RESERVA · Calendly ──────────────────────────────────────────── */
.reserva {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0;
  background: linear-gradient(165deg, #2D2620 0%, #1F1813 60%, #2A2118 100%);
  color: #fff;
  overflow: hidden;
  z-index: 2;
  border-top: 1px solid var(--border);
}
.reserva-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 12% 18%, rgba(90, 96, 121, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 55% 60% at 92% 88%, rgba(140, 146, 166, 0.16) 0%, transparent 62%);
}
.reserva-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 980px) {
  .reserva-grid { grid-template-columns: 1fr; gap: 44px; }
}

.reserva-aside { position: sticky; top: 104px; }
@media (max-width: 980px) { .reserva-aside { position: static; } }
.reserva-aside .eyebrow { margin-bottom: 26px; }
.reserva-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.0; letter-spacing: -0.018em;
  color: #fff; margin-bottom: 24px;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.reserva-title em {
  font-style: italic; font-weight: 400; opacity: 0.92;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.reserva-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55; max-width: 42ch; margin-bottom: 34px;
}
.reserva-points {
  list-style: none; padding: 0; margin: 0 0 34px;
  display: flex; flex-direction: column; gap: 18px;
}
.reserva-points li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: rgba(255, 255, 255, 0.86); line-height: 1.42;
}
.reserva-points strong { color: #fff; font-weight: 600; }
.rp-ico {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}
.rp-ico svg { width: 20px; height: 20px; }
.reserva-alt {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 14px 20px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.reserva-alt:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-2px);
}
.reserva-alt .wa-icon { width: 18px; height: 18px; color: var(--wa-green); }

/* Tarjeta que enmarca el widget de Calendly */
.reserva-widget {
  position: relative;
  background: var(--bg);
  border-radius: 24px;
  padding: 8px;
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.60),
    0 22px 50px -25px rgba(0, 0, 0, 0.50),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.reserva-widget .calendly-inline-widget {
  border-radius: 18px;
  overflow: hidden;
}
.reserva-noscript {
  display: block; padding: 40px; text-align: center;
  font-family: var(--display); font-size: 20px; color: var(--text);
}
@media (max-width: 600px) {
  .reserva-widget { padding: 5px; border-radius: 18px; }
  .reserva-widget .calendly-inline-widget { border-radius: 14px; }
}

/* ─── 06 FAQ + Sobre Carlos ──────────────────────────────────────────── */
.faq {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 2;
}
.faq-list {
  display: flex; flex-direction: column;
  gap: 14px;
  max-width: 920px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
  border-color: var(--border-strong);
  box-shadow: 0 24px 50px -30px rgba(35, 42, 69, 0.3);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.faq-item[open] .faq-ico {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-a {
  padding: 0 26px 24px;
}
.faq-item[open] .faq-a {
  animation: faqReveal .35s var(--ease);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq-a p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 70ch;
}
.faq-a strong { color: var(--text); font-weight: 600; }
@media (max-width: 600px) {
  .faq-q { padding: 18px 20px; gap: 14px; }
  .faq-a { padding: 0 20px 20px; }
}

/* <address> usado para el NAP — sin cursiva por defecto */
address.ci-v { font-style: normal; }
