/* ============================================
   DESEI — CSS COMPLETO v4
   Fiel al preview HTML aprobado
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,300..900;1,6..96,300..900&family=Caveat:wght@400;500;700&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* MOSTAZA — arena cálida */
  --M:   #D4AF6A;
  --MD:  #A8873E;
  --MS:  #E8C96A;

  /* AMARILLO METÁLICO — oro pálido con profundidad */
  --S:   #C9991E;         /* oro metálico principal (antes #EAAA00 amarillo puro) */
  --SD:  #9A7315;         /* oro oscuro (hover, sombras) */
  --SS:  #E0B843;         /* oro claro (highlights) */
  --SL:  rgba(201,153,30,.08);

  /* FONDOS OSCUROS — chocolate */
  --BG-DARK:  #3D2010;
  --BG-DARK2: #4A2A18;

  /* TEXTO */
  --INK:  #3D2010;
  --INK2: #3D2010;
  --MID:  #7A4D2E;

  /* CREMAS */
  --CR:  #FFFDF7;
  --PA:  #F5EDD8;
  --PAW: #F4EBD9;

  /* NEUTROS CÁLIDOS (sustituyen al salmón rgba(196,115,90,...)) */
  --N-10: rgba(122, 77, 46, .10);   /* bordes muy sutiles */
  --N-20: rgba(122, 77, 46, .20);   /* bordes visibles */
  --N-30: rgba(122, 77, 46, .30);   /* bordes acentuados */
  --N-40: rgba(122, 77, 46, .40);   /* texto muy débil */

  --d:   'Bodoni Moda', Georgia, serif;
  --b:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

.desei-page {
  font-family: var(--b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--INK);
  background: var(--CR);
  overflow-x: hidden;
}

/* ── REVEAL ANIMATIONS ── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.r.v  { opacity: 1; transform: none; }
.r.d1 { transition-delay: .12s; }
.r.d2 { transition-delay: .24s; }
.r.d3 { transition-delay: .38s; }
.r.d4 { transition-delay: .52s; }
.rfade     { opacity: 0; transition: opacity 1s ease; }
.rfade.v   { opacity: 1; }

/* ── NAV ── */
.desei-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s;
}
.desei-nav.scrolled {
  background: rgba(61,32,16,.96);
  backdrop-filter: blur(8px);
  padding: .9rem 2.5rem;
}
.desei-nav.light .nav-logo { color: var(--INK); }
.nav-logo {
  font-family: var(--d);
  font-size: 1.5rem; font-weight: 300; letter-spacing: .08em;
  color: var(--INK);
  text-decoration: none;
  transition: color .3s;
}
.nav-cta {
  font-family: var(--b);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  background: transparent; color: var(--M);
  border: 1px solid rgba(201,153,30,.4); border-radius: 1px;
  padding: .55rem 1.4rem; cursor: pointer;
  transition: background .2s, border-color .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: rgba(201,153,30,.1); border-color: var(--M); }

/* ── BOTONES ── */
.btn-pri {
  font-family: var(--b);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--S); color: var(--CR);
  border: none; border-radius: 1px;
  padding: .9rem 2.2rem; cursor: pointer;
  min-height: 48px; display: inline-flex; align-items: center;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-pri:hover {
  background: var(--SD);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,115,90,.35);
  color: var(--CR);
}
.btn-sec {
  font-family: var(--b);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  background: transparent; color: var(--S);
  border: 1px solid var(--S); border-radius: 1px;
  padding: .9rem 2.2rem; cursor: pointer;
  min-height: 48px; display: inline-flex; align-items: center;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.btn-sec:hover { background: var(--S); color: var(--CR); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--b);
  font-size: .65rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(253,250,244,.4);
  border: none; background: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none;
  transition: color .2s;
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover { color: var(--CR); }

/* ── TAG / EYEBROW ── */
.tag {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--S);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 2rem;
}
.tag::before { content: ''; width: 28px; height: 1px; background: var(--S); }
.tag-c { justify-content: center; }
.tag-c::after { content: ''; width: 28px; height: 1px; background: var(--S); }

