/* ============================================================
   GOLD TEAM — Landing Page
   Paleta: Negro #000 / #0A0A0A · Dorado #D4AF37 / #C9A84C
   ============================================================ */

:root {
  --black: #000000;
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #161616;
  --line: rgba(212, 175, 55, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #D4AF37;
  --gold-2: #C9A84C;
  --gold-3: #F2D27A;
  --gold-grad: linear-gradient(135deg, #F2D27A 0%, #D4AF37 50%, #9A7B23 100%);
  --text: #F5F5F5;
  --muted: #A8A8A8;
  --muted-2: #6E6E6E;

  --radius: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.18);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 10px 0;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { padding: 6px 0; }
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; transition: transform .3s var(--ease); }
.nav__brand:hover { transform: scale(1.04); }
.nav__logo {
  height: 130px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(212, 175, 55, 0.35));
  transition: height .3s var(--ease);
}
.nav.scrolled .nav__logo { height: 92px; }
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta { white-space: nowrap; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold-grad);
  color: #1a1300;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.28);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.45);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 170px 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.hero__glow--1 {
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  top: -200px; left: -150px;
}
.hero__glow--2 {
  background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%);
  bottom: -200px; right: -100px;
}
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0.6rem 0 1.4rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 2.4rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 4rem;
}
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.metric__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.metric__suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-2);
  margin-left: 2px;
}
.metric small {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--gold);
  margin: 6px auto;
  border-radius: 2px;
  animation: scroll-dot 1.8s var(--ease) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.section__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   CARDS (ABOUT)
   ============================================================ */
.card {
  padding: 2.2rem 1.8rem;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(212,175,55,0.08), transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow-gold);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============================================================
   PURPOSE — BULLETS
   ============================================================ */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-inline: auto;
}
.bullets li {
  padding: 1.2rem 1.4rem 1.2rem 3rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(212,175,55,0.05), transparent 60%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
  color: var(--muted);
}
.bullets li::before {
  content: '◆';
  position: absolute;
  left: 1.1rem; top: 1.2rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.bullets li strong { color: var(--text); font-weight: 600; }

/* ============================================================
   VISION
   ============================================================ */
.vision__wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quote {
  margin: 2rem 0 0;
  padding: 1.4rem 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-3);
  border-left: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.vision__art {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.vision__glow {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.32), rgba(212,175,55,0.08) 50%, transparent 75%);
  filter: blur(32px);
  z-index: -1;
  animation: pulse-glow 5s ease-in-out infinite;
}
.vision__ring,
.vision__ring--2 {
  position: absolute;
  inset: 4%;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.vision__ring::before,
.vision__ring--2::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold);
  transform: translateX(-50%);
}
.vision__ring--2 {
  inset: 18%;
  animation-duration: 22s;
  animation-direction: reverse;
  border-color: rgba(212, 175, 55, 0.28);
}
.vision__ring--2::before {
  width: 7px; height: 7px;
  background: var(--gold-3);
}
.vision__logo {
  position: relative;
  width: 52%;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(212, 175, 55, 0.4));
  animation: float 6s ease-in-out infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ============================================================
   PROOF
   ============================================================ */
.grid--proof {
  grid-template-columns: repeat(4, 1fr);
}
.proof-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}
.proof-card:hover { transform: translateY(-4px); border-color: var(--line); }
.proof-card__media {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--muted-2);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  background:
    repeating-linear-gradient(45deg, rgba(212,175,55,0.04) 0 10px, transparent 10px 20px);
}
.proof-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
}
.disclaimer {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--muted-2);
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

/* ============================================================
   METHODOLOGY — STEPS
   ============================================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-2);
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--line); }
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; margin: 0 0 0.4rem; font-weight: 600; }
.step p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { max-width: 1180px; margin-inline: auto; }
.pricing.grid--3 { gap: 1.6rem; align-items: stretch; }
.plan {
  padding: 2.4rem;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-4px); border-color: var(--line); }
.plan--featured {
  border-color: var(--gold);
  background:
    radial-gradient(800px circle at top right, rgba(212,175,55,0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  box-shadow: var(--shadow-gold);
}
.plan__badge {
  position: absolute;
  top: -14px; right: 24px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: var(--black);
  border-radius: 999px;
  font-weight: 700;
}
.plan__head { display: flex; flex-direction: column; gap: 0.4rem; }
.plan__tag {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.plan__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  margin: 0;
}
.plan__price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; margin-left: 0.4rem; }
.plan__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.plan__features li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.plan__features li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}

.funding {
  margin-top: 4rem;
  padding: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(700px circle at left, rgba(212,175,55,0.06), transparent 50%),
    var(--bg-2);
}
.funding__head { text-align: center; margin-bottom: 2.4rem; }
.funding__head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0.3rem 0;
  font-weight: 600;
}
.funding__head p { color: var(--muted); margin: 0 0 1.4rem; }
.funding__head p strong { color: var(--gold-3); font-weight: 600; }

.funding__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2.4rem;
  margin-top: 1.4rem;
  text-align: left;
}
.funding__legend-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 280px;
}
.funding__legend-item strong { color: var(--text); font-size: 0.92rem; display: block; }
.funding__legend-item small { color: var(--muted); font-size: 0.78rem; }
.funding__legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.funding__legend-dot--cap { background: var(--gold-3); box-shadow: 0 0 12px rgba(212, 175, 55, 0.6); }
.funding__legend-dot--inv { background: #fff; opacity: 0.65; }

.funding__table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(0,0,0,0.25);
  padding: 0.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.funding__row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1.4fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.funding__row:not(.funding__row--head):hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--line);
  transform: translateX(2px);
}
.funding__row--head {
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
}
.funding__row span[role="cell"] { font-size: 0.96rem; color: var(--text); }
.funding__row span strong { color: var(--text); font-weight: 600; }
.funding__sub {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.funding__capital {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.funding__capital .funding__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.funding__capital .funding__amount small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-left: 0.2rem;
}
.funding__capital > small {
  font-size: 0.78rem;
  color: var(--muted);
}

.funding__investment {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.funding__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.funding__price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-left: 0.2rem;
}
.funding__usd {
  font-size: 0.78rem !important;
  color: var(--gold-2) !important;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.funding__row--featured {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--line);
}
.funding__tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-2);
  border-radius: 999px;
  font-weight: 600;
}
.funding__tag--gold {
  background: var(--gold-grad);
  color: var(--black);
}
.funding__note {
  margin: 1.4rem 0 0;
  font-size: 0.82rem;
  color: var(--muted-2);
  text-align: center;
}

/* ============================================================
   PROOF — Galerías de imágenes
   ============================================================ */
