/* ============================================
   IBERSEEKER VISUAL — Estilos globales
   v2 — paleta clara, sin dorado, logo grande, cart de extras
   ============================================ */

:root {
  /* Negros y superficies oscuras */
  --black: #0f0f0f;
  --black-2: #161616;
  --surface: #1c1c1c;
  --surface-2: #232323;

  /* Superficies claras (nuevo) */
  --light: #f6f5f1;          /* marfil suave */
  --light-2: #ecebe6;
  --light-3: #e2e0d9;
  --ink: #14140f;             /* texto sobre claro */
  --ink-soft: #4a4a45;
  --ink-muted: #7a7870;

  /* Líneas */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(20, 20, 15, 0.10);
  --line-dark-strong: rgba(20, 20, 15, 0.22);

  /* Texto sobre oscuro */
  --white: #ffffff;
  --text: #f4f3ee;
  --text-soft: #c2c0b8;
  --text-muted: #87857d;

  /* Acento — blanco puro, sin dorado */
  --accent: #ffffff;
  --accent-soft: #f4f3ee;
  --accent-deep: #d6d4cb;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 124px;

  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--tight { padding: clamp(48px, 7vw, 96px) 0; }
.section--dark { background: var(--black); color: var(--text); }
.section--surface { background: var(--surface); color: var(--text); }
.section--light { background: var(--light); color: var(--ink); }
.section--light-2 { background: var(--light-2); color: var(--ink); }

/* Color helpers */
.on-light { color: var(--ink); }
.on-light .lead { color: var(--ink-soft); }

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .8;
}
.section--light .eyebrow { color: var(--ink); }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white);
}
.section--light .h-display { color: var(--ink); }

.h-display--xl { font-size: clamp(40px, 6.4vw, 88px); }
.h-display--lg { font-size: clamp(34px, 5vw, 64px); }
.h-display--md { font-size: clamp(28px, 3.4vw, 44px); }

.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.section--light .h-section { color: var(--ink); }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 62ch;
}
.section--light .lead { color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  width: 18px; height: 1px; background: currentColor; position: relative; transition: width .35s var(--ease);
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 26px; }

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover { background: var(--accent-deep); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--surface); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-dark-strong);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--light); }