/* ── SECCIONES BASE ── */
.sec { padding: 8rem 2rem; }
@media (max-width: 700px) { .sec { padding: 5rem 1.5rem; } }
.sec-inner    { max-width: 1200px; margin: 0 auto; }
.sec-narrow   { max-width: 640px;  margin: 0 auto; }
.sec-mid      { max-width: 800px;  margin: 0 auto; }

/* ══════════════════════════════════════
   S1 — HERO
══════════════════════════════════════ */
.s-hero {
  min-height: 100vh;
  background: var(--CR);
  display: grid;
  position: relative;
  overflow: hidden;
}
.hero-bg-letter {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--d);
  font-size: 52vw; font-weight: 700; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(61,32,16,.05);
  pointer-events: none; user-select: none; line-height: .8;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem 3rem 5rem 5rem;
}
@media (max-width: 900px) { .hero-left { padding: 7rem 2rem 3rem; } }

.hero-tag {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--S);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--S); }

.hero-h1 {
  font-family: var(--d);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300; font-style: italic;
  line-height: .95; letter-spacing: -.03em;
  color: var(--INK);
  margin-bottom: 2.5rem;
}
.hero-h1 strong {
  font-weight: 900; font-style: normal;
  color: var(--S);
  display: block;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(61,32,16,.5);
  max-width: 380px;
  margin-bottom: 3.5rem;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hero-note {
  margin-top: 2.5rem;
  font-size: .62rem; letter-spacing: .08em;
  color: rgba(61,32,16,.3); text-transform: uppercase;
}
.hero-right {
  background: #3D2010;
  border-left: 1px solid var(--N-10);
  position: relative; overflow: hidden;
}
@media (max-width: 900px) {
  .hero-right { min-height: 340px; border-left: none; border-top: 1px solid var(--N-10); }
}
.hero-img { position: absolute; inset: 0; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .6; /*filter: sepia(.4);*/
}
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 3;
  animation: desei-bounce 2s ease-in-out infinite;
}
@keyframes desei-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(196,115,90,.5), transparent);
}
.hero-scroll-txt {
  font-size: .52rem; letter-spacing: .2em;
  color: rgba(196,115,90,.4); text-transform: uppercase;
}

/* ══════════════════════════════════════
   S2 — DECLARACIÓN
══════════════════════════════════════ */
.s-decl { background: var(--CR); position: relative; }
.decl-num {
  font-family: var(--d); font-size: .75rem; font-weight: 400;
  color: var(--S); letter-spacing: .2em;
  position: absolute; top: 4rem; left: 5rem;
  writing-mode: vertical-rl;
}
@media (max-width: 700px) { .decl-num { display: none; } }
.decl-h2 {
  font-family: var(--d);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.05; letter-spacing: -.025em;
  color: var(--INK);
  margin-bottom: 4rem;
}
.decl-h2 em { color: var(--S); font-style: italic; }
.decl-body { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 700px) { .decl-body { grid-template-columns: 1fr; } }
.decl-p { font-size: 1.05rem; line-height: 1.8; color: var(--MID); font-weight: 300; }
.decl-divider { width: 1px; height: 80px; background: var(--S); margin: 4rem 0 0; opacity: .35; }

