/* ============================================================
   ARBOR AGENCY — styles.css v4
   Dark forest palette · Skilio-level quality
   ============================================================ */

:root {
  --bg:           #080d09;
  --bg-2:         #0c1410;
  --ink:          #eef4f0;
  --ink-soft:     #8aab96;
  --ink-muted:    #4a7060;
  --line:         rgba(22, 128, 61, 0.10);
  --line-strong:  rgba(22, 128, 61, 0.20);
  --accent:       #16803d;
  --accent-warm:  #06402B;
  --radius:       24px;
  --radius-sm:    14px;
  --shadow-card:  0 32px 80px -40px rgba(0, 0, 0, 0.85),
                  0 8px 24px -10px rgba(0, 0, 0, 0.5);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overscroll-behavior: none; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img { display: block; max-width: 100%; }

/* ── Custom cursor ──────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(22, 128, 61, 0.45);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width .22s var(--ease-spring), height .22s var(--ease-spring),
    border-color .22s var(--ease-soft), background .22s var(--ease-soft);
  display: none;
}
@media (hover: hover) { #cursor { display: block; } }
#cursor.hover {
  width: 36px; height: 36px;
  border-color: rgba(22, 128, 61, 0.7);
  background: rgba(22, 128, 61, 0.05);
}

/* ── Atmosphere ─────────────────────────────────────────── */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora__blob { position: absolute; border-radius: 50%; pointer-events: none; }
.aurora__blob--1 {
  width: 100vmax; height: 100vmax; left: -30vmax; top: -30vmax;
  background: radial-gradient(closest-side, rgba(22,128,61,0.11) 0%, rgba(22,128,61,0.04) 40%, transparent 70%);
}
.aurora__blob--2 {
  width: 90vmax; height: 90vmax; right: -35vmax; top: -10vmax;
  background: radial-gradient(closest-side, rgba(6,64,43,0.08), transparent 70%);
}
.aurora__blob--3 {
  width: 110vmax; height: 110vmax; left: 10%; bottom: -55vmax;
  background: radial-gradient(closest-side, rgba(22,128,61,0.07), transparent 70%);
}
.mesh {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 22px 22px; opacity: 0.8;
}
.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 80% 68% at center, transparent 28%, var(--bg) 100%);
}
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.028;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 36px; gap: 24px;
  animation: fadeDown 1.1s var(--ease-out-quint) both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translate3d(0, -12px, 0); }
  to   { opacity: 1; transform: none; }
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  padding: 6px 16px 6px 6px;
  border: 1px solid var(--line-strong);
  background: rgba(8,18,13,0.55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 999px;
  transition: border-color .5s var(--ease-soft), transform .6s var(--ease-out-quint);
}
.brand:hover { border-color: rgba(22,128,61,0.35); transform: translate3d(0,-1px,0); }

.brand__avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(22,128,61,0.1); display: inline-grid; place-items: center;
  border: 1px solid rgba(22,128,61,0.28); color: var(--accent); position: relative;
}
.brand__avatar::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(22,128,61,0.2);
  animation: avatarPulse 3.6s var(--ease-out-quint) infinite;
}
@keyframes avatarPulse {
  0%  { transform: scale(1); opacity: 0.7; }
  60% { transform: scale(1.5); opacity: 0; }
  100%{ transform: scale(1.5); opacity: 0; }
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }
.brand__handle { font-size: 10.5px; color: var(--ink-soft); margin-top: 2px; font-family: var(--font-mono); }

