/* ==========================================================
   Letras de Fe — neumorfismo femenino
   Paleta: rosa del logo, lavanda, lila, crema y arena
   ========================================================== */
:root {
  --bg: #f3ece8;
  --bg-tint: #efe5e3;
  --surface: #f3ece8;
  --sh-dark: #d8cac5;
  --sh-light: #ffffff;
  --ink: #483d4c;
  --ink-soft: #7a6b7c;
  --rose: #c98d86;
  --rose-deep: #a45f67;
  --lavender: #7c6a9e;
  --lilac: #c9b6cb;
  --cream: #f2e2b3;
  --sand: #c4a794;
  --sage: #93a88a;
  --ok: #6f9a78;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  --raise: 8px 8px 18px var(--sh-dark), -8px -8px 18px var(--sh-light);
  --raise-sm: 5px 5px 10px var(--sh-dark), -5px -5px 10px var(--sh-light);
  --raise-lg: 14px 14px 30px var(--sh-dark), -12px -12px 26px var(--sh-light);
  --inset: inset 5px 5px 10px var(--sh-dark), inset -5px -5px 10px var(--sh-light);
  --inset-sm: inset 3px 3px 6px var(--sh-dark), inset -3px -3px 6px var(--sh-light);

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
  --f-script: "Pinyon Script", cursive;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 var(--f-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: var(--lilac); color: var(--ink); }
:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; border-radius: 10px; }

.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.flip { transform: scaleX(-1); }
.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }
.script { font-family: var(--f-script); font-weight: 400; color: var(--rose-deep); font-size: 1.18em; line-height: .9; letter-spacing: 0; }
.eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep); margin: 0 0 10px; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.1; margin: 0; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--rose-deep); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { text-wrap: pretty; }

/* ---------- Neumorfismo base ---------- */
.neu { background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--raise); }
.neu-inset { background: var(--surface); border-radius: var(--r-md); box-shadow: var(--inset); }

.neu-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; background: var(--surface); border-radius: 999px;
  box-shadow: var(--raise-sm);
  text-decoration: none; font-weight: 700;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
}
.neu-btn:hover { transform: translateY(-2px); box-shadow: var(--raise); color: var(--rose-deep); }
.neu-btn:active { transform: translateY(0) scale(.98); box-shadow: var(--inset-sm); }