.btn-whatsapp {
  background: #25d366;
  color: #052b1a;
}
.btn-whatsapp:hover { background: #2ee673; }

/* ============================================
   HEADER / NAV — más claro, logo grande
   ============================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
/* Variante clara: cuando el hero es claro (todas las páginas internas).
   El header tiene fondo crema desde el inicio + texto oscuro. */
.site-header.is-light {
  background: rgba(246, 245, 241, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-dark);
}
.site-header.is-light .nav-link,
.site-header.is-light .nav-cta { color: var(--ink); }
.site-header.is-light .nav-cta { border-color: var(--line-dark-strong); }
.site-header.is-light .nav-cta:hover { background: var(--ink); color: var(--light); border-color: var(--ink); }
.site-header.is-light .nav-toggle span { background: var(--ink); }
.site-header.is-light.is-scrolled {
  background: rgba(246, 245, 241, 0.96);
}
.site-header.is-light .nav-logo img {
  /* Sobre header claro usamos el logo oscuro y multiply para que el fondo blanco
     desaparezca contra el crema del header. */
  filter: none;
  mix-blend-mode: multiply;
}
/* Footer sobre fondo oscuro: necesitamos el logo blanco con su fondo negro
   integrado mediante blend mode screen */
.site-footer .footer-brand img {
  mix-blend-mode: screen;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  height: 100%;
  flex-shrink: 0;
}
.nav-logo img {
  height: 104px; width: auto;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,0.55)) drop-shadow(0 0 1px rgba(255,255,255,0.18));
  transition: height .35s var(--ease), filter .35s var(--ease);
}
.site-header.is-scrolled .nav-logo img { height: 84px; }
/* En el header claro el drop-shadow se exagera para que el logo (multiply) se "agarre" al fondo */
.site-header.is-light .nav-logo img {
  filter: none;
  mix-blend-mode: multiply;
  height: 104px;
}
.site-header.is-light.is-scrolled .nav-logo img { height: 84px; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right .35s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { right: 0; }
.nav-link:hover { opacity: .85; }
.nav-link.is-active { font-weight: 600; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-cta:hover { background: var(--white); color: var(--black); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  display: block; position: absolute; left: 6px; right: 6px; height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .25s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  :root { --header-h: 96px; }
  .nav-logo img { height: 76px; }
  .site-header.is-scrolled .nav-logo img { height: 62px; }
  .site-header.is-light .nav-logo img { height: 76px; }
  .site-header.is-light.is-scrolled .nav-logo img { height: 62px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 0 0;
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 40px var(--gutter);
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(20px);
    transform: translateY(-110%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-link {
    width: 100%;
    font-size: 24px;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-link::after { display: none; }
}

/* ============================================
   HERO — más claro, vídeo más visible
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Más luz, menos calidez, menos saturación → estética más limpia */
  filter: brightness(1.16) contrast(0.96) saturate(0.72);
  transform: scale(1.04); /* compensa cualquier viñeteo del filtro */
  animation: heroSlowZoom 24s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Overlay frío y luminoso: protege el texto sin ensuciar la imagen.
     Top: leve veladura blanca-fría; bottom: oscurecido suave para CTAs. */
  background:
    linear-gradient(180deg,
      rgba(232,238,245,0.18) 0%,
      rgba(20,20,30,0.05) 30%,
      rgba(15,15,15,0.62) 100%);
}
.hero-overlay::after {
  /* Veladura lateral izquierda para asegurar legibilidad del título */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,15,20,0.45) 0%, rgba(15,15,20,0.18) 35%, rgba(15,15,20,0) 70%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--white); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--white);
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(40px, 6.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 18ch;
  text-shadow: 0 4px 28px rgba(0,0,0,0.35);
}
.hero-title em {
  font-style: italic;
  color: var(--white);
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--text);
  max-width: 56ch;
  margin-bottom: 42px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: scrollBob 2.4s var(--ease) infinite;
  opacity: .8;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--white), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Page hero (subpages) — claro */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--light);
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--ink); }
.page-hero h1 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 22ch;
}
.page-hero p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line);
}
.stat-number {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.stat-label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 22ch;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(odd)::after {
    content: ""; position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: var(--line);
  }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat:nth-child(odd)::after { display: none; }
  .stat { padding: 24px 16px; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================
   BRAND LOGOS — sobre fondo claro, colores reales
   ============================================ */
.brands {
  padding: 70px 0;
  background: var(--light);
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.brands-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 44px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.brand-logo {
  display: flex; justify-content: center; align-items: center;
  height: 64px; width: 100%;
  padding: 6px;
  /* Logos con sus colores reales en escala de grises sutil */
  filter: grayscale(100%) opacity(.65);
  mix-blend-mode: multiply;
  transition: filter .3s var(--ease);
}
.brand-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.brand-logo:hover { filter: grayscale(0%) opacity(1); }

@media (max-width: 900px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 24px; }
}
@media (max-width: 520px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   EQUIPO
   ============================================ */
.equipo {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.equipo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.equipo-list {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}
.equipo-list li {
  display: flex; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-soft);
}
.equipo-list li:last-child { border-bottom: 0; }
.equipo-list strong {
  color: var(--white);
  font-weight: 600;
  min-width: 220px;
}
.equipo-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--black);
  overflow: hidden;
  border: 1px solid var(--line);
}
.equipo-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .equipo-grid { grid-template-columns: 1fr; }
  .equipo-list strong { min-width: auto; display: block; }
  .equipo-list li { flex-direction: column; gap: 4px; }
}

/* ============================================
   SERVICIOS
   ============================================ */
.services-intro { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.services-intro .lead { margin-inline: auto; }
.services-intro .eyebrow { justify-content: center; }
.services-intro .eyebrow::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .5s var(--ease);
}
.service-card:hover { border-color: var(--white); transform: translateY(-4px); }
.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black);
}
.service-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,15,15,0.5) 100%);
}
.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Service detail rows */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row.is-reversed .service-row-text { order: 2; }
.service-row-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.service-row-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-row-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .35;
}
.service-row h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.service-row p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.service-row .features {
  display: grid; gap: 10px;
  margin-top: 20px;
}
.service-row .features li {
  display: flex; gap: 12px;
  font-size: 14px; color: var(--text);
  padding-left: 16px; position: relative;
}
.service-row .features li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 1px; background: var(--white);
}