.header-nav {
  display: flex; align-items: center; gap: 6px;
}
.header-nav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid transparent;
  transition: color .3s var(--ease-soft), border-color .3s var(--ease-soft), background .3s var(--ease-soft);
}
.header-nav a:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(22,128,61,0.05);
}
.header-nav__ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0 !important;
  border-radius: 50% !important;
}
.header-nav__ig:hover { color: var(--accent) !important; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 36px 80px;
  text-align: center;
  min-height: calc(100vh - 76px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  padding: 7px 16px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(255,255,255,0.02);
  animation: heroIn 0.9s var(--ease-out-quint) 0.1s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translate3d(0,16px,0); }
  to   { opacity: 1; transform: none; }
}

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px rgba(22,128,61,0.8);
  animation: pulse 2.4s ease-in-out infinite; position: relative; flex-shrink: 0;
}
.dot::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(22,128,61,0.45);
  animation: ripple 2.4s var(--ease-out-quint) infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes ripple {
  0%  { transform: scale(1); opacity: 0.7; }
  80% { transform: scale(2.6); opacity: 0; }
  100%{ transform: scale(2.6); opacity: 0; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 74px);
  line-height: 1.07; letter-spacing: -0.024em;
  margin: 16px auto 14px; max-width: 20ch; color: var(--ink);
  animation: heroIn 1.1s var(--ease-out-quint) 0.25s both;
}
.hero__title em {
  font-style: italic; color: var(--accent); font-weight: 300;
  animation: breathAccent 6s ease-in-out infinite;
}
@keyframes breathAccent {
  0%,100%{ text-shadow: none; }
  50%    { text-shadow: 0 0 30px rgba(22,128,61,0.32); }
}

.hero__sub {
  max-width: 540px; margin: 0 auto; color: var(--ink-soft);
  font-size: clamp(14.5px,1.3vw,16.5px); line-height: 1.7;
  animation: heroIn 1s var(--ease-out-quint) 0.4s both;
}

/* ── Hero quick pill ────────────────────────────────────── */
.hero__quick {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  padding: 10px 12px 10px 22px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.025);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero__quick-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  background: transparent; color: var(--ink); white-space: nowrap;
  transition: transform .35s var(--ease-spring), background .35s var(--ease-soft),
              box-shadow .35s var(--ease-soft);
}
.btn:active { transform: translate3d(0,1px,0) scale(0.98); }
.btn--primary {
  background: var(--ink); color: #060e08; border-color: var(--ink);
}
.btn--primary:hover {
  background: #fff;
  box-shadow: 0 12px 32px -12px rgba(238,244,240,0.4);
  transform: translate3d(0,-1px,0);
}

/* ── Scroll hint ────────────────────────────────────────── */
.scroll-hint {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-muted); white-space: nowrap;
  pointer-events: none; z-index: 3; opacity: 0;
  animation: scrollHintFadeIn .9s var(--ease-out-quint) 1.5s both,
             scrollHintFloat 2.6s ease-in-out 2.4s infinite;
}
.scroll-hint__arrow { width: 12px; height: 12px; color: var(--accent); opacity: 0.85; }
@keyframes scrollHintFadeIn { from{opacity:0} to{opacity:0.6} }
@keyframes scrollHintFloat {
  0%,100%{ transform: translate(-50%,0); }
  50%    { transform: translate(-50%,4px); }
}
.scroll-hint--large { bottom: 30px; font-size: 11px; gap: 10px; letter-spacing: 0.22em; }
.scroll-hint--large .scroll-hint__arrow { width: 14px; height: 14px; }
@media (max-width: 900px) { .scroll-hint { display: none; } }

/* ── Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translate3d(0, 32px, 0);
  transition: opacity 1s var(--ease-out-quint), transform 1s var(--ease-out-quint);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* ── Hub section ────────────────────────────────────────── */
.hub {
  position: relative; z-index: 2;
  padding: 0 36px 80px;
  max-width: 1100px; margin: 0 auto;
}

.hub-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  background: linear-gradient(180deg, rgba(10,22,16,0.7) 0%, rgba(6,14,10,0.7) 100%);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}

/* ── Hub cards grid ─────────────────────────────────────── */
.hub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hub-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 40px 40px 36px;
  text-decoration: none; color: var(--ink);
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease-soft);
}
.hub-card:last-child { border-right: none; }
.hub-card:hover { background: rgba(22,128,61,0.04); }