.proof-block {
  margin-bottom: 4rem;
}
.proof-block:last-of-type { margin-bottom: 2rem; }
.proof-block__head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.proof-block__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.proof-block__head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 0 0 0.2rem;
  font-weight: 600;
}
.proof-block__head p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof-block:nth-of-type(2) .proof-gallery { grid-template-columns: repeat(3, 1fr); }
.proof-gallery--2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 720px;
  margin: 0 auto;
}

.proof-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  cursor: zoom-in;
  display: block;
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
}
.proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.proof-img:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.proof-img:hover img { transform: scale(1.05); }
.proof-img__label {
  position: absolute;
  bottom: 10px; left: 10px;
  padding: 0.32rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Estado vacío (imagen aún no entregada) */
.proof-img--empty img { display: none; }
.proof-img--empty {
  cursor: default;
  background:
    repeating-linear-gradient(45deg, rgba(212,175,55,0.04) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, var(--bg-3), var(--bg-2));
}
.proof-img--empty::after {
  content: 'Imagen pendiente';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.proof-img--empty:hover { transform: none; border-color: var(--line-soft); box-shadow: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
  animation: lb-in .4s var(--ease);
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lightbox__close:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: rotate(90deg);
}
@keyframes lb-in {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { text-align: center; padding: 140px 0; }
.contact__inner { max-width: 720px; margin: 0 auto; }
.contact__ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 2.4rem;
  flex-wrap: wrap;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.socials a:hover { color: var(--gold); }
.socials span { color: var(--muted-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line-soft);
  background: var(--black);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.2));
}
.footer__brand p {
  margin: 0.3rem 0 0;
  color: var(--muted-2);
  font-size: 0.88rem;
  max-width: 380px;
}
.footer small { color: var(--muted-2); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing.grid--3 { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .proof-gallery,
  .proof-block:nth-of-type(even) .proof-gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .funding__row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.4rem 1.2rem;
    text-align: left;
  }
  .funding__row span[role="cell"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed var(--line-soft);
    padding-bottom: 0.7rem;
  }
  .funding__row span[role="cell"]:last-child {
    border-bottom: none;
    padding-bottom: 0;
    justify-content: stretch;
  }
  .funding__row span[role="cell"]:last-child .btn { width: 100%; }
  .funding__row span[role="cell"]:nth-child(1)::before { content: 'Plan'; }
  .funding__row span[role="cell"]:nth-child(2)::before { content: 'Capital operativo'; }
  .funding__row span[role="cell"]:nth-child(3)::before { content: 'Inversión'; }
  .funding__row span[role="cell"]:nth-child(1)::before,
  .funding__row span[role="cell"]:nth-child(2)::before,
  .funding__row span[role="cell"]:nth-child(3)::before {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-2);
    flex-shrink: 0;
  }
  .funding__capital, .funding__investment { text-align: right; align-items: flex-end; }
  .funding__row--head { display: none; }
  .funding__legend { gap: 1rem; }
  .vision__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .vision__art { max-width: 360px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
  .nav__logo { height: 84px; }
  .nav.scrolled .nav__logo { height: 64px; }
  .footer__logo { height: 56px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    padding: 1.4rem 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 60px; }
  .hero__metrics { grid-template-columns: 1fr; gap: 1.2rem; }
  .metric { flex-direction: row; align-items: baseline; gap: 0.6rem; }
  .metric small { margin-left: auto; }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .proof-gallery,
  .proof-block:nth-of-type(even) .proof-gallery { grid-template-columns: 1fr 1fr; }
  .proof-block__num { font-size: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .funding { padding: 1.4rem 1rem; }
  .funding__capital .funding__amount { font-size: 1.4rem; }
  .funding__price { font-size: 1.15rem; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FLOATING SOCIAL ICONS (minimal, gold)
   ============================================================ */
.float-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 80;
}
.float-social__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.float-social__btn svg { width: 18px; height: 18px; }
.float-social__btn:hover {
  color: var(--gold-3);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .float-social { right: 14px; bottom: 14px; gap: 8px; }
  .float-social__btn { width: 36px; height: 36px; }
  .float-social__btn svg { width: 17px; height: 17px; }
}