/* ══════════════════════════════════════
   S3 — PROCESO
══════════════════════════════════════ */
.s-proc { background: var(--BG-DARK); padding: 8rem 5rem; position: relative; overflow: hidden; }
@media (max-width: 700px) { .s-proc { padding: 6rem 2rem; } }
.proc-bg {
  position: absolute; right: -5%; top: -10%;
  font-family: var(--d); font-size: 28rem;
  font-weight: 700; font-style: italic;
  color: transparent; -webkit-text-stroke: 1px rgba(201,153,30,.04);
  pointer-events: none; line-height: 1; user-select: none;
}
.proc-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6rem; position: relative; z-index: 1;
}
@media (max-width: 700px) { .proc-header { flex-direction: column; gap: 2rem; } }
.proc-h2 {
  font-family: var(--d);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300; font-style: italic;
  line-height: .95; letter-spacing: -.03em;
  color: var(--CR); max-width: 500px;
}
.proc-steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  border-top: 1px solid var(--N-10);
  position: relative; z-index: 1;
}
@media (max-width: 700px) { .proc-steps { grid-template-columns: 1fr; } }
.proc-step {
  padding: 3.5rem 2.5rem 3.5rem 0;
  border-right: 1px solid var(--N-10);
  transition: background .3s;
}
.proc-step:last-child { border-right: none; padding-right: 0; }
.proc-step + .proc-step { padding-left: 2.5rem; }
.proc-step:hover { background: rgba(196,115,90,.04); }
@media (max-width: 700px) {
  .proc-step { border-right: none; border-bottom: 1px solid var(--N-10); padding: 2.5rem 0; }
  .proc-step + .proc-step { padding-left: 0; }
}
.proc-n {
  font-family: var(--d); font-size: 5rem;
  font-weight: 300; font-style: italic;
  color: rgba(196,115,90,.18); line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .3s;
}
.proc-step:hover .proc-n { color: var(--S); }
.proc-t { font-family: var(--d); font-size: 1.6rem; font-weight: 300; color: var(--CR); margin-bottom: 1rem; letter-spacing: -.01em; }
.proc-b { font-size: .9rem; line-height: 1.75; color: rgba(253,250,244,.38); font-weight: 300; }

/* ══════════════════════════════════════
   S4 — BILLBOARD
══════════════════════════════════════ */
.s-billboard { background: var(--M); padding: 6rem 2rem; overflow: hidden; }
.billboard-inner { max-width: 1200px; margin: 0 auto; }
.billboard-quote {
  font-family: var(--d);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 300; font-style: italic;
  line-height: .95; letter-spacing: -.04em;
  color: var(--INK);
}
.billboard-quote span { display: inline-block; border-bottom: 3px solid rgba(28,15,8,.18); }
.billboard-attr {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(61,32,16,.45);
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.billboard-attr::before { content: ''; width: 28px; height: 1px; background: rgba(61,32,16,.3); }

/* ══════════════════════════════════════
   S5 — MOMENTOS
══════════════════════════════════════ */
.s-mom { background: var(--CR); padding: 9rem 2rem; overflow: hidden; }
.mom-header {
  display: grid; grid-template-columns: 2fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 6rem;
}
@media (max-width: 700px) { .mom-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; } }
.mom-h2 {
  font-family: var(--d);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300; font-style: italic;
  line-height: .95; letter-spacing: -.03em;
  color: var(--INK);
}
.mom-sub { font-size: .9rem; line-height: 1.8; color: var(--MID); font-weight: 300; }
.mom-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
}
@media (max-width: 700px) { .mom-grid { grid-template-columns: 1fr; } }
.mc {
  background: var(--PAW); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), background .3s, box-shadow .3s;
  cursor: default;
}
.mc:hover { transform: translateY(-4px); background: var(--PA); box-shadow: 0 16px 40px var(--N-10); }
.mc-1 { grid-column: 1/8; }
.mc-2 { grid-column: 8/13; }
.mc-3 { grid-column: 1/6; }
.mc-4 { grid-column: 6/13; }
@media (max-width: 700px) { .mc-1, .mc-2, .mc-3, .mc-4 { grid-column: 1; } }
.mc-roman {
  font-family: var(--d); font-size: 5rem; font-weight: 300; font-style: italic;
  color: rgba(196,115,90,.15); line-height: 1;
  position: absolute; top: .5rem; right: 1rem;
  pointer-events: none;
  transition: color .3s;
}
.mc:hover .mc-roman { color: rgba(196,115,90,.35); }
.mc-tag { font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--S); margin-bottom: 1.25rem; }
.mc-title { font-family: var(--d); font-size: 1.4rem; font-weight: 300; line-height: 1.2; color: var(--INK); margin-bottom: 1rem; }
.mc-body { font-size: .85rem; line-height: 1.75; color: var(--MID); font-weight: 300; }
.mc-border-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--S);
  transform: scaleX(0); transition: transform .4s cubic-bezier(.22,1,.36,1);
  transform-origin: left;
}
.mc:hover .mc-border-bottom { transform: scaleX(1); }