.hub-card__top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 4px;
}
.hub-card__num {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: 42px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(22,128,61,0.35);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.hub-card__kicker {
  font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 5px;
  background: rgba(22,128,61,0.08);
  color: var(--accent);
  border: 1px solid rgba(22,128,61,0.22);
}

.hub-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
  transition: color .3s;
}
.hub-card:hover .hub-card__title { color: var(--accent); }

.hub-card__desc {
  color: var(--ink-soft);
  font-size: 14px; line-height: 1.75; margin: 0;
  flex: 1;
}

.hub-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-top: 4px;
  transition: gap .3s var(--ease-spring);
}
.hub-card:hover .hub-card__cta { gap: 12px; }

.hub-card__glow {
  position: absolute; inset: -1px; pointer-events: none;
  background:
    radial-gradient(500px circle at 0% 0%, rgba(22,128,61,0.08), transparent 50%),
    radial-gradient(500px circle at 100% 100%, rgba(6,64,43,0.06), transparent 50%);
  opacity: 0; transition: opacity .4s var(--ease-soft); z-index: 0;
}
.hub-card:hover .hub-card__glow { opacity: 1; }

/* Accent variant (Tienda card — subtle glow boost on hover) */
.hub-card--accent:hover .hub-card__glow {
  background:
    radial-gradient(500px circle at 0% 0%, rgba(22,128,61,0.12), transparent 50%),
    radial-gradient(500px circle at 100% 100%, rgba(6,64,43,0.10), transparent 50%);
}

/* ── Creator strip ──────────────────────────────────────── */
.creator-strip {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.15);
}
.creator-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #040d07; display: inline-grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  flex-shrink: 0; box-shadow: 0 0 16px rgba(22,128,61,0.28);
}
.creator-info { flex: 1; min-width: 0; }
.creator-name { font-size: 13px; font-weight: 600; color: var(--ink); margin: 0 0 2px; }
.creator-bio { font-size: 12px; color: var(--ink-muted); margin: 0; line-height: 1.5; }

.creator-ig {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(22,128,61,0.04);
  white-space: nowrap;
  transition: color .3s, border-color .3s, background .3s;
}
.creator-ig:hover {
  color: var(--accent);
  border-color: rgba(22,128,61,0.35);
  background: rgba(22,128,61,0.08);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 2;
  padding: 24px 36px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-muted); text-decoration: none;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  transition: color .3s;
}
.footer__brand:hover { color: var(--accent); }
.footer__sep { width: 1px; height: 12px; background: var(--line-strong); flex-shrink: 0; }
.footer__credit {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-muted); margin: 0;
}
.footer__nav { margin-left: auto; display: flex; gap: 18px; }
.footer__nav a {
  font-size: 11.5px; color: var(--ink-muted); text-decoration: none;
  font-family: var(--font-mono); letter-spacing: 0.1em;
  transition: color .3s;
}
.footer__nav a:hover { color: var(--ink); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .hero { padding: 0 20px 80px; }
  .hub { padding: 0 16px 60px; }
  .hub-cards { grid-template-columns: 1fr; }
  .hub-card { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 28px; }
  .hub-card:last-child { border-bottom: none; }
  .creator-strip { flex-wrap: wrap; padding: 18px 24px; }
  .creator-ig { margin-top: 0; }
  .footer__inner { gap: 10px; }
  .footer__sep { display: none; }
  .footer__nav { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .hero__sub br { display: none; }
  .hub-card__num { font-size: 34px; }
  .hub-card__title { font-size: 22px; }
  .header-nav a:not(.header-nav__ig) { display: none; }
}

/* ============================================================
   PAGE LAYOUTS (recursos.html · tienda.html)
   ============================================================ */

.page-main {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 36px 80px;
}

/* ── Page hero (section header) ─────────────────────────── */
.page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08; letter-spacing: -0.022em;
  margin: 0 0 14px; color: var(--ink);
}
.page-hero__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero__sub {
  font-size: 15.5px; color: var(--ink-soft); margin: 0; line-height: 1.7;
}

