/* ============================================================
   JORTMAN COSMETICS S.A. DE C.V. · Línea de Oro
   Hoja de estilo principal
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:        #0B0B0C;
  --ink-2:      #141416;
  --ink-3:      #1E1E22;
  --cream:      #FBF7F1;
  --cream-2:    #F4ECE0;
  --sand:       #E5D7C3;

  --gold:       #C9A227;
  --gold-light: #EBD292;
  --gold-deep:  #8A6B1F;
  /* Dorado brillante: solo sobre fondos oscuros */
  --gold-grad:  linear-gradient(115deg, #7E601A 0%, #C9A227 20%, #F7EBC0 46%, #D9B441 62%, #8A6B1F 100%);
  /* Dorado tinta: sobre fondos claros, sin el brillo pálido que se perdía en el crema */
  --gold-ink:   linear-gradient(110deg, #6A4C0C 0%, #8F6F16 30%, #A6831F 50%, #8F6F16 70%, #6A4C0C 100%);
  --gold-line:  linear-gradient(90deg, transparent, #B48A2C 18%, #CBA551 50%, #B48A2C 82%, transparent);
  /* Barritas y líneas decorativas: degradado suave, sin el brillo pálido del centro */
  --gold-bar:   linear-gradient(90deg, #B48A2C 0%, #CBA551 50%, #B48A2C 100%);
  /* Botón dorado del sitio (el de "Ver catálogo" en la portada) */
  --boton-oro: linear-gradient(95deg, #B48A2C 0%, #D3AE56 50%, #B18A30 100%);
  --boton-oro-sombra: 0 16px 30px -16px rgba(150, 110, 30, 0.75);
  --boton-oro-sombra-hover: 0 22px 38px -16px rgba(150, 110, 30, 0.85);

  --text-body:  #2A241E;
  --text-muted: #6B6158;
  --text-light: rgba(251, 247, 241, 0.74);

  --font-display: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-sans:    'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script:  'Parisienne', 'Brush Script MT', cursive;

  --nav-h: 90px;
  --radius: 3px;
  --shadow-sm: 0 2px 12px rgba(20, 16, 12, 0.07);
  --shadow-md: 0 18px 46px -20px rgba(20, 16, 12, 0.34);
  --shadow-lg: 0 38px 80px -30px rgba(20, 16, 12, 0.48);
  --shadow-gold: 0 20px 50px -22px rgba(201, 162, 39, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1300px;

  --dots-gold:  radial-gradient(circle, rgba(201, 162, 39, 0.16) 1.1px, transparent 1.2px);
  --dots-light: radial-gradient(circle, rgba(201, 162, 39, 0.14) 1.1px, transparent 1.2px);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* `clip` recorta el menú desplegable fuera de pantalla sin crear un
     contenedor de scroll — `hidden` rompería el sticky de la barra de filtros. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 350;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: #100E0C;
  margin: 0;
}

::selection { background: var(--gold); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

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

/* ---------- 3. Estructura y fondos ---------- */
.container { width: min(100% - 52px, var(--maxw)); margin-inline: auto; }
.container-narrow { width: min(100% - 52px, 980px); margin-inline: auto; }

.section { position: relative; padding-block: clamp(80px, 9.5vw, 148px); isolation: isolate; }
.section-sm { position: relative; padding-block: clamp(56px, 6vw, 92px); isolation: isolate; }

/* Claro: retícula de puntos dorados + halos de color */
.section-tex {
  background-color: var(--cream);
  background-image: var(--dots-light);
  background-size: 24px 24px;
}
.section-tex::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 55% at 88% 6%, rgba(232, 166, 160, 0.26), transparent 62%),
    radial-gradient(60% 50% at 4% 96%, rgba(201, 162, 39, 0.2), transparent 60%);
  pointer-events: none;
}

.section-cream-2 {
  background-color: var(--cream-2);
  background-image: var(--dots-light);
  background-size: 26px 26px;
}
.section-cream-2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(64% 58% at 12% 8%, rgba(201, 162, 39, 0.24), transparent 60%),
    radial-gradient(56% 52% at 92% 92%, rgba(139, 26, 74, 0.13), transparent 62%);
  pointer-events: none;
}

/* Oscuro: puntos, halos dorado y vino, grano */
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--dots-gold);
  background-size: 26px 26px;
  opacity: 0.85;
  pointer-events: none;
}
.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 48% at 82% 10%, rgba(201, 162, 39, 0.2), transparent 62%),
    radial-gradient(52% 46% at 8% 88%, rgba(139, 26, 74, 0.26), transparent 64%);
  pointer-events: none;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: var(--text-light); }

.grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--grain);
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---------- 4. Tipografía de sección ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold-bar);
  flex: none;
}
.section-dark .eyebrow { color: var(--gold-light); }
.eyebrow-center { justify-content: center; }
.eyebrow-center::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold-bar);
  flex: none;
}

.title-xl { font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
.title-lg { font-size: clamp(1.85rem, 4vw, 3.15rem); }
.title-md { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }

/* Palabra destacada en dorado. Sobre claro usa el dorado tinta (legible);
   sobre oscuro, el dorado brillante. */
.acento {
  background-image: var(--gold-ink);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldshift 8s ease-in-out infinite alternate;
}
.section-dark .acento,
.cta-band .acento,
.page-title .acento,
.gold-text {
  background-image: var(--gold-grad);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldshift 8s ease-in-out infinite alternate;
}

@keyframes goldshift {
  from { background-position: 0% center; }
  to   { background-position: 100% center; }
}

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 22px 0 0;
}
.section-dark .lede { color: var(--text-light); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.rule-gold {
  width: 84px;
  height: 2px;
  background: var(--gold-bar);
  border: 0;
  margin: 28px 0;
}
.center .rule-gold { margin-inline: auto; }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 26px;
}
.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  width: clamp(40px, 12vw, 130px);
  background: var(--gold-line);
}
.ornament img { width: 20px; opacity: 0.9; }