@media (max-width: 800px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row.is-reversed .service-row-text { order: initial; }
}

/* ============================================
   PACKS
   ============================================ */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pack {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line-dark);
}
.pack:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
}
.pack--featured {
  background: var(--ink);
  color: var(--light);
  border-color: var(--ink);
}
.pack--featured::before {
  content: "Más popular";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--ink);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--ink);
}
.pack-name {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 30px;
  margin-bottom: 8px;
}
.pack-tagline {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
  font-weight: 600;
}
.pack--featured .pack-tagline { color: var(--text-soft); }

.pack-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.pack-price-sub {
  font-size: 11px; color: var(--ink-muted);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
.pack--featured .pack-price-sub { color: var(--text-soft); }

.pack-features {
  display: grid; gap: 12px;
  margin-bottom: 32px;
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}
.pack-features li {
  display: flex; gap: 12px;
  color: var(--ink);
}
.pack--featured .pack-features li { color: var(--light); }
.pack-features li::before {
  content: "—"; flex: 0 0 16px;
  color: var(--ink-muted);
  font-weight: 700;
}
.pack--featured .pack-features li::before { color: var(--text-soft); }

.pack .btn { width: 100%; justify-content: center; }
.pack .btn-pack {
  background: var(--ink); color: var(--light);
  padding: 18px 24px;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.pack .btn-pack:hover { background: var(--black); }
.pack--featured .btn-pack {
  background: var(--white); color: var(--ink);
}
.pack--featured .btn-pack:hover { background: var(--accent-deep); }

/* Botón pack: dos labels (añadir / añadido) */
.pack-add-btn .added-label { display: none; align-items: center; gap: 8px; justify-content: center; }
.pack-add-btn .add-label   { display: inline-flex; align-items: center; gap: 8px; }
.pack-add-btn .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: currentColor; color: var(--ink);
  font-size: 11px; font-weight: 700;
}
.pack--featured .pack-add-btn .check { color: var(--white); }
.pack.is-added .pack-add-btn .add-label   { display: none; }
.pack.is-added .pack-add-btn .added-label { display: inline-flex; }
.pack.is-added .pack-add-btn {
  background: #1f7a3a; color: var(--white);
}
.pack.is-added .pack-add-btn:hover { background: #155f2c; }
.pack.is-added .pack-add-btn .check { color: #1f7a3a; background: var(--white); }

/* Estado is-added en la propia tarjeta */
.pack.is-added {
  outline: 2px solid #1f7a3a;
  outline-offset: -2px;
  box-shadow: 0 24px 48px -22px rgba(31,122,58,0.35);
}

/* Animación de pulso al añadir */
.pack.just-added { animation: addPulse .45s var(--ease-out); }

.packs-helper {
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

@media (max-width: 1100px) { .packs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .packs-grid { grid-template-columns: 1fr; } }

/* ============================================
   EXTRAS — Carrito estilo McDonald's
   ============================================ */
.extras-section {
  background: var(--light);
  color: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--line-dark);
}
.extras-header {
  text-align: center; margin-bottom: 56px;
  max-width: 720px; margin-inline: auto;
}
.extras-header .eyebrow { color: var(--ink); justify-content: center; }
.extras-header .eyebrow::before { display: none; }
.extras-header h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.extras-header p {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 17px);
}

.extras-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.extras-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.extra-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.extra-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.extra-card.is-added::before { transform: scaleX(1); }
.extra-card.is-added {
  border-color: var(--ink);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.25);
}

.extra-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 8px;
}
.extra-card-name {
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.extra-card-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.extra-card-desc {
  font-size: 13px; color: var(--ink-muted);
  margin-bottom: 18px; line-height: 1.5;
  flex: 1;
}

.extra-card-action { margin-top: auto; }
.add-btn {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background .25s var(--ease), transform .15s var(--ease);
}
.add-btn:hover { background: var(--black); }
.add-btn:active { transform: scale(.98); }
.add-btn .plus {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: inline-grid; place-items: center;
  font-size: 14px; font-weight: 700; line-height: 1;
}

.qty-stepper {
  display: none;
  width: 100%;
  align-items: center; justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  padding: 8px;
  user-select: none;
}
.extra-card.is-added .add-btn { display: none; }
.extra-card.is-added .qty-stepper { display: flex; }

.qty-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 18px; line-height: 1; font-weight: 700;
  border-radius: 50%;
  transition: background .2s;
}
.qty-btn:hover { background: rgba(255,255,255,0.22); }
.qty-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  min-width: 32px; text-align: center;
}

