/* ============================================================
   youware · maqueta de rediseño v2 (cálido & accesible)
   Reglas de color:
   · Azul denim = mundos inmersivos (hero, a tu medida, CTA header)
   · Rojo = acento en zonas crema, NUNCA junto al azul ni al negro
   · Sin fondos negros
   Tipografía: Fraunces (display) + Inter (UI)
   ============================================================ */

:root {
  --red:         #D81F2A;
  --red-deep:    #B3141F;

  --denim:       #2E4F8C;   /* azul denim royal (muestreado de assets) */
  --denim-deep:  #1B2F57;   /* indigo profundo para fondos */
  --denim-soft:  #5E7CAE;
  --denim-wash:  #B3C6E4;   /* azul lavado claro para texto sobre denim */

  --ink:         #1C2230;   /* tinta con matiz frío (no negro puro) */
  --ink-soft:    #434B5C;
  --muted:       #7A8194;

  --paper:       #FAF6F0;
  --sand:        #F0E8DD;
  --sand-deep:   #EBE0D1;
  --line:        rgba(28, 34, 48, 0.12);
  --line-light:  rgba(255, 255, 255, 0.22);
  --white:       #ffffff;

  --radius:      14px;
  --radius-lg:   22px;
  --maxw:        1200px;
  --shadow:      0 22px 50px -26px rgba(20, 30, 55, 0.55);
  --shadow-sm:   0 8px 20px -14px rgba(20, 30, 55, 0.45);

  --ff-display:  "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body:     "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
  display: inline-block;
}

.section { padding: 96px 0; }
.section--tight { padding: 74px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--denim { background: var(--denim); color: #fff; border-color: var(--denim); }
.btn--denim:hover { background: var(--denim-deep); border-color: var(--denim-deep); }
.btn--cream { background: var(--paper); color: var(--denim-deep); border-color: var(--paper); }
.btn--cream:hover { background: #fff; border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--outline-light:hover { border-color: #fff; background: #fff; color: var(--denim-deep); }
.btn .ico-wa { width: 1.25em; height: 1.25em; flex: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; }
.btn--disabled {
  background: var(--sand);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--denim-deep);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-block: 9px;
}
.topbar span { opacity: .82; }
@media (max-width: 640px) { .topbar span + span { display: none; } }

/* ---------- Header (crema opaco para evitar choques de color al hacer scroll) ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 26px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: 4px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--denim);
  transition: width .2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 860px) { .nav { display: none; } }

/* ---------- Hero (impactante, denim con textura) ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(18,30,58,0.94) 0%, rgba(27,47,87,0.86) 46%, rgba(46,79,140,0.72) 100%),
    url("assets/lifestyle/denim-texture.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  padding-block: 96px;
}
.hero-copy { max-width: 920px; }
.hero .eyebrow { color: var(--denim-wash); }
.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--denim-wash); }
.hero p.lead {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-meta {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 52px; padding-top: 30px;
  border-top: 1px solid var(--line-light);
}
.hero-meta div { text-align: center; }
.hero-meta b {
  font-family: var(--ff-display); font-size: 28px; display: block; color: #fff;
}
.hero-meta span { font-size: 13.5px; color: var(--denim-wash); }
@media (max-width: 860px) {
  .hero .container { min-height: 78vh; padding-block: 64px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
}

/* ---------- Section heading ---------- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 44px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin: 10px 0 0; color: var(--muted); max-width: 48ch; }
@media (max-width: 640px) { .section-head { flex-direction: column; align-items: flex-start; } }

/* ---------- Product grid (zona crema · acento rojo, sin azul) ---------- */
.products { background: var(--paper); }
.cat-label {
  font-family: var(--ff-display); font-weight: 500; font-size: 26px;
  margin: 0 0 22px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.cat-label--mt { margin-top: 60px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; background: var(--sand); aspect-ratio: 4 / 5; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.card-media-link { display: block; width: 100%; height: 100%; cursor: pointer; }
.card:hover .card-media img { transform: scale(1.04); }
.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--ink);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line);
}
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { font-size: 24px; }
.card-fit { font-size: 14px; color: var(--muted); }
.card-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 10px; gap: 12px; }
.price { font-family: var(--ff-display); font-size: 24px; }
.price small { font-size: 13px; color: var(--muted); font-family: var(--ff-body); }
.card-colors { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.card-colors .cc-label { margin-right: 1px; }
.card-colors .color-dot { width: 14px; height: 14px; }
.card-actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.buy-links { display: flex; gap: 14px; font-size: 13px; color: var(--muted); }
.buy-links a { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }
.buy-links a:hover { color: var(--red); }
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- A tu medida (mundo denim) ---------- */
.medida {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18,30,58,0.95), rgba(27,47,87,0.88)),
    url("assets/lifestyle/denim-texture.jpg") center/cover no-repeat;
}
.medida .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.medida .eyebrow { color: var(--denim-wash); }
.medida h2 { font-size: clamp(32px, 4.4vw, 50px); color: #fff; }
.medida p.lead { color: rgba(255,255,255,0.80); font-size: 18px; margin: 18px 0 30px; max-width: 44ch; }
.steps { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps .n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--denim-deep);
  font-family: var(--ff-display); font-size: 16px;
}
.steps h4 { margin: 4px 0 2px; font-size: 16px; font-weight: 600; color: #fff; }
.steps p { margin: 0; color: rgba(255,255,255,0.66); font-size: 14.5px; }
.medida-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 3.4; box-shadow: var(--shadow); border: 6px solid rgba(255,255,255,0.10); }
.medida-figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .medida .container { grid-template-columns: 1fr; gap: 36px; }
  .medida-figure { order: -1; aspect-ratio: 4/3; }
}