.watermark {
  position: absolute;
  z-index: -1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(10rem, 24vw, 22rem);
  line-height: 0.74;
  letter-spacing: 0.01em;
  /* Solo contorno, con el filtro #contorno-marca (iconos.js). El color va opaco y la
     transparencia con opacity, para que el filtro recorte bien el relleno. */
  color: var(--gold);
  filter: url(#contorno-marca);
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}
.section-dark .watermark { opacity: 0.2; }

/* ---------- 5. Iconos ---------- */
.ico { display: block; width: 24px; height: 24px; flex: none; }

/* Icono destacado: solo el dibujo en dorado, sin caja ni fondo */
.ico-grande {
  --size: 46px;
  position: relative;
  flex: none;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  transition: transform .55s var(--ease), color .55s var(--ease);
}
.ico-grande .ico { width: 100%; height: 100%; }
.ico-grande--sm { --size: 36px; }
.ico-grande--lg { --size: 56px; }
.section-dark .ico-grande,
.map-badge .ico-grande { color: var(--gold-light); }

.value-card:hover .ico-grande,
.format-card:hover .ico-grande,
.mv-card:hover .ico-grande,
.contact-card:hover .ico-grande,
.free-item:hover .ico-grande,
.tl-item:hover .ico-grande {
  transform: translateY(-3px) rotate(-6deg);
  color: var(--gold);
}
.section-dark .value-card:hover .ico-grande,
.section-dark .free-item:hover .ico-grande,
.section-dark .tl-item:hover .ico-grande { color: #F7EBC0; }

/* ---------- 6. Botones ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 34px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold-grad);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover { color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn:hover::after { transform: translateY(0); }
.btn .ico { width: 17px; height: 17px; transition: transform .45s var(--ease); }
.btn:hover .ico-mover { transform: translateX(5px); }

/* Mismo aspecto que el botón "Ver catálogo": píldora, degradado dorado y sombra suave.
   Las letras conservan su estilo. */
.btn-gold {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  background: var(--boton-oro);
  background-size: 160% auto;
  border-radius: 999px;
  box-shadow: var(--boton-oro-sombra);
  transition: background-position .6s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.btn-gold::after { content: none; }
.btn-gold:hover { color: var(--btn-fg); background-position: 100% center; box-shadow: var(--boton-oro-sombra-hover); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid rgba(23, 20, 17, 0.3);
}
.btn-outline:hover { border-color: transparent; }
.section-dark .btn-outline,
.hero-page .btn-outline,
.cta-band .btn-outline,
.cta-simple .btn-outline {
  --btn-fg: var(--cream);
  border-color: rgba(251, 247, 241, 0.38);
}

.btn-sm { padding: 13px 24px; font-size: 10.5px; letter-spacing: 0.18em; }

.btn-row { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 40px; }
.center .btn-row { justify-content: center; }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 6px;
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.45);
  transition: gap .4s var(--ease), border-color .4s var(--ease);
}
.link-gold .ico { width: 15px; height: 15px; }
.link-gold:hover { gap: 17px; border-color: var(--gold); }
.section-dark .link-gold { color: var(--gold-light); }

/* ---------- 8. Encabezado ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.site-header.is-solid {
  height: 72px;
  background: rgba(251, 247, 241, 0.93);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.55);
  box-shadow: 0 2px 30px -12px rgba(20, 16, 12, 0.4);
}

.header-inner {
  width: min(100% - 52px, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 32px; height: 48px; object-fit: contain; transition: transform .5s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.1); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .45s var(--ease);
}

.brand-sub {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--gold-deep);
  margin-top: 1px;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  position: relative;
  padding: 11px 18px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color .35s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 2px;
  background: var(--gold-bar);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--gold-deep); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Botón de WhatsApp del encabezado (contorno dorado) */
.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1.5px solid rgba(176, 138, 52, 0.75);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.btn-wa-header .ico { width: 18px; height: 18px; }
.btn-wa-header:hover { background: var(--boton-oro); color: var(--ink); border-color: transparent; transform: translateY(-2px); }

/* Portada clara del inicio (computadora) antes de desplazarse: el botón y el menú
   pueden caer sobre el cabello oscuro de la foto. El botón lleva relleno crema y el
   menú un halo suave detrás de las letras, en vez de aclarar toda la franja superior. */
.site-header:not(.is-solid):not(.on-dark) .btn-wa-header { background: rgba(251, 247, 241, 0.94); }
.site-header:not(.is-solid):not(.on-dark) .btn-wa-header:hover { background: var(--boton-oro); }
.site-header:not(.is-solid):not(.on-dark) .nav a { text-shadow: 0 0 14px rgba(251, 247, 241, 0.95), 0 0 5px rgba(251, 247, 241, 0.85); }
.site-header:not(.is-solid).on-dark .btn-wa-header { color: var(--cream); border-color: rgba(214, 178, 90, 0.9); }

.site-header:not(.is-solid).on-dark .brand-name { color: var(--cream); }
.site-header:not(.is-solid).on-dark .brand-sub { color: var(--gold-light); }
.site-header:not(.is-solid).on-dark .nav a { color: rgba(251, 247, 241, 0.88); }
.site-header:not(.is-solid).on-dark .nav a[aria-current="page"] { color: var(--gold-light); }
.site-header:not(.is-solid).on-dark .btn-outline { --btn-fg: var(--cream); border-color: rgba(251, 247, 241, 0.38); }
.site-header:not(.is-solid).on-dark .nav-toggle span { background: var(--cream); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 9. Hero ---------- */
/* Base compartida con los heroes de páginas interiores */
.hero-media { position: absolute; inset: 0; z-index: 0; display: block; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  animation: kenburns 28s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.19) translate3d(-1.8%, -1.6%, 0); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--grain);
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Portada del inicio.
   Computadora: fondo claro con la modelo a la derecha y texto oscuro.
   Celular y tableta (≤1024 px): foto vertical a pantalla completa y texto claro abajo. */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  /* Crece con su contenido; nunca más bajo que la proporción del fondo (1984 × 793) */
  min-height: max(560px, 40vw);
  background: #EEE7DD;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero .hero-media img {
  /* 70 %: en anchos medianos el recorte se reparte y la mano no queda bajo el texto */
  object-position: 70% center;
  transform-origin: 78% 45%;
  animation: portadaZoom 30s ease-in-out infinite alternate;
}

@keyframes portadaZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Aclara apenas la zona del texto para que se lea sobre las sombras del muro */
.hero .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 234, 0.7) 0%, rgba(246, 241, 234, 0.42) 34%, rgba(246, 241, 234, 0) 56%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 52px, var(--maxw));
  margin-inline: auto;
  padding-block: 40px 60px;
}