.btn { padding: 14px 26px; font-size: 15.5px; letter-spacing: .01em; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(145deg, #d49a93, #b9767a);
  color: #fff;
  box-shadow: 6px 6px 14px #d0b3ae, -6px -6px 14px #fff, inset 1px 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover { color: #fff; box-shadow: 10px 10px 20px #cfafaa, -8px -8px 18px #fff, inset 1px 1px 0 rgba(255,255,255,.35); }
.btn--primary:active { box-shadow: inset 4px 4px 8px #9d5f64, inset -3px -3px 8px #e2aba4; }
.btn .ic { transition: transform .3s var(--spring); }
.btn:hover .ic { transform: translateX(3px); }

.icon-btn { width: 46px; height: 46px; padding: 0; flex: none; }

/* Ondas (ripple) */
.ripple-dot {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255,255,255,.55); transform: scale(0);
  animation: ripple .6s var(--ease) forwards;
}
@keyframes ripple { to { transform: scale(1); opacity: 0; } }

/* ---------- Aviso ---------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 9px 16px; font-size: 13.5px; text-align: center;
  background: linear-gradient(90deg, #e9dbe3, #f1e1dc 50%, #efe5cf);
  color: var(--ink);
}
.announce .ic { width: 18px; height: 18px; color: var(--rose-deep); }
.announce a { font-weight: 800; color: var(--rose-deep); text-underline-offset: 3px; }

/* ---------- Encabezado ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transition: box-shadow .3s, background .3s;
}
.header.is-scrolled { box-shadow: 0 8px 24px -14px var(--sh-dark); background: color-mix(in srgb, var(--bg) 94%, transparent); }
.header__inner { height: var(--header-h); display: flex; align-items: center; gap: 24px; transition: height .3s var(--ease); }
.header.is-scrolled .header__inner { height: 64px; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { width: 72px; height: auto; transition: transform .5s var(--spring); }
.brand:hover img { transform: rotate(-4deg) scale(1.06); }
.brand__word { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; letter-spacing: .06em; color: var(--rose); text-transform: uppercase; white-space: nowrap; }
.brand__tag { background: var(--rose); color: #fff; padding: 0 8px 1px; border-radius: 6px; margin-right: 2px; }

.nav { display: flex; gap: 6px; }
.nav a {
  position: relative; padding: 10px 16px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 15px; color: var(--ink-soft);
  transition: color .2s, box-shadow .3s var(--ease);
}
.nav a:hover { color: var(--rose-deep); box-shadow: var(--raise-sm); }
.nav a.is-active { color: var(--rose-deep); box-shadow: var(--inset-sm); }

.header__actions { display: flex; gap: 12px; }
.cart-btn .ic { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 5px; right: 4px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 99px; background: var(--rose-deep); color: #fff;
  font-size: 11px; font-weight: 800; line-height: 19px; text-align: center;
  transform: scale(0); transition: transform .35s var(--spring);
}
.cart-count.has { transform: scale(1); }
.cart-btn.bump { animation: bump .5s var(--spring); }
@keyframes bump { 30% { transform: scale(1.18) rotate(-6deg); } 60% { transform: scale(.95) rotate(3deg); } }

.menu-btn { display: none; flex-direction: column; gap: 4px; }
.menu-btn span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) 0 clamp(50px, 7vw, 90px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 34em; margin: 22px 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__chips { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.chip-static { padding: 7px 16px; border-radius: 99px; box-shadow: var(--inset-sm); font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }

.hero__art { position: relative; aspect-ratio: 1 / .95; max-width: 560px; justify-self: center; width: 100%; }
.halo {
  position: absolute; inset: 8% 6%; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff 0%, #f1e3ea 40%, #e8d7de 70%, transparent 71%);
  box-shadow: var(--raise-lg);
}
.float-book {
  position: absolute; margin: 0; border-radius: 22px; overflow: hidden;
  background: var(--surface); padding: 8px; box-shadow: var(--raise-lg);
  transition: transform .6s var(--spring);
}
.float-book img { border-radius: 15px; aspect-ratio: 5/7; object-fit: cover; }
.fb-1 { width: 40%; left: 30%; top: 4%; z-index: 3; animation: bob 7s ease-in-out infinite; }
.fb-2 { width: 32%; left: 2%; top: 26%; z-index: 2; --rot: -9deg; animation: bob 8s ease-in-out -2s infinite; }
.fb-3 { width: 32%; right: 2%; top: 30%; z-index: 2; --rot: 8deg; animation: bob 9s ease-in-out -4s infinite; }
.hero__art:hover .fb-2 { transform: translateX(-8px); }
.hero__art:hover .fb-3 { transform: translateX(8px); }
@keyframes bob { 0%, 100% { translate: 0 0; rotate: var(--rot, 0deg); } 50% { translate: 0 -12px; rotate: calc(var(--rot, 0deg) * .7); } }

.float-note {
  position: absolute; z-index: 4; background: var(--surface); border-radius: 18px;
  box-shadow: var(--raise); padding: 12px 18px; display: flex; flex-direction: column;
}
.fn-verse { left: 0; bottom: 6%; animation: bob 6s ease-in-out -1s infinite; }
.fn-verse .script { font-size: 1.6rem; }
.fn-verse small { font-size: 11px; font-weight: 800; letter-spacing: .2em; color: var(--ink-soft); text-transform: uppercase; margin-top: 4px; }
.fn-heart { right: 4%; bottom: 12%; flex-direction: row; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; animation: bob 7s ease-in-out -3s infinite; }
.fn-heart .ic { color: var(--rose-deep); fill: var(--rose); stroke: var(--rose-deep); animation: beat 1.6s ease-in-out infinite; }
@keyframes beat { 0%, 60%, 100% { transform: scale(1); } 15% { transform: scale(1.22); } 30% { transform: scale(.95); } 45% { transform: scale(1.12); } }

.petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal { position: absolute; top: -30px; width: 16px; height: 16px; color: var(--rose); opacity: .5; animation: fall linear forwards; }
.petal svg { width: 100%; height: 100%; fill: currentColor; stroke: none; }
@keyframes fall {
  to { transform: translate(var(--dx), 110vh) rotate(var(--rot)); opacity: 0; }
}

/* ---------- Valores ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: -10px; }
.value { padding: 30px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--raise-lg); }
.value__icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: var(--rose-deep); margin-bottom: 18px; }
.value__icon .ic { width: 26px; height: 26px; transition: transform .5s var(--spring); }
.value:hover .value__icon .ic { transform: rotate(-10deg) scale(1.15); }
.value h3 { font-size: 1.45rem; }
.value p { margin: 8px 0 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Secciones ---------- */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--tint { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 12%, var(--bg-tint) 88%, var(--bg) 100%); }
.section__head { text-align: center; margin-bottom: 44px; }
.section__sub { color: var(--ink-soft); max-width: 36em; margin: 14px auto 0; }

/* ---------- Catálogo ---------- */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 38px; }
.filters { display: flex; flex-wrap: wrap; gap: 12px; min-width: 0; max-width: 100%; }
.chip {
  border: 0; background: var(--surface); padding: 10px 18px; border-radius: 99px;
  font-weight: 700; font-size: 14.5px; color: var(--ink-soft);
  box-shadow: var(--raise-sm); transition: box-shadow .3s var(--ease), color .2s, transform .2s;
}
.chip:hover { color: var(--rose-deep); transform: translateY(-1px); }
.chip[aria-selected="true"] { box-shadow: var(--inset-sm); color: var(--rose-deep); transform: none; }
.chip small { font-weight: 800; opacity: .6; margin-left: 4px; }