/* ── Search bar ─────────────────────────────────────────── */
.search-wrap { margin-bottom: 32px; }
.search-bar {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10,22,16,0.5);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
  max-width: 380px;
}
.search-bar:focus-within {
  border-color: rgba(22,128,61,0.4);
  box-shadow: 0 0 0 3px rgba(22,128,61,0.08);
}
.search-bar__icon { color: var(--ink-muted); flex-shrink: 0; width: 15px; height: 15px; }
.search-bar__input {
  width: 220px; background: none; border: none; outline: none;
  color: var(--ink); font-family: var(--font-sans); font-size: 13.5px;
  caret-color: var(--accent);
}
.search-bar__input::placeholder { color: var(--ink-muted); }
.search-bar__count {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-muted);
  letter-spacing: 0.06em; white-space: nowrap;
}

/* ── Resource grid ──────────────────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── Resource card (folder style) ──────────────────────── */
.resource-card {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(10,22,16,0.65), rgba(6,14,10,0.65));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 8px 32px -16px rgba(0,0,0,0.6);
  transition:
    transform .4s var(--ease-out-quint),
    border-color .3s var(--ease-soft),
    box-shadow .4s var(--ease-soft);
}
.resource-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(22,128,61,0.35);
  box-shadow: 0 20px 48px -20px rgba(22,128,61,0.18), 0 8px 24px -8px rgba(0,0,0,0.5);
}
.resource-card[hidden] { display: none; }

/* Folder tab — thin green strip on top */
.resource-card__tab {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  opacity: 0.6;
  transition: opacity .3s;
}
.resource-card:hover .resource-card__tab { opacity: 1; }

.resource-card__body {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 24px 22px; flex: 1;
}
.resource-card__meta {
  display: flex; align-items: center; gap: 8px;
}
.resource-card__cat {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(22,128,61,0.08);
  color: var(--accent); border: 1px solid rgba(22,128,61,0.22);
}
.resource-card__read {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-muted); letter-spacing: 0.08em;
}
.resource-card__title {
  font-family: var(--font-display);
  font-weight: 400; font-size: 19px; line-height: 1.25;
  letter-spacing: -0.015em; margin: 0; color: var(--ink);
  transition: color .3s;
}
.resource-card:hover .resource-card__title { color: var(--accent); }
.resource-card__desc {
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.7;
  margin: 0; flex: 1;
}
.resource-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--accent);
  margin-top: 6px;
  transition: gap .3s var(--ease-spring);
}
.resource-card:hover .resource-card__cta { gap: 10px; }

/* Empty search state */
.search-empty {
  text-align: center; padding: 60px 20px;
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-muted);
  letter-spacing: 0.06em;
}

/* ── Product page ───────────────────────────────────────── */
.product-wrap { padding: 40px 0 0; }

.product-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.product-card__badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.product-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(22,128,61,0.07);
  border: 1px solid rgba(22,128,61,0.22);
  color: var(--ink-soft);
}
.product-badge--live { color: var(--accent); border-color: rgba(22,128,61,0.35); }

.product-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.07; letter-spacing: -0.025em;
  margin: 0 0 28px; color: var(--ink);
}
.product-card__title em {
  font-style: italic; color: var(--accent); font-weight: 300;
}

.product-card__desc {
  font-size: 16px; color: var(--ink-soft); line-height: 1.8;
  margin: 0 0 16px; max-width: 58ch;
}
.product-card__desc:last-of-type { margin-bottom: 32px; }

/* Feature list */
.product-features {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.product-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
}
.product-feature svg {
  color: var(--accent); flex-shrink: 0; margin-top: 2px;
}

/* Price + CTA */
.product-card__cta-block {
  display: flex; flex-direction: column; gap: 16px;
}
.product-price {
  display: flex; align-items: baseline; gap: 6px;
}
.product-price__amount {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 400; letter-spacing: -0.03em; color: var(--ink);
  line-height: 1;
}
.product-price__currency {
  font-family: var(--font-mono); font-size: 16px; color: var(--accent); font-weight: 600;
}
.product-price__note {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); letter-spacing: 0.08em;
}