.hero-content { max-width: min(640px, 47%); }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #A9832F;
}
.hero-eyebrow::after {
  content: '';
  width: 100px;
  height: 1.5px;
  flex: none;
  background: linear-gradient(90deg, #B8913A, #D8B868);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 5.1vw, 6.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: #26211D;
  margin: 0;
}
.hero-title-a, .hero-title-b { display: block; }
.hero-title-b {
  font-style: italic;
  font-weight: 500;
  padding-bottom: 0.08em;   /* que el degradado no recorte los descendentes */
  background-image: linear-gradient(100deg, #9A7320 0%, #C9A13C 42%, #B08826 68%, #8F6A1C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldshift 8s ease-in-out infinite alternate;
}

.solo-movil { display: none; }

.hero-text {
  max-width: 44ch;
  margin: 26px 0 0;
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  font-weight: 400;
  line-height: 1.62;
  color: #3B342E;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .45s var(--ease), color .45s var(--ease);
}
.hero-btn .ico { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.hero-btn:hover { transform: translateY(-3px); }

.hero-btn--oro {
  color: #fff;
  background: var(--boton-oro);
  background-size: 160% auto;
  box-shadow: var(--boton-oro-sombra);
}
.hero-btn--oro:hover { background-position: 100% center; box-shadow: var(--boton-oro-sombra-hover); }
.hero-btn--oro:hover .ico { transform: translateX(5px); }

.hero-btn--linea {
  color: #2A2521;
  border: 1.5px solid rgba(176, 138, 52, 0.7);
  background: rgba(255, 255, 255, 0.18);
}
.hero-btn--linea .ico { color: #2A2521; }
.hero-btn--linea:hover { background: rgba(201, 162, 39, 0.14); border-color: #B08A34; }

/* Hero de páginas interiores */
.hero-page {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-page .hero-media img { animation-duration: 36s; object-position: center 32%; }
/* Capa oscura entre la foto y el contenido: la imagen queda de fondo y el texto manda */
.hero-page .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(56% 60% at 10% 55%, rgba(139, 26, 74, 0.3), transparent 66%),
    linear-gradient(90deg, rgba(11, 11, 12, 0.72) 0%, rgba(11, 11, 12, 0.45) 55%, rgba(11, 11, 12, 0.3) 100%),
    linear-gradient(to top, rgba(11, 11, 12, 0.97) 0%, rgba(11, 11, 12, 0.78) 40%, rgba(11, 11, 12, 0.55) 100%);
}
/* En teléfono la capa es un poco más ligera: el texto ocupa menos y la foto luce más */
@media (max-width: 900px) {
  .hero-page .hero-media::after {
    background:
      radial-gradient(56% 60% at 10% 55%, rgba(139, 26, 74, 0.24), transparent 66%),
      linear-gradient(90deg, rgba(11, 11, 12, 0.52) 0%, rgba(11, 11, 12, 0.3) 55%, rgba(11, 11, 12, 0.18) 100%),
      linear-gradient(to top, rgba(11, 11, 12, 0.9) 0%, rgba(11, 11, 12, 0.6) 40%, rgba(11, 11, 12, 0.36) 100%);
  }
}
.hero-page-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 52px, var(--maxw));
  margin-inline: auto;
  padding-block: 56px 66px;
  color: var(--cream);
}
.hero-page h1 {
  font-size: clamp(2rem, 5vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.hero-page p { color: rgba(251, 247, 241, 0.82); max-width: 50ch; margin: 16px 0 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.55);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ---------- 10. Título tipográfico del catálogo ---------- */
.page-title {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: calc(var(--nav-h) + clamp(34px, 5vw, 70px)) 0 clamp(46px, 6vw, 86px);
}
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--dots-gold);
  background-size: 26px 26px;
}
.page-title::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(46% 70% at 50% 58%, rgba(201, 162, 39, 0.22), transparent 70%),
    radial-gradient(40% 60% at 10% 20%, rgba(139, 26, 74, 0.3), transparent 70%),
    radial-gradient(40% 60% at 92% 86%, rgba(139, 26, 74, 0.22), transparent 70%);
}

.page-title h1 { margin: 0; color: inherit; line-height: 1; }

.pt-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3rem, 14vw, 11.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #FFFDF8 20%, #E6D6BF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: heroIn 1.1s var(--ease) .15s forwards;
}

.pt-script {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.02em;
  padding: 0 0.12em;
  transform: rotate(-4deg);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
  opacity: 0;
  /* Trazo caligráfico delgado: dorado sin extremos oscuros para que no se pierda */
  background-image: linear-gradient(115deg, #D9B441 0%, #FBF0C8 42%, #E8C762 66%, #D1A930 100%);
  /* Entrada + la veta dorada de .gold-text (un solo `animation` por elemento) */
  animation:
    scriptIn 1.2s var(--ease) .5s forwards,
    goldshift 8s ease-in-out 1.7s infinite alternate;
}

@keyframes scriptIn {
  from { opacity: 0; transform: translateY(18px) rotate(-4deg); }
  to   { opacity: 1; transform: translateY(0) rotate(-4deg); }
}

/* ---------- 11. Carrusel de tonos (muestras tipo carta de color) ---------- */
.color-strip {
  position: relative;
  z-index: 4;
  /* Nude liso satinado: un tono más profundo que el crema, con una luz suave arriba a la
     izquierda y una sombra tenue abajo a la derecha, como tela satinada. Sin textura. */
  background:
    radial-gradient(60% 140% at 30% 0%, rgba(255, 252, 246, 0.85), transparent 60%),
    radial-gradient(50% 120% at 85% 100%, rgba(214, 190, 160, 0.5), transparent 65%),
    linear-gradient(180deg, #EFE3D4 0%, #E6D5C0 100%);
  padding: 28px 0 30px;
  overflow: hidden;
  border-block: 1px solid rgba(180, 138, 44, 0.42);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee { position: relative; display: flex; width: max-content; animation: marquee 96s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; align-items: stretch; gap: 14px; padding-right: 14px; }

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

/* Cada tono como la ficha de una carta de color profesional:
   color plano, marco crema y rótulo. Sin brillos. */
.chip-card {
  position: relative;
  flex: none;
  width: 104px;
  padding: 5px 5px 0;
  background: #FFFDF9;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(90, 62, 30, 0.08), 0 16px 28px -18px rgba(90, 62, 30, 0.55);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}

.chip-color {
  display: block;
  height: 72px;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.chip-label { display: block; padding: 8px 3px 10px; text-align: left; }

.chip-num {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}

.chip-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.marquee:hover .chip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1px 2px rgba(90, 62, 30, 0.08), 0 26px 38px -18px rgba(90, 62, 30, 0.6);
}

/* ---------- 12. Cifras ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(23, 20, 17, 0.12);
  border: 1px solid rgba(23, 20, 17, 0.12);
}

.stat {
  position: relative;
  background: var(--cream);
  padding: 40px 24px 38px;
  text-align: center;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-bar);
  transform: scaleX(0);
  transition: transform .55s var(--ease);
}
.stat:hover::before { transform: scaleX(1); }
.stat:hover { background: #fff; }

.stat-ico {
  width: 38px; height: 38px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  transition: color .5s var(--ease), transform .5s var(--ease);
}
.stat-ico .ico { width: 100%; height: 100%; }
.stat:hover .stat-ico { color: var(--gold); transform: translateY(-4px); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-num small { font-size: 0.38em; font-weight: 700; letter-spacing: 0.02em; color: var(--gold-deep); }

.stat-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- 13. Bloques partidos ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
  border-radius: 3px;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.06); }
.split-media::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(251, 247, 241, 0.42);
  pointer-events: none;
}

.media-frame { position: relative; }
.media-frame::before {
  content: '';
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 1.5px solid rgba(201, 162, 39, 0.5);
  border-radius: 3px;
  z-index: -1;
  transition: inset .7s var(--ease);
}
.media-frame:hover::before { inset: -26px -26px 10px 10px; }

.media-tag {
  position: absolute;
  left: 0; bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--gold-light);
  padding: 14px 24px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.media-tag .ico { width: 16px; height: 16px; }

/* ---------- 14. Tarjetas de valor ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.value-card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 3px;
  padding: 44px 36px 40px;
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-bar);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .6s var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201, 162, 39, 0.5); }
.value-card::after {
  content: '';
  position: absolute;
  right: -56px; bottom: -56px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.16), transparent 68%);
  transition: transform .8s var(--ease);
}
.value-card:hover::after { transform: scale(1.35); }

.value-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.value-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  /* Contorno con el mismo filtro que .watermark (sin las líneas internas del "1") */
  color: var(--gold-deep);
  filter: url(#contorno-marca);
  opacity: 0.5;
}

.value-card h3 { position: relative; font-size: 1.4rem; margin-bottom: 12px; }
.value-card p { position: relative; color: var(--text-muted); font-size: 0.98rem; margin: 0; }

.section-dark .value-card { background: rgba(30, 30, 34, 0.7); border-color: rgba(251, 247, 241, 0.14); }
.section-dark .value-card:hover { background: var(--ink-3); border-color: rgba(201, 162, 39, 0.5); }
.section-dark .value-num { color: var(--gold-light); opacity: 0.4; }

/* ---------- 15. Listas de características con icono ---------- */
.free-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.free-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 20px 20px 20px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 3px;
  text-align: left;
  overflow: hidden;
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.free-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-bar);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform .5s var(--ease);
}
.free-item:hover::before { transform: scaleY(1); }
.free-item:hover { background: #fff; border-color: rgba(201, 162, 39, 0.5); transform: translateX(4px); box-shadow: var(--shadow-md); }

.free-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 3px 0 4px;
}
.free-item span:not(.ico-grande) { display: block; font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

.section-dark .free-item { background: rgba(30, 30, 34, 0.66); border-color: rgba(251, 247, 241, 0.13); }
.section-dark .free-item:hover { background: var(--ink-3); border-color: rgba(201, 162, 39, 0.45); }
.section-dark .free-item strong { color: var(--cream); }
.section-dark .free-item span:not(.ico-grande) { color: rgba(251, 247, 241, 0.66); }

/* Lista breve con icono dorado (sin tarjeta) */
.mini-list { display: grid; gap: 14px; margin-top: 30px; }
.mini-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-body);
}
.mini-list .ico {
  width: 28px; height: 28px;
  color: var(--gold-deep);
}
.section-dark .mini-list li { color: rgba(251, 247, 241, 0.86); }
.section-dark .mini-list .ico { color: var(--gold-light); }

/* ---------- 16. Bloque 23 FREE ---------- */
.free-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.free-badge {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(201, 162, 39, 0.22), rgba(11, 11, 12, 0) 66%);
  box-shadow: inset 0 0 0 1.5px rgba(201, 162, 39, 0.45), 0 0 90px -20px rgba(201, 162, 39, 0.4);
  isolation: isolate;
}
.free-badge::before, .free-badge::after { content: ''; position: absolute; border-radius: 50%; }
.free-badge::before { inset: 20px; border: 1px solid rgba(201, 162, 39, 0.26); }
.free-badge::after { inset: -26px; border: 1.5px dashed rgba(201, 162, 39, 0.34); animation: spin 52s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.free-badge-inner { text-align: center; }

.free-badge-ico {
  width: 46px; height: 46px;
  margin: 0 auto 6px;
  color: var(--gold-light);
}
.free-badge-ico .ico { width: 100%; height: 100%; }

.free-num {
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 10.5vw, 7.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: var(--gold-grad);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldshift 7s ease-in-out infinite alternate;
}

.free-word {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 10px;
  padding-left: 0.42em;
}

.free-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.52);
  margin-top: 14px;
}