.search { display: flex; align-items: center; gap: 10px; padding: 0 18px; border-radius: 99px; height: 48px; width: min(320px, 100%); transition: box-shadow .3s; }
.search:focus-within { box-shadow: var(--inset), 0 0 0 3px color-mix(in srgb, var(--lilac) 60%, transparent); }
.search .ic { color: var(--ink-soft); }
.search input { border: 0; background: none; outline: none; width: 100%; font-size: 15px; }
.search input::placeholder { color: #a4979f; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 32px; }
.card {
  display: flex; flex-direction: column; padding: 14px 14px 20px; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--raise);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), opacity .35s;
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { box-shadow: var(--raise-lg); }
.card.is-hiding { opacity: 0; transform: scale(.94); }
.card.is-entering { animation: cardIn .5s var(--spring) both; animation-delay: var(--d, 0ms); }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px) scale(.96); } }

.card__media {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 5/6.2;
  box-shadow: var(--inset-sm); padding: 6px; cursor: zoom-in; border: 0; background: var(--surface);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__peek {
  position: absolute; left: 50%; bottom: 14px; translate: -50% 10px; opacity: 0;
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 99px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(6px); font-size: 13px; font-weight: 800; color: var(--ink);
  transition: opacity .3s, translate .3s var(--ease);
}
.card__peek .ic { width: 16px; height: 16px; }
.card:hover .card__peek, .card__media:focus-visible .card__peek { opacity: 1; translate: -50% 0; }

.fav {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px;
  border: 0; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.82); backdrop-filter: blur(6px);
  box-shadow: 3px 3px 8px rgba(120,90,90,.18); color: var(--ink-soft);
  transition: transform .3s var(--spring), color .2s;
}
.fav:hover { transform: scale(1.1); color: var(--rose-deep); }
.fav .ic { width: 19px; height: 19px; transition: fill .2s; }
.fav[aria-pressed="true"] { color: var(--rose-deep); }
.fav[aria-pressed="true"] .ic { fill: var(--rose); animation: pop .45s var(--spring); }
@keyframes pop { 0% { transform: scale(.4); } 70% { transform: scale(1.3); } 100% { transform: scale(1); } }
.spark { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); pointer-events: none; animation: spark .6s var(--ease) forwards; }
@keyframes spark { to { transform: translate(var(--x), var(--y)) scale(.2); opacity: 0; } }