.btn--accent {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #040d07; border-color: rgba(22,128,61,0.45);
  font-weight: 700; font-size: 14.5px;
  padding: 15px 28px; border-radius: 999px;
  text-decoration: none; border: 1px solid rgba(22,128,61,0.45);
  box-shadow: 0 18px 44px -18px rgba(22,128,61,0.5);
  transition:
    transform .35s var(--ease-spring),
    box-shadow .35s var(--ease-soft),
    background .35s var(--ease-soft);
  cursor: pointer; white-space: nowrap;
  width: fit-content;
}
.btn--accent:hover {
  background: linear-gradient(135deg, #1a9e55, var(--accent));
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 24px 52px -18px rgba(22,128,61,0.65);
}
.btn--lg { padding: 17px 32px; font-size: 15px; }

.product-card__guarantee {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-muted); letter-spacing: 0.06em; margin: 0;
}
.product-card__guarantee svg { color: var(--accent); flex-shrink: 0; }

/* Product visual (right column) */
.product-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(10,22,16,0.8), rgba(6,14,10,0.9));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.product-visual__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(22,128,61,0.12), transparent 70%);
}
.product-visual__icon { color: var(--accent); position: relative; z-index: 1; }
.product-visual__label {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; color: var(--ink);
  letter-spacing: -0.01em; position: relative; z-index: 1;
}
.product-visual__tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); position: relative; z-index: 1;
}

/* ── Responsive pages ───────────────────────────────────── */
@media (max-width: 900px) {
  .product-card { grid-template-columns: 1fr; }
  .product-card__visual { max-width: 340px; }
  .product-visual { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .page-main { padding: 0 20px 60px; }
  .resource-grid { grid-template-columns: 1fr; }
  .product-card__title { font-size: 38px; }
  .product-price__amount { font-size: 40px; }
  .product-card__visual { display: none; }
}

/* ── Page transition ────────────────────────────────────── */
body { animation: pageIn .35s var(--ease-out-quint) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.page-leaving { animation: pageOut .2s var(--ease-soft) both; pointer-events: none; }
@keyframes pageOut {
  to { opacity: 0; transform: translateY(-6px); }
}

/* ── Back to top ────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(22,128,61,0.10);
  border: 1px solid rgba(22,128,61,0.28);
  color: var(--accent);
  display: grid; place-items: center;
  cursor: pointer; z-index: 50;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s var(--ease-soft), transform .3s var(--ease-soft), background .2s;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: rgba(22,128,61,0.20); }

/* ── Reading progress bar ───────────────────────────────── */
.read-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Pending button (Stripe) ────────────────────────────── */
.btn--pending { opacity: 0.6; cursor: not-allowed; }
.btn--pending:hover { transform: none; box-shadow: none; }

/* ── Breadcrumb (global) ────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 36px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.breadcrumb a {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color .25s;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.82); }
@media (max-width: 600px) {
  .breadcrumb { padding: 12px 20px 0; }
}


/* ════════════════════════════════════════════════════════════
   SISTEMA DE PAGOS — Tienda, Gracias, Descarga
   ════════════════════════════════════════════════════════════ */

/* ── Spinner en botón ──────────────────────────────────────── */
.btn--loading {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}
.btn--loading::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.65);
  border-radius: 50%;
  animation: arbor-spin 0.7s linear infinite;
  margin-left: 6px;
  vertical-align: middle;
}
@keyframes arbor-spin { to { transform: rotate(360deg); } }