/* ---------- 17. Presentaciones ---------- */
.formats { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.format-card {
  position: relative;
  padding: 42px 40px 40px;
  background: var(--cream);
  border: 1px solid rgba(23, 20, 17, 0.13);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.format-card::after {
  content: '';
  position: absolute;
  right: -70px; top: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent, rgba(201, 162, 39, 0.22)), transparent 68%);
  transition: transform .8s var(--ease);
}
.format-card:hover::after { transform: scale(1.3); }
.format-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201, 162, 39, 0.5); }

.format-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.format-vol {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.format-vol small { font-size: 0.34em; font-weight: 700; color: var(--gold-deep); letter-spacing: 0.02em; }

.format-card h3 { position: relative; font-size: 1.22rem; }
.format-card p { position: relative; font-size: 0.95rem; color: var(--text-muted); margin: 10px 0 0; }

.format-meta { position: relative; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 13px 7px 10px;
  border: 1px solid rgba(23, 20, 17, 0.18);
  border-radius: 100px;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.6);
}
.pill .ico { width: 14px; height: 14px; color: var(--gold-deep); }

/* ---------- 18. Vitrina de tonos ---------- */
.showcase { display: grid; grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); gap: 6px; }

.showcase-tile {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.showcase-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 58%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.showcase-tile:hover { transform: scale(1.14); z-index: 3; box-shadow: var(--shadow-lg); }
.showcase-tile:hover::after { opacity: 1; }

.showcase-info {
  position: relative;
  z-index: 2;
  padding: 12px 10px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.showcase-tile:hover .showcase-info { opacity: 1; transform: translateY(0); }
.showcase-info b { display: block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; line-height: 1.2; }
.showcase-info i { font-style: normal; font-size: 9px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold-light); }

/* ---------- 19. Mapa de cobertura ---------- */
.map-wrap { position: relative; width: 100%; }

.mx-map { position: relative; margin: 0; }
.mx-map__svg { display: block; width: 100%; height: auto; overflow: visible; }

.mx-map__halo { pointer-events: none; }

/* Geometría real de los 32 estados (Natural Earth). Cada estado se ilumina
   en ola de oeste a este; al pasar el cursor o tocarlo se resalta y muestra
   su nombre. */
.mx-map__states path {
  fill: url(#mapDots);
  fill-opacity: 0.62;
  /* Divisiones de los estados más marcadas que la retícula de puntos */
  stroke: rgba(236, 206, 120, 0.95);
  stroke-width: 1.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  animation: estadoLuz 7.2s ease-in-out infinite;
  animation-delay: calc(var(--ola, 0) * 0.16s);
  animation-play-state: paused;
  transition: stroke .3s var(--ease);
}
.map-wrap.is-in .mx-map__states path { animation-play-state: running; }

@keyframes estadoLuz {
  0%, 62%, 100% { fill-opacity: 0.62; }
  72%           { fill-opacity: 1; }
}

.mx-map__states path:hover,
.mx-map__states path.is-active {
  fill: #E0BD54 !important;
  fill-opacity: 0.9 !important;
  stroke: #FFF6DA;
}

.mx-map__tip {
  position: absolute;
  z-index: 3;
  top: 0; left: 0;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.6), 0 14px 30px -10px rgba(0, 0, 0, 0.7);
  transform: translate(-50%, calc(-100% - 14px));
}

/* Abajo a la izquierda cae sobre el Pacífico: no tapa ningún estado */
.map-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px 18px 18px;
  border-radius: 3px;
  background: rgba(11, 11, 12, 0.76);
  border: 1px solid rgba(201, 162, 39, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.map-badge b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.map-badge small {
  display: block;
  margin-top: 5px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.72);
  line-height: 1.4;
}

/* ---------- 20. Catálogo: barra de filtros ---------- */
.toolbar {
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid rgba(23, 20, 17, 0.1);
  padding-block: 18px;
}

.toolbar-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.toolbar-row + .toolbar-row { margin-top: 13px; }

.search { position: relative; flex: 1 1 250px; max-width: 340px; }
.search input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 100px;
  font-size: 14px;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18); }