/* Pulse animation when added */
@keyframes addPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.extra-card.just-added { animation: addPulse .45s var(--ease-out); }

/* CART summary */
.cart {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--ink);
  color: var(--light);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  max-height: calc(100vh - var(--header-h) - 48px);
}
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 18px;
}
.cart-title {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: 24px;
  color: var(--white);
}
.cart-count {
  background: var(--white);
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
  min-width: 28px; text-align: center;
}
.cart-empty {
  font-size: 14px; color: var(--text-soft);
  text-align: center;
  padding: 28px 8px;
}
.cart-items {
  flex: 1; overflow-y: auto;
  display: grid; gap: 12px;
  padding-right: 4px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-name { color: var(--light); font-weight: 500; }
.cart-item-meta { color: var(--text-soft); font-size: 12px; }
.cart-item--pack {
  background: rgba(255,255,255,0.04);
  margin: 0 -8px;
  padding: 14px 8px;
  border-radius: 6px;
}
.cart-item--pack .cart-item-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
}
.cart-item--pack .cart-item-meta {
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #b9b6a5;
  font-size: 10px; font-weight: 600;
}
.cart-item-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  text-align: right;
  align-self: center;
}
.cart-item-remove {
  font-size: 11px; color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  align-self: start;
  padding: 2px 0;
}
.cart-item-remove:hover { color: var(--white); }

.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.cart-total-label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--text-soft);
}
.cart-total-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}
.cart-vat {
  text-align: right;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 4px;
  font-weight: 600;
}
.cart-actions { display: grid; gap: 8px; margin-top: 18px; }
.cart-checkout {
  width: 100%; padding: 16px;
  background: var(--white); color: var(--ink);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .25s var(--ease);
}
.cart-checkout:hover { background: var(--accent-deep); }
.cart-checkout:disabled { opacity: .35; cursor: not-allowed; }
.cart-whatsapp {
  width: 100%; padding: 14px;
  background: #25d366; color: #052b1a;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .25s var(--ease);
}
.cart-whatsapp:hover { background: #2ee673; }
.cart-whatsapp:disabled { opacity: .35; cursor: not-allowed; background: #25d366; }

/* Mobile cart: floating bar at bottom */
@media (max-width: 900px) {
  .extras-layout { grid-template-columns: 1fr; }
  .extras-cards { grid-template-columns: 1fr; }
  .cart {
    position: fixed; left: 16px; right: 16px; bottom: 16px; top: auto;
    z-index: 95;
    max-height: 70vh;
    box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6);
    transform: translateY(calc(100% + 32px));
    transition: transform .45s var(--ease);
  }
  .cart.has-items { transform: translateY(0); }
  .cart-items { max-height: 30vh; }
  /* Padding extra al bottom para no tapar contenido */
  .extras-section { padding-bottom: 200px; }
}

/* ============================================
   GALERÍA TRABAJOS
   ============================================ */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line-dark-strong);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  transition: all .3s var(--ease);
}
.filter-btn:hover, .filter-btn.is-active {
  background: var(--ink); color: var(--light); border-color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: 4 / 6; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,15,15,0.85) 100%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 24px; right: 24px; bottom: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

.gallery-empty {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--line-strong);
}
.gallery-empty h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}
.gallery-empty p { color: var(--text-soft); max-width: 50ch; margin: 0 auto; }

/* ============================================
   CTA bloque
   ============================================ */
.cta-block {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.cta-block .container { position: relative; }
.cta-block h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 18ch; margin-inline: auto;
}
.cta-block p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-soft);
  max-width: 56ch; margin: 0 auto 36px;
}
.cta-actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============================================
   CONTACTO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info .lead { margin-bottom: 40px; }

.contact-channels {
  display: grid; gap: 20px;
  margin-bottom: 40px;
}
.contact-channel {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.contact-channel:hover { border-color: var(--white); background: var(--surface-2); }
.contact-channel-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}
.contact-channel-text small {
  display: block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-channel-text strong {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 22px;
  color: var(--white);
}

.contact-coverage {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--text-soft);
}
.contact-coverage strong { color: var(--white); display: block; margin-bottom: 6px; font-weight: 600; letter-spacing: 0.06em; }