/* ── Banner de cancelación ─────────────────────────────────── */
.payment-banner {
  position: fixed; top: 72px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 999px;
  font-size: 12.5px; font-family: var(--font-mono); letter-spacing: 0.04em;
  z-index: 200; white-space: nowrap;
  animation: banner-in 0.4s var(--ease-out-quint) both;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.6);
}
@keyframes banner-in {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.payment-banner--cancel {
  background: rgba(14,12,8,0.92);
  border: 1px solid rgba(180,140,80,0.3);
  color: rgba(215,185,120,0.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.payment-banner__close {
  background: none; border: none; cursor: pointer;
  color: inherit; opacity: 0.55; padding: 0 0 0 8px;
  font-size: 15px; line-height: 1; transition: opacity 0.15s;
}
.payment-banner__close:hover { opacity: 1; }

/* ── Toast de error ─────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 88px; right: 24px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 12px;
  font-size: 12.5px; font-family: var(--font-mono); letter-spacing: 0.03em;
  z-index: 200; max-width: 340px;
  animation: toast-in 0.35s var(--ease-out-quint) both;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.7);
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.toast--error {
  background: rgba(14,8,8,0.93);
  border: 1px solid rgba(180,70,70,0.3);
  color: rgba(215,130,130,0.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}

/* ── Gracias page ───────────────────────────────────────────── */
.gracias-wrap { padding: 60px 0 0; max-width: 600px; margin: 0 auto; }
.gracias-card {
  border: 1px solid var(--line-strong, rgba(255,255,255,0.08));
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10,22,16,0.72), rgba(6,14,10,0.72));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 48px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.gracias-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(22,128,61,0.08);
  border: 1px solid rgba(22,128,61,0.24);
  display: grid; place-items: center; color: var(--accent);
}
.gracias-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 4vw, 40px); letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
}
.gracias-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin: 0; max-width: 50ch; }
.gracias-steps { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 13px; width: 100%; }
.gracias-step { display: flex; align-items: center; gap: 13px; font-size: 13.5px; }
.gracias-step__icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11.5px; flex-shrink: 0;
  font-family: var(--font-mono);
}
.gracias-step--done   .gracias-step__icon { background: rgba(22,128,61,0.1); color: var(--accent); border: 1px solid rgba(22,128,61,0.28); }
.gracias-step--done   { color: var(--ink-soft); }
.gracias-step--pending .gracias-step__icon { background: rgba(180,180,50,0.07); border: 1px solid rgba(180,180,50,0.18); }
.gracias-step--pending { color: var(--ink); }
.gracias-step--future .gracias-step__icon { background: rgba(255,255,255,0.04); color: var(--ink-muted); border: 1px solid var(--line-strong, rgba(255,255,255,0.08)); }
.gracias-step--future { color: var(--ink-muted); }
.gracias-step__spinner {
  display: block; width: 11px; height: 11px;
  border: 1.5px solid rgba(180,180,50,0.25);
  border-top-color: rgba(200,200,60,0.85);
  border-radius: 50%; animation: arbor-spin 0.85s linear infinite;
}
.gracias-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-muted); letter-spacing: 0.04em; line-height: 1.6;
}
.gracias-note a { color: var(--accent); }
@media (max-width: 600px) { .gracias-card { padding: 32px 22px; } }

/* ── Descarga page ──────────────────────────────────────────── */
.descarga-wrap { padding: 60px 0 0; max-width: 520px; margin: 0 auto; }
.descarga-state {
  border: 1px solid var(--line-strong, rgba(255,255,255,0.08));
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10,22,16,0.72), rgba(6,14,10,0.72));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 48px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.descarga-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--line-strong, rgba(255,255,255,0.08));
  border-top-color: var(--accent);
  border-radius: 50%; animation: arbor-spin 0.85s linear infinite;
}
.descarga-icon {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
}
.descarga-icon--success { background: rgba(22,128,61,0.08); border: 1px solid rgba(22,128,61,0.24); color: var(--accent); }
.descarga-icon--error   { background: rgba(180,60,60,0.08); border: 1px solid rgba(180,60,60,0.22); color: rgba(215,115,115,0.9); }
.descarga-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 3.5vw, 34px); letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.descarga-desc  { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin: 0; }
.descarga-link  { color: var(--accent); }
.descarga-note  { display: flex; align-items: flex-start; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-muted); letter-spacing: 0.03em; line-height: 1.6; }
.descarga-note--warning { color: rgba(200,165,70,0.82); }
.descarga-state__msg { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.05em; margin: 0; }
@media (max-width: 600px) { .descarga-state { padding: 32px 22px; } }