.search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }

.fchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
  color: var(--text-body);
  transition: all .38s var(--ease);
}
.fchip i { width: 12px; height: 12px; border-radius: 50%; display: block; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16); }
.fchip:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.12); }
.fchip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); font-weight: 500; }

.seg { display: inline-flex; padding: 3px; background: rgba(23, 20, 17, 0.08); border-radius: 100px; }
.seg button { padding: 9px 18px; border-radius: 100px; font-size: 11.5px; letter-spacing: 0.08em; color: var(--text-muted); transition: all .38s var(--ease); }
.seg button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); font-weight: 500; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 40px 10px 17px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 100px;
  font-size: 11.5px;
  cursor: pointer;
  transition: border-color .4s var(--ease);
}
.select-wrap select:hover, .select-wrap select:focus { border-color: var(--gold); outline: none; }
.select-wrap svg { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-muted); }

.toolbar-fams .filter-chips { flex: 1 1 auto; }

.toolbar-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.toolbar-count b { color: var(--ink); font-weight: 600; }

.btn-reset {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 4px;
  transition: color .35s var(--ease);
}
.btn-reset:hover { color: var(--gold-deep); }

/* ---------- 21. Catálogo: fichas ---------- */
.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 22px;
  margin-top: 42px;
}

/* Columna anclada arriba: un <button> centra su contenido en vertical cuando la
   fila lo estira (por un nombre de 2 líneas en la ficha vecina), y eso dejaba más
   espacio sobre la foto en unas fichas que en otras. */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
/* Los efectos al pasar el cursor solo en equipos con cursor: en iPhone, un efecto hover
   que descubre contenido (como la barra "Ver detalle") hace que el primer toque solo
   active el hover y no abra la ficha. */
@media (hover: hover) { .pcard:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); border-color: rgba(201, 162, 39, 0.6); } }

/* El tono como superficie de esmalte: luz arriba-izquierda y sombra
   abajo-derecha, para que un blanco nacarado no se lea como cuadro vacío. */
.pcard-visual {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(84% 66% at 24% 10%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 58%),
    radial-gradient(110% 80% at 86% 104%, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0) 62%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%),
    var(--tone);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.pcard-visual::after {
  content: '';
  position: absolute;
  top: -60%; left: -75%;
  width: 45%; height: 220%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(18deg);
  transition: left .85s var(--ease);
  pointer-events: none;
}
@media (hover: hover) { .pcard:hover .pcard-visual::after { left: 130%; } }

.pcard-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform 1s var(--ease); }
@media (hover: hover) { .pcard:hover .pcard-photo { transform: scale(1.07); } }

.pcard-num {
  position: absolute;
  top: 12px; left: 15px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  transition: opacity .45s var(--ease);
}
.pcard.is-light .pcard-num { color: var(--ink); text-shadow: none; opacity: 0.32; }
/* Sobre la foto de producto (fondo beige) el número va siempre en tinta */
.catalog.con-fotos .pcard-num { color: var(--ink); text-shadow: none; opacity: 0.4; }
@media (hover: hover) { .pcard:hover .pcard-num { opacity: 0.85; } }

.pcard-fx {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 11px 6px 8px;
  border-radius: 100px;
  background: rgba(11, 11, 12, 0.84);
  color: var(--gold-light);
  backdrop-filter: blur(6px);
}
.pcard-fx .ico { width: 11px; height: 11px; }

.pcard-body {
  position: relative;
  flex: 1 1 auto;   /* el blanco inferior absorbe la diferencia de altura */
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(23, 20, 17, 0.09);
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
}

.pcard-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex: none;
  background: var(--tone);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18), 0 2px 7px rgba(0, 0, 0, 0.14);
}

.pcard-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pcard-hex {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.pcard-cta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--gold-light);
  padding: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
}
.pcard-cta .ico { width: 15px; height: 15px; }
@media (hover: hover) { .pcard:hover .pcard-cta { transform: translateY(0); } }