/* Form */
.contact-form {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-dark);
  padding: clamp(32px, 4vw, 48px);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 28px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 700;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark-strong);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 0;
  transition: border-color .3s var(--ease);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.contact-form .btn { margin-top: 12px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form { padding: 36px 28px; }
}

/* === Site Footer === */
.site-footer {
  background: var(--black);
  color: var(--text);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 88px;
  width: auto;
  display: block;
  margin-bottom: 22px;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.footer-brand p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === Garantías band === */
.guarantees {
  background: var(--light-2);
  padding: 56px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.guarantee {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.guarantee-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--light);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}
.guarantee-text strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.guarantee-text span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .guarantees-grid { grid-template-columns: 1fr; }
}

/* === Stats con narrativa === */
.stats-headline {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.stats-headline .h-section {
  margin-bottom: 18px;
}
.stats-headline p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

/* === Before / After slider === */
.ba-section {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--light);
}
.ba-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.ba-head .eyebrow { color: var(--ink); justify-content: center; }
.ba-head .eyebrow::before { display: none; }
.ba-head h2 { color: var(--ink); margin-bottom: 14px; }
.ba-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  user-select: none;
  cursor: ew-resize;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.35);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  filter: brightness(0.78) contrast(0.88) saturate(0.55);
  z-index: 1;
}
.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .08s ease;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white);
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  pointer-events: auto;
  cursor: ew-resize;
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(15,15,15,0.78);
  color: var(--white);
  border-radius: 2px;
  z-index: 4;
  pointer-events: none;
}
.ba-label--before { left: 16px; z-index: 4; }
.ba-label--after { right: 16px; z-index: 4; }

/* === Process / Cómo trabajamos === */
.process {
  background: var(--surface);
  color: var(--text);
}
.process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.process-head .eyebrow { justify-content: center; }
.process-head .eyebrow::before { display: none; }
.process-head h2 { margin-bottom: 14px; }
.process-head p { color: var(--text-soft); font-size: 16px; line-height: 1.6; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--white);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.process-step p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  max-width: 32ch;
  margin: 0 auto;
}
.process--light {
  background: var(--light);
  color: var(--ink);
}
.process--light .process-head h2,
.process--light .process-step h3 { color: var(--ink); }
.process--light .process-head p,
.process--light .process-step p { color: var(--ink-soft); }
.process--light .process-step-num {
  background: var(--ink);
  color: var(--light);
  border-color: rgba(0,0,0,0.08);
}
.process--light .process-steps::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12) 30%, rgba(0,0,0,0.12) 70%, transparent);
}
@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
}

/* === Testimonials === */
.testimonials {
  background: var(--light);
  padding: clamp(72px, 10vw, 120px) 0;
}
.testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.testimonials-head .eyebrow { color: var(--ink); justify-content: center; }
.testimonials-head .eyebrow::before { display: none; }
.testimonials-head h2 { color: var(--ink); margin-bottom: 14px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line-light);
  padding: 36px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.18);
}
.testimonial-stars {
  color: #d4a64a;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 600;
}
.testimonial-author-text strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.testimonial-author-text span {
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === Sticky CTA === */
.sticky-cta {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 24px);
  background: var(--ink);
  color: var(--light);
  padding: 14px 26px 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 80;
}
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.sticky-cta:hover { background: var(--accent); color: var(--white); }
.sticky-cta-arrow { font-size: 16px; }
@media (max-width: 600px) {
  .sticky-cta { font-size: 13px; padding: 12px 22px 12px 18px; }
}

/* === FAB Whatsapp === */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,0.55);
  z-index: 75;
  font-size: 26px;
  transition: transform .3s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); }

/* === Reveal animations === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== FIX: clases reales que usa el HTML ========== */