/* ══════════════════════════════════════
   S6 — PRODUCTO
══════════════════════════════════════ */
.s-prod {
  background: var(--BG-DARK);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
@media (max-width: 700px) { .s-prod { grid-template-columns: 1fr; } }
.prod-img { background: var(--BG-DARK); position: relative; overflow: hidden; min-height: 500px; }
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .65; filter: sepia(.3);
  transition: opacity .5s, transform .8s cubic-bezier(.22,1,.36,1);
}
.prod-img:hover img { opacity: .8; transform: scale(1.03); }
.prod-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--INK2));
}
.prod-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 700px) { .prod-content { padding: 3rem 2rem; } }
.prod-h2 {
  font-family: var(--d);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--CR); margin-bottom: 3.5rem;
}
.spec {
  padding: 1.5rem 0;
  border-top: 1px solid var(--N-10);
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem;
  align-items: start;
  transition: border-color .3s;
}
.spec:last-of-type { border-bottom: 1px solid var(--N-10); }
.spec:hover { border-color: rgba(196,115,90,.35); }
.spec-dot { width: 5px; height: 5px; background: var(--S); border-radius: 50%; margin-top: .55rem; flex-shrink: 0; }
.spec-t { font-family: var(--d); font-size: 1.1rem; font-weight: 400; color: var(--CR); margin-bottom: .3rem; }
.spec-b { font-size: .82rem; line-height: 1.7; color: rgba(253,250,244,.38); font-weight: 300; }

/* ══════════════════════════════════════
   S7 — EDITORIAL
══════════════════════════════════════ */
.s-edit { background: var(--BG-DARK); padding: 10rem 2rem; position: relative; overflow: hidden; }
.edit-glyph {
  position: absolute; left: -2%; top: 50%; transform: translateY(-50%);
  font-family: var(--d); font-size: 50vw; font-weight: 700; font-style: italic;
  color: transparent; -webkit-text-stroke: 1px rgba(201,153,30,.03);
  pointer-events: none; user-select: none; line-height: 1;
}
.edit-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.edit-lines { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 3rem; }
.edit-line-big {
  font-family: var(--d);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -.025em;
  color: var(--CR);
}
.edit-line-sm { font-size: 1rem; line-height: 1.8; color: rgba(253,250,244,.4); font-weight: 300; }
.edit-line-em {
  font-family: var(--d);
  font-size: 1.35rem; font-style: italic; font-weight: 300;
  color: var(--S); line-height: 1.3;
}

/* ══════════════════════════════════════
   S8 — FAQs
══════════════════════════════════════ */
.s-faq { background: var(--CR); padding: 9rem 2rem; }
.faq-h2 {
  font-family: var(--d);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -.025em;
  color: var(--INK); margin-bottom: 5rem;
}
.faq-item { border-top: 1px solid rgba(28,15,8,.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(28,15,8,.1); }
.faq-q {
  font-family: var(--d);
  font-size: 1.15rem; font-weight: 300;
  color: var(--INK);
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer; position: relative;
  line-height: 1.3; letter-spacing: -.01em;
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--S); }
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--d); font-size: 1.3rem; font-weight: 300;
  color: var(--S); transition: transform .35s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1); }