/* Vista muro */
.catalog.view-wall { grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); gap: 6px; }

.catalog.view-wall .pcard {
  border: 0;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--tone);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
@media (hover: hover) { .catalog.view-wall .pcard:hover { transform: scale(1.07); z-index: 4; box-shadow: var(--shadow-lg); } }
.catalog.view-wall .pcard-visual,
.catalog.view-wall .pcard-fx,
.catalog.view-wall .pcard-cta { display: none; }

.catalog.view-wall .pcard-body {
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.36) 56%, transparent);
  padding: 32px 15px 15px;
  color: #fff;
}
.catalog.view-wall .pcard-dot { display: none; }
.catalog.view-wall .pcard-name { color: #fff; font-size: 0.9rem; }
.catalog.view-wall .pcard-hex { color: rgba(255, 255, 255, 0.78); }
.catalog.view-wall .pcard-num { color: #fff; opacity: 0.6; font-size: 1.5rem; }
.catalog.view-wall .pcard.is-light .pcard-num { color: var(--ink); opacity: 0.4; }

.catalog .pcard.is-hidden,
.catalog.view-wall .pcard.is-hidden { display: none; }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 84px 20px; color: var(--text-muted); }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 10px; }

/* ---------- 22. Ficha ampliada ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-panel {
  position: relative;
  width: min(100%, 900px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .55s var(--ease);
  box-shadow: var(--shadow-lg);
}
.lightbox.is-open .lightbox-panel { transform: none; opacity: 1; }

.lightbox-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 26% 14%, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 54%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.16)),
    var(--tone);
}
.lightbox-visual img.lb-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.lb-bignum {
  position: absolute;
  left: 24px; bottom: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff;
  opacity: 0.42;
}
.lightbox-visual.is-light .lb-bignum { color: var(--ink); opacity: 0.26; }

.lightbox-body { padding: 44px 40px; }
.lightbox-body .eyebrow { margin-bottom: 14px; }
.lightbox-body h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

.lb-specs { margin: 28px 0 0; border-top: 1px solid rgba(23, 20, 17, 0.14); }

.lb-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 20, 17, 0.14);
  font-size: 0.93rem;
}
.lb-spec dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lb-spec dt .ico { width: 18px; height: 18px; color: var(--gold-deep); }
.lb-spec dd { margin: 0; display: flex; align-items: center; gap: 10px; text-align: right; }

.lb-swatch { width: 22px; height: 22px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18); }

.copy-hex {
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(23, 20, 17, 0.2);
  border-radius: 100px;
  padding: 5px 12px;
  transition: all .35s var(--ease);
}
.copy-hex:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.12); }
.copy-hex.is-copied { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }

.lightbox-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 247, 241, 0.92);
  color: var(--ink);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.lightbox-close:hover { background: var(--ink); color: var(--cream); transform: rotate(90deg); }

.lb-nav { display: flex; gap: 8px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(23, 20, 17, 0.14); }
.lb-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(23, 20, 17, 0.18);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.lb-nav button:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.12); }

/* ---------- 23. Línea de tiempo ---------- */
.timeline { position: relative; margin-top: 56px; }

.tl-item { position: relative; padding-left: 74px; padding-bottom: 42px; min-height: 44px; }
.tl-item:last-child { padding-bottom: 0; }

.tl-item > .ico-grande { position: absolute; left: 0; top: 0; --size: 42px; }

/* Tramo de línea desde debajo de cada icono hasta el siguiente hito */
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px; top: 56px; bottom: 10px;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(235, 210, 146, 0.75), rgba(201, 162, 39, 0.12));
}

.tl-year {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tl-item h3 { font-size: 1.12rem; margin: 8px 0 6px; }
.tl-item p { color: var(--text-muted); margin: 0; font-size: 0.97rem; max-width: 60ch; }
.section-dark .tl-item p { color: var(--text-light); }

/* ---------- 24. Misión y visión ---------- */
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.mv-card {
  position: relative;
  padding: 44px 40px 42px;
  border: 1px solid rgba(23, 20, 17, 0.13);
  border-radius: 3px;
  background: var(--cream);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.mv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201, 162, 39, 0.5); }
.mv-card::after {
  content: '';
  position: absolute;
  right: -50px; bottom: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 68%);
  transition: transform .8s var(--ease);
}
.mv-card:hover::after { transform: scale(1.3); }

.mv-card .ico-grande { margin-bottom: 26px; }
.mv-card h3 { position: relative; font-size: 1.5rem; margin-bottom: 12px; }
.mv-card p { position: relative; color: var(--text-muted); margin: 0; font-size: 0.96rem; }
.mv-card p.lead-line { color: var(--text-body); font-size: 1.08rem; font-weight: 400; }

/* ---------- 25. Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid rgba(23, 20, 17, 0.13);
  border-radius: 3px;
  background: var(--cream);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.contact-card + .contact-card { margin-top: 14px; }
.contact-card:hover { transform: translateX(7px); border-color: rgba(201, 162, 39, 0.6); box-shadow: var(--shadow-md); }

.contact-card h3 { font-size: 1.1rem; margin-bottom: 3px; }
.contact-card p { margin: 0; font-size: 0.93rem; color: var(--text-muted); }
.contact-card .value { display: block; margin-top: 6px; font-size: 1.02rem; font-weight: 500; color: var(--ink); word-break: break-word; }

.form {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(23, 20, 17, 0.13);
  border-radius: 3px;
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}
.form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-bar); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: var(--radius);
  font-size: 15px;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 116px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.channel-choice { display: flex; gap: 10px; flex-wrap: wrap; }
.channel-choice label {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-body);
  transition: all .38s var(--ease);
}
.channel-choice label .ico { width: 20px; height: 20px; }
.channel-choice label:hover { border-color: var(--gold); }
.channel-choice input { position: absolute; opacity: 0; pointer-events: none; }
.channel-choice label:has(input:checked) { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.channel-choice label:has(input:checked) .ico { color: var(--gold-light); }

.form-note { font-size: 12.5px; color: var(--text-muted); margin: 18px 0 0; line-height: 1.55; }

/* ---------- 26. Preguntas frecuentes ---------- */
.faq { border-top: 1px solid rgba(23, 20, 17, 0.14); }
.faq-item { border-bottom: 1px solid rgba(23, 20, 17, 0.14); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.faq-q:hover { color: var(--gold-deep); }

.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold-deep); transition: transform .45s var(--ease), opacity .45s var(--ease); }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a { overflow: hidden; max-height: 0; transition: max-height .55s var(--ease); }
.faq-a p { color: var(--text-muted); margin: 0 0 26px; max-width: 72ch; font-size: 0.99rem; }