/* Garantías — versión real del HTML usa <ul class="guarantees-list"> con <svg> + <span><strong>...</strong>texto</span> */
.guarantees { background: var(--light-2); padding: 56px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.guarantees-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.guarantees-list .guarantee {
  display: flex; gap: 16px; align-items: flex-start;
  color: var(--ink);
}
.guarantees-list .guarantee svg {
  width: 32px; height: 32px; flex: 0 0 32px;
  color: var(--ink); margin-top: 2px;
}
.guarantees-list .guarantee span {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; line-height: 1.5; color: var(--ink-soft);
}
.guarantees-list .guarantee strong {
  display: block; color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
}
@media (max-width: 900px) { .guarantees-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .guarantees-list { grid-template-columns: 1fr; } }

/* Stats — el HTML usa .stats-eyebrow + .stats-headline (que existe pero como narrativa) */
.stats { padding: clamp(80px, 10vw, 130px) 0; background: var(--light); color: var(--ink); }
.stats-eyebrow {
  text-align: center; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 700; margin-bottom: 16px;
}
.stats h2.stats-headline {
  text-align: center; max-width: 820px; margin: 0 auto 56px;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.2; color: var(--ink);
}
.stats h2.stats-headline em { font-style: italic; color: var(--accent-deep); font-weight: 500; }
.stats .stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
  padding: 36px 0;
}
.stats .stat { text-align: center; padding: 0 20px; border-right: 1px solid var(--line-light); }
.stats .stat:last-child { border-right: 0; }
.stats .stat-number {
  display: block; font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(32px, 4.2vw, 52px); color: var(--ink); line-height: 1; margin-bottom: 10px;
}
.stats .stat-label { font-size: 13px; color: var(--ink-soft); line-height: 1.45; max-width: 22ch; margin: 0 auto; }
@media (max-width: 900px) {
  .stats .stats-grid { grid-template-columns: repeat(2, 1fr); border: 0; padding: 0; gap: 30px 0; }
  .stats .stat { border-right: 0; padding: 20px 12px; border-bottom: 1px solid var(--line-light); }
  .stats .stat:last-child { border-bottom: 0; }
}

/* Before/After — el HTML usa .ba-header (no .ba-head) y .ba-handle-line + .ba-handle-circle */
.ba-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.ba-header .eyebrow { color: var(--ink); justify-content: center; }
.ba-header .eyebrow::before { display: none; }
.ba-header h2 { color: var(--ink); margin-bottom: 14px; }
.ba-header p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--white); z-index: 3;
  transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
}
.ba-handle-line { display: none; }
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); display: grid; place-items: center;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  pointer-events: auto; cursor: ew-resize;
}
.ba-handle-circle svg { width: 22px; height: 22px; }

/* Process — el HTML usa .process-header (no .process-head) y .process-num (no .process-step-num) */
.process-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.process-header .eyebrow { justify-content: center; color: var(--text-soft); }
.process-header .eyebrow::before { display: none; }
.process-header h2 { color: var(--white); margin-bottom: 14px; }
.process-header p { color: var(--text-soft); font-size: 16px; line-height: 1.6; }
.process-steps { list-style: none; padding: 0; margin: 0; }
.process-step .process-num {
  display: grid; place-items: center;
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--black);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; color: var(--white);
}
.process--light .process-header h2 { color: var(--ink); }
.process--light .process-header p { color: var(--ink-soft); }

/* Equipo — asegurar que se renderiza (oscuro) */
.equipo { background: var(--black); color: var(--text); }
.equipo .equipo-text .eyebrow { color: var(--text-soft); }
.equipo .h-section { color: var(--white); }
.equipo .lead { color: var(--text-soft); }
.equipo-list strong { color: var(--white); }
.equipo-list li { color: var(--text-soft); border-color: rgba(255,255,255,0.08); }


/* ========== FIX: Logo prominente y siempre visible ========== */
:root { --header-h: 132px; }

.site-header {
  padding: 18px 0;
  min-height: var(--header-h);
  display: flex; align-items: center;
}
.nav-logo { display: flex; align-items: center; }
/* Override agresivo: logo grande, sin mix-blend, con drop-shadow visible en oscuro y claro */
.nav-logo img,
.site-header.is-light .nav-logo img,
.site-header.is-scrolled .nav-logo img,
.site-header.is-light.is-scrolled .nav-logo img {
  height: 96px !important;
  width: auto;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
  transition: height .35s var(--ease);
}
/* En header claro: logo NEGRO (logo-black.png ya negro) sin sombra fuerte que ensucie */
.site-header.is-light .nav-logo img {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18)) !important;
}
.site-header.is-scrolled .nav-logo img,
.site-header.is-light.is-scrolled .nav-logo img { height: 76px !important; }