.faq-ai { font-size: .92rem; line-height: 1.8; color: var(--MID); font-weight: 300; padding-bottom: 1.75rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ══════════════════════════════════════
   S9 — CIERRE
══════════════════════════════════════ */
.s-close {
  background: var(--BG-DARK);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 8rem 2rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.close-bg-d {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--d); font-size: 90vw;
  font-weight: 700; font-style: italic;
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,106,.08);
  pointer-events: none; user-select: none;
  white-space: nowrap; line-height: 1;
}
.close-inner { position: relative; z-index: 1; }
.close-pre {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--S); margin-bottom: 3rem;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.close-pre::before, .close-pre::after { content: ''; width: 28px; height: 1px; background: var(--S); }
.close-h2 {
  font-family: var(--d);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 300; font-style: italic;
  color: var(--CR); line-height: .9; letter-spacing: -.04em;
  margin-bottom: .5rem;
}
.close-h2 em { color: var(--S); display: block; }
.close-sub { font-size: 1rem; line-height: 1.7; color: rgba(253,250,244,.38); font-weight: 300; max-width: 420px; margin: 3rem auto 4rem; }
.close-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.close-note { font-size: .6rem; letter-spacing: .12em; color: rgba(196,115,90,.28); text-transform: uppercase; margin-top: 2rem; }

/* ── FOOTER ── */
/*.desei-footer {*/
/*  background: var(--BG-DARK);*/
/*  border-top: 1px solid rgba(196,115,90,.07);*/
/*  padding: 2rem 3rem;*/
/*  display: flex; align-items: center; justify-content: space-between;*/
/*}*/
/*.ft-logo { font-family: var(--d); font-size: 1.1rem; font-weight: 300; color: rgba(196,115,90,.4); letter-spacing: .08em; }*/
/*.ft-links { display: flex; gap: 2rem; }*/
/*.ft-links a { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(253,250,244,.18); text-decoration: none; transition: color .2s; }*/
/*.ft-links a:hover { color: var(--S); }*/

/* ══════════════════════════════════════
   S4.5 — LOS DESEOS (obleas escritas a mano)
══════════════════════════════════════ */

.s-deseos {
  background: var(--CR);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) { .s-deseos { padding: 6rem 1.5rem; } }

.deseos-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.deseos-h2 {
  font-family: var(--d);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--INK);
  margin: 1.5rem 0 5rem;
}
.deseos-h2 em { color: var(--S); font-style: italic; }

.deseos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 900px) { .deseos-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 500px) { .deseos-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.oblea {
  aspect-ratio: 4 / 3;
  background: #FFFDF5;
  box-shadow: 0 4px 24px rgba(61,32,16,.06), inset 0 0 0 1px rgba(61,32,16,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  cursor: default;
}
.oblea span {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--INK);
  line-height: 1.2;
  text-align: center;
  display: block;
}

/* Rotaciones sutiles individuales — sensación "colocadas a mano" */
.oblea-1 { transform: rotate(-1.5deg); }
.oblea-2 { transform: rotate(1deg); }
.oblea-3 { transform: rotate(-.5deg); }
.oblea-4 { transform: rotate(2deg); }
.oblea-5 { transform: rotate(-1deg); }
.oblea-6 { transform: rotate(1.5deg); }

.oblea:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 0 12px 32px rgba(61,32,16,.12), inset 0 0 0 1px rgba(61,32,16,.06);
}

/* Al hacer reveal, mantienen su rotación individual */
.oblea.r { opacity: 0; }
.oblea.r.v { opacity: 1; }
.oblea-1.r.v { transform: rotate(-1.5deg); }
.oblea-2.r.v { transform: rotate(1deg); }
.oblea-3.r.v { transform: rotate(-.5deg); }
.oblea-4.r.v { transform: rotate(2deg); }
.oblea-5.r.v { transform: rotate(-1deg); }
.oblea-6.r.v { transform: rotate(1.5deg); }