/* ---------- 27. Llamado final ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding-block: clamp(78px, 9vw, 130px);
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--dots-gold);
  background-size: 26px 26px;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.24), transparent 56%),
    radial-gradient(circle at 20% 80%, rgba(139, 26, 74, 0.26), transparent 54%);
  animation: breathe 10s ease-in-out infinite alternate;
}

@keyframes breathe {
  from { transform: scale(0.9); opacity: 0.68; }
  to   { transform: scale(1.12); opacity: 1; }
}

.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(251, 247, 241, 0.78); max-width: 52ch; margin-inline: auto; }

.cta-rose { width: 44px; margin: 0 auto 26px; animation: float 5.5s ease-in-out infinite alternate; }

@keyframes float {
  from { transform: translateY(-6px) rotate(-4deg); }
  to   { transform: translateY(6px) rotate(4deg); }
}

/* Llamado breve: una línea de texto y los botones, en una sola franja */
.cta-simple {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(46px, 5.5vw, 70px);
}
.cta-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--dots-gold);
  background-size: 26px 26px;
  opacity: 0.7;
}
.cta-simple-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
}
.cta-simple h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); color: var(--cream); }
.cta-simple p { margin: 8px 0 0; color: rgba(251, 247, 241, 0.72); }
.cta-simple-acciones { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 28. Pie de página ---------- */
.site-footer {
  position: relative;
  background: #060607;
  color: rgba(251, 247, 241, 0.68);
  font-size: 0.93rem;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dots-gold);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

/* Línea divisoria del pie: blanca, fina y desvanecida en los extremos */
.footer-colors {
  height: 1px;
  width: 100%;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55) 18%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.55) 82%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-block: 76px 58px;
  border-bottom: 1px solid rgba(251, 247, 241, 0.13);
}

.footer-logo { width: 200px; margin-bottom: 24px; }
.footer-about p { margin: 0 0 18px; max-width: 42ch; color: rgba(251, 247, 241, 0.62); font-size: 0.93rem; }
.footer-legal { font-family: var(--font-script); font-size: 1.45rem; color: var(--gold-light); }

.footer-title {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 22px;
}

.footer-list li + li { margin-top: 12px; }
.footer-list a, .footer-list span { color: rgba(251, 247, 241, 0.68); transition: color .35s var(--ease); }
.footer-list a:hover { color: var(--gold-light); }

.footer-contact a { display: inline-flex; align-items: center; gap: 10px; word-break: break-word; }
.footer-contact .ico { width: 17px; height: 17px; color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 26px 30px;
  /* Deja libre la esquina donde se posa el botón de volver arriba */
  padding-right: 62px;
  font-size: 12px;
  color: rgba(251, 247, 241, 0.46);
}
.footer-bottom a { color: var(--gold-light); transition: color .35s var(--ease); }
.footer-bottom a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 29. Elementos flotantes ---------- */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 22px 15px 17px;
  border-radius: 100px;
  background: #1FAF54;
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px -12px rgba(31, 175, 84, 0.7);
  transform: translateY(90px);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .55s var(--ease), box-shadow .45s var(--ease);
}
.float-wa .ico { width: 21px; height: 21px; }
.float-wa.is-visible { transform: translateY(0); opacity: 1; }
.float-wa:hover { box-shadow: 0 22px 46px -12px rgba(31, 175, 84, 0.85); transform: translateY(-3px); }
.float-wa.is-tucked { transform: translateY(110px); opacity: 0; pointer-events: none; }

.to-top {
  position: fixed;
  right: 22px; bottom: 96px;
  z-index: 109;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .5s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--boton-oro); color: var(--ink); }
.to-top.is-low { bottom: 22px; }