@media (max-width: 1000px) {
  .nav-logo img,
  .site-header.is-light .nav-logo img { height: 72px !important; }
  .site-header.is-scrolled .nav-logo img,
  .site-header.is-light.is-scrolled .nav-logo img { height: 60px !important; }
}

/* ========== FIX: Hero con imagen estable ========== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--black); }
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9) contrast(1.02) saturate(0.95);
  animation: heroSlowZoom 22s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.25) 35%, rgba(15,15,15,0.78) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: var(--header-h); }

/* ========== FIX: Pack badge "Más popular" ========== */
.pack { position: relative; }
.pack-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(180,140,90,0.65);
  white-space: nowrap;
  z-index: 2;
}
.pack--featured .pack-badge { background: var(--accent); color: var(--white); }

/* ====================================================== */
/* ============== OVERRIDES FINALES (FIX) =============== */
/* ====================================================== */

/* --- LOGO GRANDE Y VISIBLE (logos ya son tight + transparentes) --- */
:root { --header-h: 110px; }
.site-header { padding: 14px 0; min-height: var(--header-h); display: flex; align-items: center; }

.nav-logo img,
.site-header.is-light .nav-logo img,
.site-header.is-scrolled .nav-logo img,
.site-header.is-light.is-scrolled .nav-logo img {
  height: 78px !important;
  width: auto !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45)) !important;
}
/* Header claro: logo NEGRO transparente, sombra suave para que "flote" sobre el blanco */
.site-header.is-light .nav-logo img {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18)) !important;
}
/* Al scrollear, reducir un poco pero mantener prominente */
.site-header.is-scrolled .nav-logo img,
.site-header.is-light.is-scrolled .nav-logo img { height: 60px !important; }

@media (max-width: 1000px) {
  .nav-logo img,
  .site-header.is-light .nav-logo img { height: 58px !important; }
  .site-header.is-scrolled .nav-logo img,
  .site-header.is-light.is-scrolled .nav-logo img { height: 48px !important; }
}

/* --- FOOTER LOGO TAMBIÉN BIEN GRANDE Y CON COLOR CORRECTO --- */
.site-footer .footer-brand img {
  height: 84px !important;
  width: auto !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 2px 6px rgba(255,255,255,0.05)) !important;
}

/* --- HERO LIMPIO (foto fotografia.webp es buena, no estropearla) --- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: #1a1a1a; }
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.05) contrast(1.04) saturate(1.0) !important;
  animation: heroSlowZoom 28s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
/* Overlay mucho más sutil: solo abajo para que el texto se lea */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.78) 100%
  ) !important;
}
.hero-overlay::after { display: none !important; }
.hero-content { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero-title, .hero-subtitle { text-shadow: 0 2px 16px rgba(0,0,0,0.55); }

/* --- ELIMINAR ESPACIOS HORRIBLES BAJO STATS --- */
.stats { padding: clamp(70px, 9vw, 100px) 0 !important; }
.stats .stats-grid { padding: 30px 0 0 !important; border-bottom: 0 !important; }
.stats + * { margin-top: 0 !important; }

/* --- HELPER DE PACKS BIEN VISIBLE --- */
.packs-helper {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 16px 22px;
  margin: 0 auto 40px;
  max-width: 720px;
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* --- SECCIÓN SERVICIOS PREVIEW: asegurar que renderiza --- */
.section--dark { background: var(--black) !important; color: var(--text) !important; }
.section--dark .h-section,
.section--dark .service-card h3 { color: var(--white); }
.section--dark .service-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); }
.section--dark .service-card p { color: var(--text-soft); }

/* --- ELIMINAR ESPACIOS ENTRE SECCIONES --- */
section + section { margin-top: 0 !important; }
.section, .stats, .brands, .equipo, .ba-section, .process,
.testimonials, .guarantees, .cta-block { margin: 0 !important; }

/* ====================================================== */
/* === FIX CRÍTICO: reveal estaba ocultando todo ======== */
/* JS añade .is-visible pero CSS antes esperaba .is-in === */
/* ====================================================== */

/* Garantía: nada con .reveal queda invisible nunca */
.reveal { opacity: 1 !important; transform: none !important; }
.reveal.is-visible, .reveal.is-in { opacity: 1 !important; transform: none !important; }

/* Animación opcional (suave) cuando JS marca is-visible */
@keyframes revealFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal.is-visible { animation: revealFadeIn .7s ease both; }