.deseos-cta {
  font-family: var(--d);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 300;
  color: var(--S);
  letter-spacing: -.01em;
}
.deseos-cta em { font-style: italic; }

/* ══════════════════════════════════════
   S6 — CARRUSEL PRODUCTO
══════════════════════════════════════ */

.prod-carousel {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.prod-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.prod-carousel-track::-webkit-scrollbar { display: none; }

.prod-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 100%;
  min-height: 500px;
  position: relative;
}

.prod-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  filter: sepia(.15);
  transition: opacity .5s, transform .8s cubic-bezier(.22,1,.36,1);
}

.prod-carousel:hover .prod-carousel-slide img {
  opacity: .9;
}

.prod-carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}

.prod-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(253,250,244,.28);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.prod-carousel-dots .dot:hover {
  background: rgba(253,250,244,.5);
}

.prod-carousel-dots .dot.active {
  background: var(--M);
  transform: scale(1.3);
}

/* El overlay derecho del CSS actual sigue funcionando por encima del carrusel */
.prod-carousel .prod-img-overlay {
  z-index: 2;
  pointer-events: none;
}

/* ══════════════════════════════════════
   RESERVA — Fluent Forms restyle DESEI
══════════════════════════════════════ */

.desei-reserva-form .fluentform,
.desei-reserva-form .ff-el-form-control,
.desei-reserva-form .ff-el-input--label label {
  font-family: var(--b) !important;
}

.desei-reserva-form .ff-el-input--label label {
  font-size: .68rem !important;
  font-weight: 500 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--S) !important;
  margin-bottom: .75rem !important;
}

.desei-reserva-form .ff-el-form-control,
.desei-reserva-form select.ff-el-form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(196,115,90,.3) !important;
  border-radius: 0 !important;
  padding: .9rem 0 !important;
  font-size: 1rem !important;
  color: var(--INK) !important;
  font-weight: 400 !important;
  transition: border-color .3s;
  box-shadow: none !important;
}

.desei-reserva-form .ff-el-form-control:focus,
.desei-reserva-form select.ff-el-form-control:focus {
  border-bottom-color: var(--S) !important;
  outline: none !important;
}

.desei-reserva-form .ff-el-form-control::placeholder {
  color: rgba(61,32,16,.35) !important;
  font-weight: 300 !important;
}

.desei-reserva-form .ff-el-group {
  margin-bottom: 2rem !important;
}

.desei-reserva-form .ff-el-form-check label,
.desei-reserva-form .ff-el-form-check-label {
  font-size: .85rem !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  color: var(--MID) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.desei-reserva-form .ff-el-form-check a {
  color: var(--S) !important;
  border-bottom: 1px solid rgba(196,115,90,.4);
}

.desei-reserva-form .ff-btn-submit {
  background: var(--S) !important;
  color: var(--CR) !important;
  font-family: var(--b) !important;
  font-size: .75rem !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  padding: 1.3rem 3rem !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: background .3s;
  width: auto !important;
  min-width: 240px;
  margin-top: 1rem !important;
}

.desei-reserva-form .ff-btn-submit:hover {
  background: var(--INK) !important;
  color: var(--M) !important;
}

.desei-reserva-form .ff-message-success {
  background: transparent !important;
  border: none !important;
  color: var(--INK) !important;
  font-family: var(--d) !important;
  font-size: 1.4rem !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  text-align: center !important;
  padding: 3rem 1rem !important;
}

/* ══════════════════════════════════════════════════════════════
   DESEI — MODAL DE RESERVA (GLOBAL)
   Añadir al FINAL de assets/css/desei.css
   Reemplaza al que estaba en product.css

   Este bloque contiene:
   - Botón .dp-btn-reserva (para la ficha de producto)
   - Modal completo (para home + ficha)
   - Restyle de Fluent Forms dentro del modal
   ══════════════════════════════════════════════════════════════ */

/* ── BOTÓN RESERVA (ficha de producto) ── */

.dp-reserva-wrap {
  margin: 2rem 0 2.5rem;
}

.dp-btn-reserva {
  display: inline-block;
  background: var(--S);
  color: var(--CR);
  font-family: var(--b);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.4rem 3rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, transform .2s, box-shadow .3s;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 2px 12px rgba(196,115,90,.15);
}

.dp-btn-reserva:hover {
  background: var(--INK);
  color: var(--M);
  box-shadow: 0 4px 20px rgba(61,32,16,.25);
}

.dp-btn-reserva:active {
  transform: translateY(1px);
}

.dp-reserva-hint {
  margin-top: 1rem;
  font-size: .72rem;
  color: var(--MID);
  letter-spacing: .04em;
  line-height: 1.6;
}


/* ══════════════════════════════════════
   MODAL DE RESERVA
══════════════════════════════════════ */

.dp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  transition: opacity .35s ease;
}