.toast {
  position: fixed;
  left: 50%; bottom: 30px;
  transform: translate(-50%, 24px);
  z-index: 320;
  background: var(--ink);
  color: var(--gold-light);
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all .45s var(--ease);
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- 30. Aparición al hacer scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-scale { transform: scale(0.94); }

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

.hero-reveal > * { opacity: 0; transform: translateY(24px); animation: heroIn 1.1s var(--ease) forwards; }
.hero-reveal > *:nth-child(1) { animation-delay: .18s; }
.hero-reveal > *:nth-child(2) { animation-delay: .32s; }
.hero-reveal > *:nth-child(3) { animation-delay: .46s; }
.hero-reveal > *:nth-child(4) { animation-delay: .6s; }
.hero-reveal > *:nth-child(5) { animation-delay: .74s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- 31. Adaptación a pantallas ---------- */

/* Portada en computadoras angostas (1025–1279 px): el fondo claro deja menos espacio
   libre a la izquierda, así que el texto se compacta para no encimarse con la mano */
@media (min-width: 1025px) and (max-width: 1279px) {
  .hero-title { font-size: 4.3vw; }
  .hero-text { max-width: 36ch; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 32px; }
  .hero-btn { padding: 16px 28px; }
}

/* Portada del inicio en celular y tableta: foto vertical y texto claro abajo */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-end;
    background: #2A241F;
  }
  .hero .hero-media img { object-position: 50% 14%; transform-origin: 50% 30%; }
  /* En celular el texto ocupa casi toda la altura de la foto: el degradado oscuro sube
     hasta arriba (más fuerte donde va el texto) para que el contenido tenga protagonismo. */
  .hero .hero-media::after {
    background:
      linear-gradient(to top, rgba(18, 14, 11, 0.97) 0%, rgba(18, 14, 11, 0.9) 30%, rgba(18, 14, 11, 0.78) 52%, rgba(18, 14, 11, 0.58) 72%, rgba(18, 14, 11, 0.42) 86%, rgba(18, 14, 11, 0.6) 100%),
      linear-gradient(90deg, rgba(18, 14, 11, 0.5), rgba(18, 14, 11, 0.12) 75%);
  }
  .hero-eyebrow, .hero-title, .hero-text { text-shadow: 0 2px 22px rgba(10, 8, 6, 0.55); }
  .hero-inner { padding-block: 32px 54px; }
  .hero-content { max-width: 560px; }

  .hero-eyebrow { display: block; margin-bottom: 22px; color: #E3C57A; font-size: 11.5px; letter-spacing: 0.34em; }
  .hero-eyebrow::after { display: block; width: 120px; margin-top: 18px; background: linear-gradient(90deg, #C9A23D, #E9CF83); }

  .hero-title { font-size: clamp(2.7rem, 11.5vw, 4.4rem); color: #FBF4EA; line-height: 1.02; }
  .hero-title-b { background-image: linear-gradient(100deg, #D6AE4C 0%, #F2DD9A 45%, #D8B356 72%, #C9A23D 100%); }
  .solo-movil { display: inline; }
  .solo-escritorio { display: none; }

  .hero-text { margin-top: 22px; font-size: 1.1rem; color: rgba(251, 244, 234, 0.9); max-width: 34ch; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 32px; max-width: 380px; }
  .hero-btn { padding: 19px 26px; }
  .hero-btn--oro { color: #1C1712; }
  .hero-btn--linea { color: #FBF4EA; border-color: rgba(214, 178, 90, 0.9); background: rgba(0, 0, 0, 0.18); }
  .hero-btn--linea .ico { color: #FBF4EA; }
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .contact-grid { grid-template-columns: 1fr; }
  .free-hero { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .free-hero .eyebrow { justify-content: center; }
  .free-hero .rule-gold, .free-hero .lede { margin-inline: auto; }
  .free-badge { order: -1; max-width: 310px; }
  .map-badge { position: static; display: inline-flex; margin-top: 22px; pointer-events: auto; }
}

@media (max-width: 900px) {
  :root { --nav-h: 74px; }

  /* Sin backdrop-filter: crearía un containing block que recortaría
     el menú desplegable (position: fixed) a la altura del encabezado. */
  .site-header.is-solid { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(251, 247, 241, 0.97); }

  .nav-toggle { display: flex; z-index: 140; position: relative; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 390px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 90px 44px;
    background: var(--ink);
    background-image: var(--dots-gold);
    background-size: 26px 26px;
    transform: translateX(100%);
    transition: transform .6s var(--ease);
    z-index: 130;
  }
  body.nav-open .nav { transform: translateX(0); }

  .nav a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--cream) !important;
    padding: 12px 0;
  }
  .nav a::after { left: 0; right: auto; width: 52px; bottom: 8px; }
  .nav a[aria-current="page"] { color: var(--gold-light) !important; }
  body.nav-open .nav-toggle span { background: var(--cream) !important; }

  .header-cta .btn { display: none; }
  .btn-wa-header { padding: 9px 13px; gap: 8px; font-size: 10px; letter-spacing: 0.16em; border-radius: 9px; }
  .btn-wa-header .ico { width: 16px; height: 16px; }

  .split { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16 / 11; }
  .media-frame::before { inset: -12px -12px 12px 12px; }
  /* En una columna la ficha es más alta que la pantalla: se desplaza toda la capa (más
     fiable en iPhone que un scroll interno) y la ficha queda centrada cuando cabe. */
  .lightbox { place-items: start center; overflow-y: auto; overscroll-behavior: contain; padding: 16px; }
  .lightbox-panel { grid-template-columns: 1fr; max-height: none; overflow: visible; margin-block: auto; }
  /* Cuadrada en una columna: la foto (1:1) se ve completa, sin cortar tapa ni base */
  .lightbox-visual { min-height: 0; aspect-ratio: 1; }
  .lb-bignum { font-size: 3.8rem; }
  .watermark { display: none; }
}

@media (max-width: 760px) {
  .toolbar { padding-block: 12px; }
  .toolbar-row + .toolbar-row { margin-top: 9px; }
  .toolbar-row:not(.toolbar-fams) { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
  .toolbar-row:not(.toolbar-fams)::-webkit-scrollbar { display: none; }
  .toolbar-row:not(.toolbar-fams) > * { flex: none; }
  .search { flex: 0 0 210px; max-width: none; }
  .toolbar-fams { flex-wrap: wrap; row-gap: 10px; }
  .filter-chips {
    flex: 1 1 100%;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent);
    mask-image: linear-gradient(90deg, #000 90%, transparent);
  }
  .filter-chips::-webkit-scrollbar { display: none; }
  .fchip { flex: none; }
  .toolbar-count { margin-left: 0; }
  .btn-reset { margin-left: auto; padding-block: 0; }

  .chip-card { width: 92px; }
  .chip-color { height: 62px; }
  .marquee { animation-duration: 80s; }
}

@media (max-width: 640px) {
  body { font-size: 15.8px; }
  .container, .container-narrow, .header-inner, .hero-inner, .hero-page-inner { width: calc(100% - 34px); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-block: 56px 44px; }
  .footer-bottom { padding-right: 0; padding-bottom: 80px; }
  .form-grid { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 13px; }
  .catalog.view-wall { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 4px; }
  .pcard-body { padding: 14px 13px 16px; gap: 10px; }
  .pcard-dot { width: 21px; height: 21px; }
  .pcard-name { font-size: 0.88rem; }
  .pcard-num { font-size: 1.45rem; }
  /* En fichas angostas, acabados largos ("Transparente", "Iridiscente")
     chocaban con el número: la etiqueta baja a la esquina inferior. */
  .pcard-fx { top: auto; right: auto; bottom: 10px; left: 10px; }
  .lightbox-body { padding: 32px 24px 36px; }
  .float-wa span { display: none; }
  .float-wa { padding: 16px; border-radius: 50%; }
  .stat { padding: 30px 14px; }
  .btn { padding: 16px 26px; }
  .value-card { padding: 34px 26px; }
  .mv-card { padding: 34px 26px; }
  .format-card { padding: 32px 26px; }
  .showcase { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 4px; }
  .ornament::before, .ornament::after { width: 34px; }
  .tl-item { padding-left: 60px; }
  .tl-item > .ico-grande { --size: 36px; }
  .tl-item:not(:last-child)::before { left: 17px; top: 48px; }
  .contact-card { padding: 20px 18px; gap: 16px; }
  .free-item { padding: 16px 16px 16px 14px; gap: 14px; }
}

/* Teléfonos muy angostos: el botón de WhatsApp del encabezado queda solo con el icono */
@media (max-width: 370px) {
  .btn-wa-header span { display: none; }
  .btn-wa-header { padding: 9px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero-reveal > *, .pt-word, .pt-script { opacity: 1 !important; transform: none !important; }
  .pt-script { transform: rotate(-4deg) !important; }
}

@media print {
  .site-header, .float-wa, .to-top, .toolbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