.card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 4px 8px; }
.tag { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--lavender); background: color-mix(in srgb, var(--lilac) 32%, var(--bg)); padding: 3px 9px; border-radius: 99px; }
.card h3 { font-size: 1.32rem; margin: 0 4px; }
.card__sub { font-size: 14px; color: var(--ink-soft); margin: 6px 4px 16px; line-height: 1.5; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 4px; }
.price { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); line-height: 1.2; }
.add { padding: 10px 16px; font-size: 13.5px; gap: 7px; }
.add .ic { width: 17px; height: 17px; transition: transform .35s var(--spring); }
.add:hover .ic { transform: rotate(90deg); }
.add.is-added { color: var(--ok); box-shadow: var(--inset-sm); }
.add.is-added .ic { transform: none; }

.empty { text-align: center; color: var(--ink-soft); padding: 40px 0; }
.empty a { color: var(--rose-deep); font-weight: 700; }

.fly { position: fixed; z-index: 90; width: 56px; height: 72px; border-radius: 10px; object-fit: cover; pointer-events: none; box-shadow: 0 10px 20px rgba(0,0,0,.2); transition: transform .75s cubic-bezier(.5,-0.3,.6,1), opacity .75s; }

/* ---------- Pasos ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: s; }
.step { padding: 32px 28px; position: relative; transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step__n { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-size: 1.7rem; font-weight: 700; color: var(--rose-deep); margin-bottom: 18px; }
.step p { color: var(--ink-soft); margin: 8px 0 0; font-size: 15.5px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 58px; right: -24px; width: 20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--rose) 0 4px, transparent 4px 8px);
}

/* ---------- Entregas ---------- */
.delivery { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.delivery .section__sub { margin-inline: 0; }
.zones { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.zone { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: var(--r-md); font-weight: 700; transition: transform .3s var(--ease), box-shadow .3s, color .2s; }
.zone .ic { color: var(--rose-deep); transition: transform .4s var(--spring); }
.zone:hover { transform: translateY(-3px); }
.zone:hover .ic, .zone.is-hit .ic { transform: translateY(-4px) scale(1.15); }
.zone.is-hit { box-shadow: var(--inset); color: var(--rose-deep); }

.checker { padding: 36px 32px; }
.checker h3 { font-size: 1.7rem; }
.checker > p { color: var(--ink-soft); margin: 6px 0 16px; }
.select { position: relative; display: flex; align-items: center; border-radius: var(--r-sm); }
.select select { appearance: none; -webkit-appearance: none; border: 0; background: none; width: 100%; padding: 14px 44px 14px 18px; outline: none; cursor: pointer; font-weight: 600; }
.select .ic { position: absolute; right: 16px; pointer-events: none; color: var(--ink-soft); }
.select:focus-within { box-shadow: var(--inset), 0 0 0 3px color-mix(in srgb, var(--lilac) 60%, transparent); }

.checker__result { min-height: 92px; margin-top: 18px; }
.result {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--r-md);
  animation: cardIn .45s var(--spring);
}
.result__ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; color: #fff; }
.result--yes { background: color-mix(in srgb, var(--ok) 13%, var(--bg)); }
.result--yes .result__ic { background: var(--ok); }
.result--no { background: color-mix(in srgb, var(--lilac) 30%, var(--bg)); }
.result--no .result__ic { background: var(--lavender); }
.result b { display: block; font-size: 15.5px; }
.result span { font-size: 14px; color: var(--ink-soft); }
.result a { color: var(--rose-deep); font-weight: 700; }

/* ---------- Nosotras ---------- */
.story { max-width: 760px; margin: 0 auto 56px; text-align: center; color: var(--ink-soft); font-size: 1.06rem; }
.story__lead { font-family: var(--f-display); font-size: clamp(1.35rem, 2.4vw, 1.6rem); line-height: 1.5; color: var(--ink); }
.story b { color: var(--ink); }

.founders { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; }
.bond { align-self: center; }
.founder { padding: 38px 32px 34px; text-align: center; transition: transform .45s var(--ease), box-shadow .45s; }
.founder:hover { transform: translateY(-6px); box-shadow: var(--raise-lg); }
.founder__photo {
  position: relative; width: 168px; height: 168px; margin: 0 auto 22px; border-radius: 50%; padding: 10px;
  display: grid; place-items: center; overflow: hidden;
}
.founder__photo img { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); object-fit: cover; border-radius: 50%; transition: transform .6s var(--ease); }
.founder:hover .founder__photo img { transform: scale(1.05); }
.monogram {
  width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--f-script); font-size: 4.6rem; color: #fff; padding-top: 10px;
  background: linear-gradient(145deg, var(--lilac), var(--rose));
}
.founder:nth-child(3) .monogram { background: linear-gradient(145deg, var(--rose), var(--sand)); }
.founder h3 { font-size: 1.9rem; }
.founder__role { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); margin: 6px 0 14px; }
.founder__ig { padding: 8px 16px; font-size: 13.5px; margin: 0 0 16px; gap: 7px; }
.founder__ig .ic { width: 17px; height: 17px; color: var(--rose-deep); transition: transform .4s var(--spring); }
.founder__ig:hover .ic { transform: rotate(-12deg) scale(1.15); }
.founder p:last-child { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
.founder b { color: var(--ink); }

.bond { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.bond__num { font-family: var(--f-display); font-size: 3.6rem; font-weight: 700; color: var(--rose-deep); line-height: 1; }
.bond__label { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
.bond__heart { width: 30px; height: 30px; margin-top: 14px; fill: var(--rose); stroke: var(--rose-deep); stroke-width: 1.2; animation: beat 1.8s ease-in-out infinite; }

.commission { max-width: 680px; margin: 56px auto 0; padding: 30px 34px; text-align: center; border-radius: var(--r-lg); }
.commission p { margin: 0; font-family: var(--f-display); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.8rem); line-height: 1.35; }
.commission cite { display: block; margin-top: 10px; font-style: normal; font-size: 12.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep); }

/* ---------- Versículos ---------- */
.verses { max-width: 860px; margin: 0 auto; padding: clamp(36px, 6vw, 64px) clamp(22px, 5vw, 64px) 32px; position: relative; overflow: hidden; }
.verses::before, .verses::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--lilac) 40%, transparent), transparent 70%);
}
.verses::before { top: -90px; left: -80px; }
.verses::after { bottom: -100px; right: -80px; background: radial-gradient(circle, color-mix(in srgb, var(--rose) 28%, transparent), transparent 70%); }
.verses__track { display: grid; position: relative; z-index: 1; }
.verse { grid-area: 1 / 1; text-align: center; opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); pointer-events: none; }
.verse.is-active { opacity: 1; transform: none; pointer-events: auto; }
.verse__orn { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--rose); margin-bottom: 18px; }
.verse__orn::before, .verse__orn::after { content: ""; width: 60px; height: 1px; background: currentColor; opacity: .6; }
.verse p { margin: 0; font-family: var(--f-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.3; font-weight: 500; }
.verse p .script { font-size: 1.25em; }
.verse cite { display: block; margin-top: 18px; font-style: normal; font-size: 13px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--rose-deep); }
.verses__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; position: relative; z-index: 1; }
.dots { display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border: 0; padding: 0; border-radius: 99px; background: var(--surface); box-shadow: var(--inset-sm); transition: width .4s var(--ease), background .3s; position: relative; overflow: hidden; }
.dot[aria-selected="true"] { width: 36px; background: color-mix(in srgb, var(--rose) 25%, var(--bg)); }
.dot[aria-selected="true"]::after { content: ""; position: absolute; inset: 0; background: var(--rose); transform-origin: left; animation: progress var(--dur, 7s) linear forwards; }
.verses.is-paused .dot::after { animation-play-state: paused; }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.fact { max-width: 860px; margin: 48px auto 0; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; text-align: center; }
.fact p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.fact p b, .fact p em { color: var(--rose-deep); font-style: normal; font-weight: 700; }
.fact__num { width: 124px; height: 124px; border-radius: 50%; display: grid; place-content: center; text-align: center; }
.fact__num b { font-family: var(--f-display); font-size: 2.2rem; color: var(--rose-deep); line-height: 1; }
.fact__num span { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Redes ---------- */
.feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { position: relative; padding: 10px; border-radius: var(--r-lg); overflow: hidden; display: block; transition: transform .45s var(--ease), box-shadow .45s; }
.post img { border-radius: 20px; aspect-ratio: 1; object-fit: cover; width: 100%; }
.post__over {
  position: absolute; inset: 10px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: color-mix(in srgb, var(--lavender) 55%, transparent); color: #fff; font-weight: 800; font-size: 14px;
  opacity: 0; transition: opacity .35s;
}
.post__over .ic { width: 34px; height: 34px; transform: scale(.6); transition: transform .45s var(--spring); }
.post:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--raise-lg); }
.post:hover .post__over, .post:focus-visible .post__over { opacity: 1; }
.post:hover .post__over .ic { transform: scale(1); }