.dp-modal.is-open {
  display: flex;
  opacity: 1;
}

/* Bloquea scroll del body cuando el modal está abierto */
body.dp-modal-lock {
  overflow: hidden;
}

.dp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61,32,16,.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.dp-modal-content {
  position: relative;
  background: var(--INK);
  color: var(--CR);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 0;
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}

.dp-modal.is-open .dp-modal-content {
  transform: translateY(0) scale(1);
}

/* Scrollbar sutil dentro del modal */
.dp-modal-content::-webkit-scrollbar { width: 6px; }
.dp-modal-content::-webkit-scrollbar-track { background: transparent; }
.dp-modal-content::-webkit-scrollbar-thumb { background: rgba(212,175,106,.2); border-radius: 3px; }

.dp-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(212,175,106,.2);
  color: var(--M);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .3s, border-color .3s, transform .2s;
  z-index: 2;
}

.dp-modal-close:hover {
  background: var(--M);
  color: var(--INK);
  border-color: var(--M);
}

.dp-modal-close:active {
  transform: scale(.95);
}

.dp-modal-inner {
  padding: 4rem 3.5rem 3.5rem;
}

@media (max-width: 700px) {
  .dp-modal-inner { padding: 3.5rem 1.75rem 2.5rem; }
  .dp-modal-close { top: .75rem; right: .75rem; }
}

.dp-modal-pre {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--M);
  margin-bottom: 1.5rem;
  text-align: center;
}

.dp-modal-title {
  font-family: var(--d);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--CR);
  text-align: center;
  margin-bottom: 1.75rem;
}

.dp-modal-title em {
  color: var(--S);
  font-style: italic;
}

.dp-modal-sub {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(253,246,238,.65);
  text-align: center;
  max-width: 440px;
  margin: 0 auto 2.75rem;
}

.dp-modal-note {
  margin-top: 1.75rem;
  font-size: .68rem;
  color: rgba(253,246,238,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}


/* ══════════════════════════════════════
   FLUENT FORMS DENTRO DEL MODAL
   Colores invertidos para fondo chocolate
══════════════════════════════════════ */

.dp-modal-form .ff-el-input--label label {
  color: var(--M) !important;
  font-family: var(--b) !important;
  font-size: .62rem !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  margin-bottom: .75rem !important;
}

.dp-modal-form .ff-el-form-control,
.dp-modal-form select.ff-el-form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(212,175,106,.3) !important;
  border-radius: 0 !important;
  padding: .9rem 0 !important;
  font-size: 1rem !important;
  color: var(--CR) !important;
  font-family: var(--b) !important;
  font-weight: 400 !important;
  transition: border-color .3s;
  box-shadow: none !important;
  width: 100% !important;
}

.dp-modal-form .ff-el-form-control:focus,
.dp-modal-form select.ff-el-form-control:focus {
  border-bottom-color: var(--M) !important;
  outline: none !important;
}

.dp-modal-form .ff-el-form-control::placeholder {
  color: rgba(253,246,238,.3) !important;
  font-weight: 300 !important;
}