/* ── Pain Hook ─────────────────────────────────────────────── */
.product-hook {
  max-width: 680px;
  margin: 0 auto 48px;
  padding: 0 8px;
  text-align: center;
}
.product-hook__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
}
.product-hook__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 36px;
  line-height: 1.6;
}
.product-hook__dms {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(180,196,210,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 28px;
}
.product-hook__intro {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.product-hook__quotes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-hook__quotes li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.product-hook__quotes em {
  font-style: italic;
  color: var(--ink);
}
.product-hook__break {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── Precio tachado ────────────────────────────────────────── */
.product-price__original {
  font-size: 16px;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-right: 6px;
  font-family: var(--font-mono);
}

/* ── Tabla de valor ────────────────────────────────────────── */
.value-table {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 0 8px;
}
.value-table__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
.value-table__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  border-top: 1px solid rgba(180,196,210,0.08);
}
.value-table__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(180,196,210,0.06);
  font-size: 14px;
  color: var(--ink-soft);
}
.value-table__list li span:last-child {
  font-family: var(--font-mono);
  color: var(--ink-muted);
  font-size: 13px;
}
.value-table__list small { font-size: 10px; opacity: 0.7; margin-left: 1px; }
.value-table__investment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 0;
  margin-top: 4px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.value-table__price {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.value-table__price small { font-size: 11px; color: var(--ink-muted); font-weight: 400; margin-left: 4px; }

/* ── Testimonios ───────────────────────────────────────────── */
.testimonials {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 0 8px;
}
.testimonials__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(180,196,210,0.1);
  border-radius: 14px;
  padding: 24px 28px;
}
.testimonial-card__text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-card__author {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── CTA final ─────────────────────────────────────────────── */
.cta-final {
  max-width: 560px;
  margin: 0 auto 80px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.cta-final__note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── Product hero (visual + título + precio) ───────────────── */
.product-hero {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-hero__card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, rgba(22,128,61,0.12) 0%, rgba(8,13,9,0.8) 60%);
  border: 1px solid rgba(22,128,61,0.25);
  border-radius: 20px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  overflow: hidden;
}
.product-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(22,128,61,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero__icon {
  color: var(--accent);
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.product-hero__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.product-hero__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}
.product-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 10px;
}
.product-hero__title em { font-style: italic; color: var(--accent); }
.product-hero__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-hero__price-old {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.product-hero__price-now {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.product-hero__hook {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 420px;
}

/* ── Product copy (pain + benefits + CTA) ──────────────────── */
.product-copy {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 8px;
}
.product-copy__pain {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 24px;
}
.product-copy__intro {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.product-copy__tried {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}
.product-copy__close {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 28px 0 0;
}
.product-copy__break {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 28px 0 32px;
}
.product-copy__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 18px;
}
.product-copy__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 36px 0 48px;
}

/* ── Precio ancla (antes de beneficios) ────────────────────── */
.price-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 0 8px;
  flex-wrap: wrap;
}
.price-anchor__original {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.price-anchor__amount {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-anchor__currency {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink-muted);
  align-self: flex-end;
  padding-bottom: 6px;
}
.price-anchor__badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(180,196,210,0.18);
  border-radius: 999px;
  padding: 4px 12px;
  align-self: center;
}

/* ── Product card columna única ────────────────────────────── */
.product-wrap--single { max-width: 560px; margin: 0 auto 48px; }
.product-card--single {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 32px 28px;
}
.product-card--single .product-card__title { margin-top: 12px; }
.product-card--single .product-card__cta-block { margin-top: 28px; }

/* ── Garantía ──────────────────────────────────────────────── */
.garantia {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 0 8px;
}
.garantia-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(180,196,210,0.04);
  border: 1px solid rgba(180,196,210,0.14);
  border-radius: 14px;
  padding: 22px 24px;
}
.garantia-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.8;
  margin-top: 2px;
}
.garantia-body { flex: 1; }
.garantia-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.4;
}
.garantia-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}