/* ---------- Contacto ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact .section__sub { margin-inline: 0; }
.channels { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.channels li { display: flex; gap: 12px; align-items: center; }
.channel { flex: 1; display: flex; align-items: center; gap: 16px; padding: 12px 18px 12px 12px; border-radius: var(--r-md); text-decoration: none; font-weight: 700; min-width: 0; transition: transform .3s var(--ease), box-shadow .3s; }
a.channel:hover { transform: translateX(4px); box-shadow: var(--raise-lg); }
a.channel:active { box-shadow: var(--inset-sm); }
.channel > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.channel small { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.channel__ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: var(--rose-deep); flex: none; }
.copy.is-done { color: var(--ok); box-shadow: var(--inset-sm); }

.form { padding: 36px 32px; }
.form h3 { font-size: 1.8rem; margin-bottom: 20px; }
.field { display: block; margin-bottom: 18px; }
.field > span:first-child { display: block; font-size: 13px; font-weight: 800; color: var(--ink-soft); margin: 0 0 8px 6px; }
.field input, .field textarea { width: 100%; border: 0; padding: 14px 18px; border-radius: var(--r-sm); outline: none; resize: vertical; transition: box-shadow .3s; }
.field input:focus, .field textarea:focus { box-shadow: var(--inset), 0 0 0 3px color-mix(in srgb, var(--lilac) 60%, transparent); }
.field input::placeholder, .field textarea::placeholder { color: #a4979f; }
.field.is-invalid input, .field.is-invalid textarea { box-shadow: var(--inset), 0 0 0 2px color-mix(in srgb, var(--rose-deep) 55%, transparent); animation: shake .4s; }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.form__note { font-size: 13px; color: var(--ink-soft); text-align: center; margin: 12px 0 0; }

/* ---------- Footer ---------- */
.footer { padding: 70px 0 40px; background: var(--bg-tint); }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__logo { width: 220px; height: auto; }
.footer__tag { font-family: var(--f-display); font-size: 1.3rem; font-style: italic; margin: 8px 0 24px; }
.footer__social { display: flex; gap: 16px; margin-bottom: 26px; }
.footer__small { font-size: 13.5px; color: var(--ink-soft); margin: 4px 0; }