/* ---------- Filosofía (crema · íconos rojos) ---------- */
.values .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sand); color: var(--red);
  display: grid; place-items: center; margin-bottom: 16px;
}
.value .ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 19px; margin-bottom: 8px; }
.value p { margin: 0; font-size: 14.5px; color: var(--muted); }
@media (max-width: 860px) { .values .container { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .values .container { grid-template-columns: 1fr; } }

/* ---------- Testimonios (arena · estrellas rojas) ---------- */
.testi { background: var(--sand); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.quote .stars { color: var(--red); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.quote p { font-family: var(--ff-display); font-size: 19px; line-height: 1.4; margin: 0 0 18px; }
.quote .who { font-size: 14px; color: var(--muted); font-weight: 500; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Newsletter (única zona de fondo rojo, aislada del azul) ---------- */
.signup { background: var(--red); color: #fff; }
.signup .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.signup h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); }
.signup p { margin: 10px 0 0; color: rgba(255,255,255,0.88); max-width: 40ch; }
.signup form { display: flex; gap: 10px; flex-wrap: wrap; }
.signup input { border: none; border-radius: 999px; padding: 14px 20px; font-size: 15px; font-family: var(--ff-body); min-width: 250px; }
.signup input:focus { outline: 2px solid #fff; }
.signup-msg { flex-basis: 100%; margin: 6px 0 0; font-size: 14px; font-weight: 500; color: #fff; }
.signup-msg.is-error { color: #ffe0e0; }

/* ---------- Footer (claro · sin negro) ---------- */
.footer { background: var(--sand-deep); color: var(--ink-soft); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer .wordmark-foot { height: 30px; width: auto; display: block; margin-bottom: 16px; }
.footer p.about { font-size: 14.5px; max-width: 34ch; color: var(--ink-soft); }
.footer h5 { font-family: var(--ff-body); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: var(--ink-soft); }
.footer ul a:hover { color: var(--denim); }
.footer .soon { font-size: 14.5px; color: var(--muted); cursor: default; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 24px; font-size: 13px; color: var(--muted); }
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom .socials a:hover { color: var(--denim); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   PÁGINA DE PRODUCTO (PDP)
   ============================================================ */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* Páginas legales (aviso de privacidad / términos) */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(30px, 5vw, 42px); margin-bottom: 6px; }
.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--ink); }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 12px 1.1em; list-style: disc; }
.legal li { margin-bottom: 6px; }
.legal a { text-decoration: underline; }
.legal .todo { background: #FBEDE0; color: #8a4b13; padding: 1px 6px; border-radius: 2px; font-size: 13px; font-weight: 500; }

.pdp-main {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 34px 0 88px;
}

/* Galería */
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .35s ease, transform .4s ease;
  will-change: opacity, transform;
}
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumb {
  width: 92px; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line); background: var(--sand);
  cursor: pointer; padding: 0;
  transition: border-color .2s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--denim); }

/* Info */
.pdp-info { position: sticky; top: 96px; }
.pdp-info .eyebrow { margin-bottom: 12px; color: var(--denim); }
.pdp-info h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; }
.pdp-price { display: flex; align-items: baseline; gap: 10px; }
.pdp-price .amount { font-family: var(--ff-display); font-size: 32px; }
.pdp-price .cur { font-size: 14px; color: var(--muted); }
.pdp-meses { font-size: 13.5px; color: var(--muted); margin: 6px 0 0; }
.pdp-desc { font-size: 17px; color: var(--ink-soft); margin: 22px 0 0; max-width: 46ch; }

.pdp-field { margin-top: 28px; }
.pdp-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.pdp-label .help a { color: var(--denim); text-transform: none; letter-spacing: 0; font-size: 13px; border-bottom: 1px solid currentColor; padding-bottom: 1px; }

.opt-row { display: flex; flex-wrap: wrap; gap: 10px; }
.color-opt {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); border-radius: 2px;
  padding: 9px 14px; font-size: 13.5px; cursor: pointer;
  background: #fff; transition: border-color .2s ease;
}
.color-opt:hover { border-color: var(--ink-soft); }
.color-opt.is-active { border-color: var(--ink); }
.color-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line); }
.dot-denim { background: linear-gradient(135deg, #4a6ea0, #2e4f8c); }
.dot-black { background: #232323; }

.size-opt {
  min-width: 50px; padding: 11px 8px; text-align: center;
  border: 1px solid var(--line); border-radius: 2px;
  font-size: 14px; cursor: pointer; background: #fff;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.size-opt:hover { border-color: var(--ink-soft); }
.size-opt.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdp-cta { margin-top: 30px; display: grid; gap: 10px; }
.pdp-wa { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.pdp-wa a { color: var(--denim); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

.pdp-assurance {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  display: grid; gap: 12px;
}
.pdp-assurance li { list-style: none; display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.pdp-assurance svg { width: 18px; height: 18px; color: var(--denim); flex: none; }
.pdp-assurance ul { margin: 0; padding: 0; display: grid; gap: 12px; }

/* Detalles / especificaciones */
.pdp-specs { background: var(--sand); }
.pdp-specs .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.spec-list { display: grid; gap: 0; }
.spec-list .row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-list .row:first-child { border-top: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: 14.5px; }
.spec-list dd { margin: 0; font-weight: 500; font-size: 14.5px; text-align: right; }
.care h3, .pdp-specs h3 { font-size: 22px; margin: 0 0 18px; }
.care-icons { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-bottom: 14px; }
.care-icons img { height: 38px; width: auto; mix-blend-mode: multiply; }
.care p { font-size: 14px; color: var(--muted); margin: 0; }

@media (max-width: 860px) {
  .pdp-main { grid-template-columns: 1fr; gap: 30px; }
  .pdp-info { position: static; }
  .pdp-specs .container { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   GUÍA · CÓMO TOMAR LAS MEDIDAS
   ============================================================ */
.guide-hero { background: var(--sand); }
.guide-hero .container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; }
.guide-hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px; }
.guide-hero p { color: var(--ink-soft); font-size: 18px; max-width: 52ch; margin: 0; }
.guide-hero figure { margin: 0; text-align: center; }
.guide-hero figure img { height: 96px; width: auto; display: inline-block; }
@media (max-width: 760px) {
  .guide-hero .container { grid-template-columns: 1fr; gap: 24px; }
  .guide-hero figure { order: -1; text-align: left; }
}

.measure-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.measure { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding-bottom: 22px; }
.measure-fig { background: var(--sand); aspect-ratio: 4 / 3; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.measure-fig img { width: 56%; height: 80%; object-fit: contain; }
.measure-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px 0; }
.measure .n {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-family: var(--ff-display); font-size: 16px;
}
.measure h3 { font-size: 18px; margin: 0; }
.measure p { margin: 12px 20px 0; color: var(--muted); font-size: 14.5px; }
@media (max-width: 860px) { .measure-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .measure-list { grid-template-columns: 1fr; } }

.size-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.size-tables h3 { font-size: 22px; margin: 0 0 16px; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th, .size-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; text-align: left; }
.size-table thead th { font-family: var(--ff-body); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.size-table tbody td:first-child { font-weight: 600; }
@media (max-width: 680px) { .size-tables { grid-template-columns: 1fr; gap: 34px; } }

.tip {
  background: var(--sand); border-left: 3px solid var(--red);
  padding: 18px 22px; border-radius: 8px; font-size: 15px; color: var(--ink-soft);
  max-width: 70ch;
}
.tip strong { color: var(--ink); }

/* ---------- Aviso de maqueta ---------- */
.mock-note {
  background: repeating-linear-gradient(45deg, #fff7d6, #fff7d6 12px, #fdeeb0 12px, #fdeeb0 24px);
  color: #6b5b00; font-size: 13px; text-align: center; padding: 8px 16px; font-weight: 500;
}

/* Hero: video de fondo con imagen de respaldo (poster) */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 1.1s ease-in-out; }
.hero-video.is-active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(18,30,58,0.92) 0%, rgba(27,47,87,0.82) 46%, rgba(46,79,140,0.66) 100%); }