.dp-modal-form select.ff-el-form-control option {
  background: var(--INK);
  color: var(--CR);
}

.dp-modal-form .ff-el-group {
  margin-bottom: 2rem !important;
}

.dp-modal-form .ff-el-form-check label,
.dp-modal-form .ff-el-form-check-label {
  font-size: .82rem !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  color: rgba(253,246,238,.6) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--b) !important;
}

.dp-modal-form .ff-el-form-check a {
  color: var(--M) !important;
  border-bottom: 1px solid rgba(212,175,106,.4);
  text-decoration: none;
}

.dp-modal-form .ff-el-form-check a:hover {
  border-bottom-color: var(--M);
}

/* Botón submit del formulario */
.dp-modal-form .ff-btn-submit {
  background: var(--M) !important;
  color: var(--INK) !important;
  font-family: var(--b) !important;
  font-size: .75rem !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  padding: 1.3rem 3rem !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: background .3s, color .3s;
  width: 100% !important;
  margin-top: 1rem !important;
}

.dp-modal-form .ff-btn-submit:hover {
  background: var(--CR) !important;
  color: var(--INK) !important;
}

/* Mensaje de éxito tras enviar */
.dp-modal-form .ff-message-success,
.dp-modal-form .ff_message_success {
  background: transparent !important;
  border: none !important;
  color: var(--M) !important;
  font-family: var(--d) !important;
  font-size: 1.3rem !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  text-align: center !important;
  padding: 2rem 1rem !important;
}

/* ══════════════════════════════════════
   ORO METÁLICO — gradiente para acentos grandes
   Aplicar clase .gold-metal o .gold-metal-bright
   en elementos oro de gran tamaño (Hero, cierre)
══════════════════════════════════════ */

.gold-metal {
  background: linear-gradient(
    180deg,
    #E0B843 0%,
    #C9991E 45%,
    #9A7315 75%,
    #C9991E 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gold-metal-bright {
  background: linear-gradient(
    180deg,
    #E8C96A 0%,
    #E0B843 40%,
    #C9991E 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ══════════════════════════════════════
   S3 — Animaciones proceso
══════════════════════════════════════ */

.proc-h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.proc-h2.v .char {
  opacity: 1;
  transform: translateY(0);
}
.proc-h2.v .char { transition-delay: calc(var(--i, 0) * 40ms); }

.proc-n {
  font-variant-numeric: tabular-nums;
  transition: color .3s, transform .6s cubic-bezier(.22,1,.36,1);
}

.proc-step .proc-t,
.proc-step .proc-b {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.proc-step.r.v .proc-t { opacity: 1; transform: none; transition-delay: .3s; }
.proc-step.r.v .proc-b { opacity: 1; transform: none; transition-delay: .45s; }

/* ══════════════════════════════════════
   ORO METÁLICO — sombra tipográfica editorial
   Da profundidad a las palabras oro grandes (Hero, Cierre)
══════════════════════════════════════ */

.gold-metal,
.gold-metal-bright {
  /* Necesario para que la sombra respete el gradiente
     en lugar de pintarse detrás del texto transparente */
  filter: drop-shadow(0 2px 4px rgba(61,32,16,.15))
          drop-shadow(0 8px 24px rgba(61,32,16,.2));
}

/* Versión sobre fondo oscuro (cierre S9): la sombra es hacia negro,
   más marcada, para que el oro flote sobre el chocolate */
.s-close .gold-metal-bright,
.s-proc .gold-metal-bright {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.3))
          drop-shadow(0 12px 40px rgba(0,0,0,.4));
}

/* Sobre fondos claros (hero) la sombra es más sutil, tono cálido */
.s-hero .gold-metal {
  filter: drop-shadow(0 2px 3px rgba(61,32,16,.18))
          drop-shadow(0 6px 20px rgba(122,77,46,.15));
}