/* ---------- Volver arriba ---------- */
.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 52px; height: 52px; opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; transition: opacity .3s, transform .4s var(--spring), box-shadow .25s; }
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top .up { transform: rotate(-90deg); }
.to-top .ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top .ring circle { fill: none; stroke: var(--rose); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 132; stroke-dashoffset: calc(132 - 132 * var(--p, 0)); }

/* ---------- Drawer ---------- */
.scrim { position: fixed; inset: 0; z-index: 70; background: rgba(72,61,76,.28); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s; }
.scrim.is-on { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80; width: min(420px, 100%);
  background: var(--bg); box-shadow: -20px 0 50px rgba(72,61,76,.18);
  display: flex; flex-direction: column; transform: translateX(105%); visibility: hidden;
  transition: transform .5s var(--ease), visibility 0s linear .5s;
}
.drawer.is-open { transform: none; visibility: visible; transition: transform .5s var(--ease), visibility 0s; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 22px 12px; }
.drawer__head h2 { font-size: 2rem; }
.drawer__list { list-style: none; margin: 0; padding: 12px 22px; overflow-y: auto; flex: 1; display: grid; align-content: start; gap: 16px; }
.line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 10px; border-radius: var(--r-md); box-shadow: var(--raise-sm); animation: cardIn .4s var(--spring); }
.line.is-leaving { animation: out .3s var(--ease) forwards; }
@keyframes out { to { opacity: 0; transform: translateX(40px); } }
.line img { width: 64px; height: 80px; object-fit: cover; border-radius: 10px; }
.line h4 { margin: 0; font-family: var(--f-display); font-size: 1.1rem; line-height: 1.2; }
.line small { color: var(--ink-soft); font-size: 12.5px; }
.qty { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.qty button { width: 30px; height: 30px; }
.qty .ic { width: 15px; height: 15px; }
.qty output { font-weight: 800; font-size: 14px; }
.drawer__empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--ink-soft); padding: 20px; }
.drawer__empty > span { width: 90px; height: 90px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; color: var(--rose); }
.drawer__empty .ic { width: 36px; height: 36px; }
.drawer.is-empty .drawer__empty { display: flex; }
.drawer.is-empty .drawer__list, .drawer.is-empty .drawer__foot { display: none; }
.drawer__foot { padding: 18px 22px 24px; border-top: 1px solid color-mix(in srgb, var(--sh-dark) 60%, transparent); }
.drawer__hint { font-size: 13px; color: var(--ink-soft); margin: 0 0 14px; }
.drawer__send { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.drawer__send .btn { padding: 12px 8px; font-size: 13.5px; gap: 6px; }
.drawer__send .ic { width: 17px; height: 17px; }

/* ---------- Vista rápida ---------- */
.quick {
  border: 0; padding: 0; width: min(880px, calc(100% - 32px)); max-height: calc(100dvh - 40px);
  border-radius: 32px; background: var(--bg); color: var(--ink); box-shadow: 0 30px 80px rgba(72,61,76,.3);
  overflow: auto;
}
.quick::backdrop { background: rgba(72,61,76,.35); backdrop-filter: blur(4px); }
.quick[open] { animation: cardIn .45s var(--spring); }
.quick__close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.quick__body { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; padding: 30px; }
.quick__imgs { display: grid; gap: 12px; }
.zoom { border-radius: 22px; overflow: hidden; box-shadow: var(--inset-sm); padding: 8px; cursor: zoom-in; }
.zoom img { width: 100%; border-radius: 16px; aspect-ratio: 5/7; object-fit: cover; transition: transform .2s ease-out; transform-origin: var(--ox, 50%) var(--oy, 50%); }
.zoom:hover img { transform: scale(1.7); }
.thumbs { display: flex; gap: 10px; }
.thumbs button { width: 64px; height: 80px; padding: 4px; border: 0; border-radius: 12px; background: var(--surface); box-shadow: var(--raise-sm); }
.thumbs button[aria-pressed="true"] { box-shadow: var(--inset-sm); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.quick__info { padding-top: 26px; display: flex; flex-direction: column; }
.quick__info h2 { font-size: 2.3rem; }
.quick__info .card__tags { margin: 14px 0; }
.quick__info ul { padding-left: 20px; color: var(--ink-soft); margin: 0 0 20px; }
.quick__info li { margin: 4px 0; }
.quick__note { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; padding: 14px 16px; border-radius: var(--r-sm); box-shadow: var(--inset-sm); }
.quick__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 100; translate: -50% 30px; opacity: 0;
  display: flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 99px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14.5px; box-shadow: 0 12px 30px rgba(72,61,76,.3);
  transition: opacity .3s, translate .45s var(--spring); pointer-events: none; width: max-content; max-width: calc(100% - 32px);
}
.toast.is-on { opacity: 1; translate: -50% 0; }
.toast .ic { color: var(--cream); }

/* ---------- Revelado al hacer scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--rd, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__copy { text-align: center; }
  .lead { margin-inline: auto; }
  .hero__cta, .hero__chips { justify-content: center; }
  .hero__art { max-width: 460px; }
  .delivery, .contact { grid-template-columns: 1fr; gap: 40px; }
  .founders { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .bond { flex-direction: row; gap: 14px; justify-content: center; order: -1; }
  .bond__label { margin: 0; text-align: left; }
  .bond__heart { margin: 0; }
  .quick__body { grid-template-columns: 1fr; }
  .quick__info { padding-top: 0; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: -1;
    flex-direction: column; gap: 6px; padding: calc(var(--header-h) + 20px) 20px 26px;
    background: var(--bg); box-shadow: 0 20px 40px -20px var(--sh-dark);
    transform: translateY(-105%); transition: transform .45s var(--ease); visibility: hidden;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav a { font-size: 17px; padding: 14px 18px; }
  .menu-btn { display: inline-flex; }
  .values, .steps, .feed { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .values { margin-top: 0; }
  .step:not(:last-child)::after { display: none; }
  .toolbar { flex-direction: column; flex-wrap: nowrap; align-items: stretch; }
  .toolbar > * { min-width: 0; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding: 8px 6px 14px; margin: -8px -6px -8px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  .search { width: 100%; }
  .fact { grid-template-columns: 1fr 1fr; }
  .fact p { grid-column: 1 / -1; order: 3; }
  .fact__num { justify-self: center; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .brand__word { font-size: 1.12rem; }
  .brand img { width: 56px; }
  .header__actions { gap: 10px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .card { padding: 8px 8px 14px; border-radius: 22px; }
  .card__media { border-radius: 16px; padding: 4px; }
  .card h3 { font-size: 1.1rem; }
  .card__sub { font-size: 12.5px; }
  .card__tags .tag:nth-child(n+2) { display: none; }
  .card__foot { flex-direction: column; align-items: stretch; }
  .price { text-align: center; }
  .add { justify-content: center; }
  .fav { width: 34px; height: 34px; top: 10px; right: 10px; }
  .card__peek { display: none; }
  .zones { grid-template-columns: 1fr 1fr; gap: 12px; }
  .zone { padding: 14px; font-size: 14.5px; }
  .checker, .form { padding: 28px 20px; }
  .drawer__send { grid-template-columns: 1fr; }
  .quick__body { padding: 20px; }
  .fn-verse .script { font-size: 1.25rem; }
  .fn-heart { display: none; }
}

@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 { opacity: 1; transform: none; }
}
