/* ============================================
   REPLANTÉATE — Design System v3
   Paleta oficial brand board + lockup CSS
   Tipografías: Manrope (wordmark) + Cormorant Garamond (display) + Inter (UI)
   ============================================ */

:root{
  /* Paleta oficial */
  --night: #151028;
  --deep:  #241744;
  --violet:#4B2E83;
  --bright:#7C3AED;
  --gold:  #C8A24A;
  --gold2: #F4D77E;
  --gold3: #E8C56F;
  --ivory: #F6F0E6;
  --ink:   #120D22;

  /* Texto con contrastes garantizados sobre fondo nocturno */
  --text:        #faf5ee;
  --text-dim:    #e6dcf2;
  --muted:       #cdc1de;
  --muted-warm:  #d8ccc4;

  --line:  rgba(246,240,230,.16);
  --line-strong: rgba(200,162,74,.32);
  --soft:  rgba(246,240,230,.07);
  --green: #25D366;

  /* Layout */
  --max: 1180px;
  --r-xs: 12px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 28px;
  --r-xl: 36px;

  --sh-sm: 0 6px 16px rgba(0,0,0,.20);
  --sh-md: 0 14px 36px rgba(0,0,0,.30);
  --sh-lg: 0 28px 70px rgba(0,0,0,.38);
  --sh-gold: 0 14px 34px rgba(200,162,74,.28);
  --sh-violet: 0 14px 34px rgba(124,58,237,.34);

  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --f-brand:   "Manrope", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --f-ui:      "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  background: #0E0820;
  background-image:
    radial-gradient(ellipse 80% 60% at 14% 0%, rgba(124,58,237,.34), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 8%, rgba(200,162,74,.14), transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(75,46,131,.24), transparent 60%),
    linear-gradient(180deg, #151028 0%, #1e1438 35%, #1a1232 70%, #0E0820 100%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100%;
}

body{
  margin:0;
  font-family: var(--f-ui);
  font-feature-settings: "ss01","cv11";
  color: var(--text);
  line-height: 1.62;
  background: transparent;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(246,240,230,.12) 1px, transparent 1px),
    radial-gradient(1.4px 1.4px at 18% 22%, rgba(244,215,126,.5), transparent 60%),
    radial-gradient(1px 1px at 72% 14%, rgba(246,240,230,.55), transparent 60%),
    radial-gradient(1.4px 1.4px at 38% 68%, rgba(244,215,126,.4), transparent 60%),
    radial-gradient(1px 1px at 88% 80%, rgba(246,240,230,.45), transparent 60%),
    radial-gradient(1px 1px at 12% 88%, rgba(244,215,126,.38), transparent 60%);
  background-size: 60px 60px, auto, auto, auto, auto, auto;
  opacity: .55;
}

main, header, footer, section, .top, .bottom{position:relative; z-index:1}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
::selection{background:var(--gold);color:var(--ink)}

.wrap{width:min(var(--max), calc(100% - 36px)); margin:auto}

/* ===================================================
   LOCKUP DE MARCA — usa SVG oficial del brand board
   =================================================== */
.lockup{
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.lockup img{
  display: block;
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.30));
}

/* Variante grande para hero */
.lockup-lg img{
  height: 180px;
}

/* Variante para footer */
.lockup-footer img{
  height: 78px;
}

/* ===== Tipografía display ===== */
.serif, h1, h2, h3, .h1, .service-title, .display{
  font-family: var(--f-display);
  letter-spacing:-.025em;
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
}

.h1{font-size: clamp(2.6rem, 6.8vw, 5.6rem); margin:0; letter-spacing:-.04em; line-height: 1.04}
.h1 em, h2 em, .service-title em{
  color: var(--gold2);
  font-style: italic;
  font-weight: 500;
}

.lead{
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  color: var(--text-dim);
  max-width: 720px;
  margin: 24px 0 0;
  font-weight: 400;
}

.micro{color: var(--muted); font-size:.92rem}
.sub{color: var(--text-dim); max-width: 820px; margin: 0 0 28px; font-size:1.04rem}

/* ===== Header ===== */
.top{
  position: sticky; top:0; z-index:50;
  background: rgba(14, 9, 28, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.nav{
  min-height: 86px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.nav .lockup img{height: 56px}

.links{display:flex; gap:6px; align-items:center; font-size:.95rem}
.links a{
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  transition: .18s ease;
  font-weight: 500;
}
.links a:hover{color: var(--gold2); background: rgba(246,240,230,.06)}

/* ===== Botones ===== */
.btns{display:flex; flex-wrap:wrap; gap:12px; margin-top:30px}
.btn{
  display:inline-flex; justify-content:center; align-items:center;
  gap:8px;
  border-radius:999px;
  padding: 14px 22px;
  min-height: 50px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .96rem;
  text-align:center;
  line-height: 1.12;
  font-family: var(--f-ui);
  transition: transform .18s ease, filter .18s ease, box-shadow .2s ease;
  cursor: pointer;
  letter-spacing: -.005em;
}
.btn:hover{transform: translateY(-1px); filter: saturate(1.08)}
.btn:focus-visible{outline: 3px solid var(--gold2); outline-offset: 3px}

.primary{
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--ink);
  box-shadow: var(--sh-gold);
  font-weight: 800;
}
.primary:hover{box-shadow: 0 18px 40px rgba(200,162,74,.38)}

.secondary{
  background: rgba(246,240,230,.07);
  border-color: rgba(246,240,230,.22);
  color: var(--ivory);
}
.secondary:hover{background: rgba(246,240,230,.12)}

.pay{
  background: linear-gradient(135deg, #a87bff, var(--bright));
  color: #fff;
  box-shadow: var(--sh-violet);
  font-weight: 700;
}
.pay:hover{box-shadow: 0 18px 40px rgba(124,58,237,.46)}

.wa{
  background: linear-gradient(135deg, #34de7c, #128C7E);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.24);
  font-weight: 700;
}

.smallbtn{padding: 10px 16px; min-height: 40px; font-size:.88rem}

/* ===== Hero ===== */
.hero{
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
  isolation: isolate;  /* crea stacking context propio - critical */
}

/* === Decoración atmosférica del hero (estilo Instagram) === */
/* Motifs reubicados a esquinas y bordes, NO encima del contenido */
.hero-deco{
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

/* Laureles laterales en violeta tenue — esquinas inferiores */
.hero-deco-laurel-l{
  left: -60px; bottom: -100px;
  width: 220px; height: 480px;
  color: var(--bright);
  opacity: .18;
}
.hero-deco-laurel-r{
  right: -60px; bottom: -100px;
  width: 220px; height: 480px;
  color: var(--bright);
  opacity: .18;
}

/* Constelación espiral oro — esquina SUPERIOR IZQUIERDA bien al margen */
.hero-deco-constellation{
  top: -40px; left: -80px;
  width: 280px; height: 280px;
  color: var(--gold);
  opacity: .32;
}

/* Luna creciente — esquina SUPERIOR DERECHA bien al margen */
.hero-deco-moon{
  top: 40px; right: -30px;
  width: 160px; height: 160px;
  color: var(--violet);
  opacity: .45;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;  /* siempre encima de los motifs */
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(200,162,74,.36);
  background: rgba(200,162,74,.10);
  color: var(--gold2);
  padding: 9px 16px;
  border-radius: 999px;
  font-size:.82rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.eyebrow .dot{
  width:7px; height:7px; border-radius:50%;
  background: var(--gold2);
  box-shadow: 0 0 12px var(--gold2);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100% {opacity: 1; transform: scale(1)}
  50% {opacity: .55; transform: scale(.82)}
}

.chips{display:flex; gap:9px; flex-wrap:wrap; margin-top: 24px}
.chip{
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid rgba(246,240,230,.18);
  background: rgba(246,240,230,.06);
  padding: 8px 12px;
  border-radius: 999px;
}

/* Tarjeta hero — fondo nocturno con marco oro */
.hero-card{
  padding: 38px 34px;
  background:
    linear-gradient(180deg, rgba(124,58,237,.20), rgba(36,23,68,.45)),
    rgba(14,9,28,.50);
  border: 1px solid rgba(200,162,74,.34);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 85% 8%, rgba(200,162,74,.20), transparent 50%),
    radial-gradient(circle at 8% 92%, rgba(124,58,237,.24), transparent 50%);
  pointer-events:none;
}

.hero-card .lockup-lg{
  position: relative; z-index:1;
  margin-bottom: 32px;
  display: block;
  text-align: center;
}
.hero-card .lockup-lg img{
  height: 200px;
  margin: 0 auto;
}

.quote{
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  color: var(--ivory);
  font-family: var(--f-display);
  font-size: 1.36rem;
  font-style: italic;
  line-height: 1.45;
  font-weight: 500;
  position: relative; z-index:1;
}

.quote-author{
  margin-top: 14px;
  font-size: .76rem;
  color: var(--gold3);
  letter-spacing: .20em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--f-ui);
  font-style: normal;
}

/* ===== Secciones ===== */
.section{padding: 84px 0; position: relative}
.section h2{
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 0 0 18px;
  max-width: 920px;
}

.section-eyebrow{
  display:inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-ui);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.22em;
  color: var(--gold3);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::before{
  content:"";
  width: 28px; height: 1px;
  background: var(--gold);
}

/* Decoración rúnica de sección */
.section-rune{
  position: absolute;
  pointer-events: none;
  opacity: .06;
  z-index: 0;
  color: var(--gold);
}
.section-rune svg{width: 100%; height: 100%}

/* ===== Grids ===== */
.grid{display:grid; gap: 20px}
.g2{grid-template-columns: repeat(2, minmax(0,1fr))}
.g3{grid-template-columns: repeat(3, minmax(0,1fr))}
.g4{grid-template-columns: repeat(4, minmax(0,1fr))}

/* ===== Cards ===== */
.card{
  padding: 28px;
  position: relative;
  background: linear-gradient(180deg, rgba(246,240,230,.08), rgba(246,240,230,.03));
  border: 1px solid rgba(246,240,230,.14);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(200,162,74,.34);
}

.card.featured{
  border-color: rgba(200,162,74,.50);
  background:
    linear-gradient(180deg, rgba(124,58,237,.22), rgba(246,240,230,.05)),
    radial-gradient(circle at 100% 0%, rgba(200,162,74,.16), transparent 50%);
}
.card.featured::after{
  content: "Más elegida";
  position: absolute;
  top: -13px; right: 22px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--ink);
  padding: 7px 15px;
  border-radius: 999px;
  font-size:.70rem;
  font-weight:800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}

.tag{
  display:inline-flex;
  color: var(--gold2);
  background: rgba(200,162,74,.10);
  border: 1px solid rgba(200,162,74,.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.card h3{
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--ivory);
  font-weight: 600;
  font-family: var(--f-display);
  letter-spacing: -.01em;
}
.card p{color: var(--text-dim); margin: 0; font-size: 1rem; line-height: 1.6}

.price{
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--gold2);
  margin: 18px 0 4px;
  line-height: 1;
}
.price .small{
  font-size:.96rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
  font-family: var(--f-ui);
}

.cuotas{
  font-size: .84rem;
  color: var(--text-dim);
  background: rgba(200,162,74,.08);
  border: 1px solid rgba(200,162,74,.20);
  border-radius: 14px;
  padding: 11px 14px;
  margin: 14px 0 18px;
  line-height:1.5;
}
.mpnote{font-size:.84rem; color: var(--muted); margin-top:10px}

.list{list-style:none; padding:0; margin: 18px 0; display:grid; gap: 11px; color: var(--text-dim)}
.list li{display:flex; gap:12px; align-items:flex-start; line-height:1.55}
.list li::before{
  content:"";
  width: 18px; height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2l-3.5-3.6L4 14.1l5 5 11-11L18.6 6.7z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2l-3.5-3.6L4 14.1l5 5 11-11L18.6 6.7z' fill='black'/></svg>") center/contain no-repeat;
}

.card-actions{display:grid; gap: 10px; margin-top: 22px}

/* ===== Banda CTA ===== */
.band{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(200,162,74,.18), rgba(124,58,237,.22));
  border: 1px solid rgba(200,162,74,.32);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.band::before{
  content: "✦";
  position: absolute;
  top: -16px; right: 24px;
  font-size: 7rem;
  color: rgba(200,162,74,.12);
  font-family: var(--f-display);
  pointer-events: none;
  line-height: 1;
}
.band h2, .band h3{margin: 0 0 8px; font-family: var(--f-display); color: var(--ivory)}
.band h3{font-size:1.6rem; font-weight:600}
.band p{margin:0; color: var(--text-dim); font-size: 1.02rem; max-width: 640px; position: relative; z-index: 1}

/* ===== Pillars ===== */
.pillar{
  padding: 30px;
  background: linear-gradient(180deg, rgba(246,240,230,.06), rgba(246,240,230,.02));
  border: 1px solid rgba(246,240,230,.13);
  border-radius: var(--r-lg);
  transition: transform .22s ease, border-color .22s ease;
}
.pillar:hover{transform: translateY(-3px); border-color: rgba(200,162,74,.32)}
.pillar .icon{
  width: 58px; height: 58px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(124,58,237,.34), rgba(200,162,74,.22));
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--gold2);
  font-size: 1.75rem;
  margin-bottom: 18px;
  border: 1px solid rgba(200,162,74,.28);
  text-shadow: 0 0 14px rgba(244,215,126,.55);
  line-height: 1;
}
.pillar h3{
  font-family: var(--f-display);
  font-size: 1.42rem;
  margin: 0 0 10px;
  color: var(--ivory);
  font-weight: 600;
}
.pillar p{color: var(--text-dim); margin: 0; font-size: 1rem; line-height: 1.6}

/* ===== Steps / Timeline ===== */
.timeline{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}
.timeline::before{
  content:"";
  position:absolute;
  left: 27px; top: 18px; bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(200,162,74,.1) 80%, transparent);
}
.tl-item{display:grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start}
.tl-num{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--night);
  border: 2px solid var(--gold);
  display:grid; place-items: center;
  color: var(--gold2);
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(14,9,28,1), 0 0 22px rgba(200,162,74,.32);
}
.tl-content h3{
  font-family: var(--f-display);
  font-size: 1.45rem;
  margin: 10px 0 8px;
  color: var(--ivory);
  font-weight: 600;
}
.tl-content p{color: var(--text-dim); margin: 0; line-height: 1.6}

.split{display:grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: start}

/* ===== FAQ ===== */
.faq details{
  background: rgba(246,240,230,.06);
  border: 1px solid rgba(246,240,230,.13);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: border-color .18s ease, background .18s ease;
}
.faq details[open]{
  background: rgba(246,240,230,.10);
  border-color: rgba(200,162,74,.30);
}
.faq summary{
  cursor:pointer;
  font-weight: 700;
  color: var(--ivory);
  font-size: 1.06rem;
  list-style: none;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";
  font-size: 1.7rem;
  color: var(--gold2);
  font-family: var(--f-display);
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after{content:"−"}
.faq p{color: var(--text-dim); margin: 14px 0 0; line-height:1.65}

/* ===== Breadcrumbs ===== */
.breadcrumbs{
  padding-top: 24px;
  color: var(--muted);
  font-size:.92rem;
  margin-bottom: 16px;
}
.breadcrumbs a{
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(200,162,74,.6);
  color: var(--text-dim);
}
.breadcrumbs a:hover{color: var(--gold2)}

/* ===== Service page ===== */
.service-hero{padding: 56px 0 12px}
.service-grid{display:grid; grid-template-columns: 1fr 400px; gap: 44px; align-items: start}
.service-title{
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  margin: 0;
  letter-spacing: -.025em;
}

.paybox{
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(124,58,237,.14), rgba(36,23,68,.32)),
    rgba(14,9,28,.50);
  border: 1px solid rgba(200,162,74,.38);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: sticky;
  top: 92px;
}
.paybox h2{
  font-family: var(--f-display);
  font-size: 1.7rem;
  margin: 6px 0 0;
  font-weight: 600;
  color: var(--ivory);
}
.note{color: var(--muted); font-size:.88rem}
.trust-row{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(246,240,230,.18);
}
.trust-row .tch{
  font-size:.78rem;
  color: var(--text-dim);
  background: rgba(246,240,230,.06);
  border: 1px solid rgba(246,240,230,.14);
  border-radius: 8px;
  padding: 7px 11px;
  font-weight: 500;
}

/* ===== Testimonios ===== */
.testimonial{
  font-family: var(--f-display);
  font-size: 1.22rem;
  color: var(--ivory);
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-top: 34px;
}
.testimonial::before{
  content: "“";
  font-size: 4.2rem;
  font-family: var(--f-display);
  color: var(--gold);
  position: absolute;
  top: -10px; left: -4px;
  line-height: 1;
  opacity: .8;
}
.who{
  font-size:.78rem;
  color: var(--gold3);
  margin-top: 18px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--f-ui);
  font-style: normal;
  font-weight: 700;
}

/* ===== Alert ===== */
.alert{
  background: rgba(200,162,74,.10);
  border: 1px solid rgba(200,162,74,.28);
  border-radius: var(--r-md);
  padding: 20px 22px;
  color: var(--text-dim);
  line-height: 1.65;
}
.alert strong{color: var(--gold2)}

/* ===== CTAs inline y CTA final ===== */

/* CTAs inline entre secciones */
.cta-inline{
  margin-top: 48px;
  padding: 24px;
  text-align: center;
  border-top: 1px dashed rgba(200,162,74,.24);
}
.cta-inline-text{
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold2);
  margin: 0;
  line-height: 1.4;
}

/* CTA final destacado al cierre del index */
.final-cta{
  margin-top: 64px;
  padding: 52px 36px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(124,58,237,.22), rgba(36,23,68,.40)),
    radial-gradient(circle at 50% 0%, rgba(200,162,74,.18), transparent 60%),
    rgba(14,9,28,.50);
  border: 1px solid rgba(200,162,74,.42);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.final-cta::before{
  content: "";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,.20), transparent 60%);
  pointer-events: none;
}
.final-cta .symbol{
  display: block;
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--gold2);
  margin: 0 auto 14px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(244,215,126,.5);
}
.final-cta h2{
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  margin: 0 auto 16px;
  max-width: 760px;
}
.final-cta p{
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.6;
}
.final-cta-note{
  margin-top: 22px !important;
  font-size: .86rem !important;
  color: var(--muted) !important;
}

/* ===== Stats ===== */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 38px 0 12px;
}
.stat{
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 18px;
}
.stat .n{
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
  display:block;
}
.stat .l{color: var(--text-dim); font-size: .92rem; margin-top: 8px; display:block; line-height: 1.4}

/* ===== Footer ===== */
.footer{
  margin-top: 40px;
  padding: 64px 0 100px;
  border-top: 1px solid var(--line);
  background: rgba(8, 5, 18, .50);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr repeat(3, .8fr);
  gap: 36px;
}
.footer h3{
  font-size: .76rem;
  color: var(--gold3);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-family: var(--f-ui);
  font-weight: 700;
  margin: 0 0 16px;
}
.footer ul{list-style:none; margin:0; padding:0; display:grid; gap: 10px; color: var(--text-dim); font-size: .96rem}
.footer ul a:hover{color: var(--gold2)}
.footer-tag{
  color: var(--muted);
  max-width: 460px;
  font-size:.96rem;
  line-height: 1.65;
  margin-top: 22px;
}
.foot-bottom{
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,240,230,.10);
  display:flex; justify-content:space-between; gap: 18px; flex-wrap:wrap;
  color: var(--muted);
  font-size: .82rem;
}
.foot-bottom a{text-decoration:underline; text-decoration-color: rgba(200,162,74,.4); text-underline-offset:3px}

/* ===== Sticky bottom mobile ===== */
.bottom{
  display:none;
  position:fixed; bottom:0; left:0; right:0;
  padding: 10px 14px env(safe-area-inset-bottom,10px);
  background: rgba(14, 9, 26, .96);
  border-top: 1px solid var(--line);
  z-index: 40;
  backdrop-filter: blur(12px);
}
.bottom .btn{width:100%}

/* ===== Divisor estrellado ===== */
.divider{
  display:flex; align-items:center; gap: 18px;
  color: var(--gold);
  margin: 32px auto;
  max-width: 460px;
}
.divider::before, .divider::after{
  content:"";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,162,74,.45), transparent);
}
.divider .symbol{
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--gold2);
}

/* ===== Menú hamburguesa mobile ===== */
.menu-toggle{display:none}
.menu-btn{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(246,240,230,.08);
  border: 1px solid rgba(246,240,230,.20);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  transition: background .18s ease, border-color .18s ease;
}
.menu-btn:hover{background: rgba(246,240,230,.14); border-color: rgba(200,162,74,.30)}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after{
  content:"";
  position: absolute;
  left: 12px;
  width: 20px; height: 2px;
  background: var(--ivory);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
  border-radius: 1px;
}
.menu-btn span{top: 21px}
.menu-btn span::before{top: -7px; left: 0}
.menu-btn span::after{top: 7px; left: 0}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 980px){
  .links{
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(14, 9, 26, .98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 22px;
    box-shadow: var(--sh-lg);
  }
  .links a{
    padding: 14px 16px;
    border-bottom: 1px solid rgba(246,240,230,.08);
    border-radius: 0;
    font-size: 1.04rem;
  }
  .links a:last-child{border-bottom: 0}
  .menu-toggle:checked ~ .links{display:flex}
  .menu-toggle:checked ~ .menu-btn span{background: transparent}
  .menu-toggle:checked ~ .menu-btn span::before{top: 0; transform: rotate(45deg)}
  .menu-toggle:checked ~ .menu-btn span::after{top: 0; transform: rotate(-45deg)}
  .menu-btn{display:block}

  .top{position: sticky}
  .nav{position: relative; flex-wrap: nowrap}
  .nav .smallbtn{display:none}

  .hero-grid{grid-template-columns: 1fr; gap: 40px}
  .hero-deco-laurel-l, .hero-deco-laurel-r{display: none}
  .hero-deco-constellation{width: 200px; height: 200px; top: 20px; left: -50px; opacity: .35}
  .hero-deco-moon{width: 80px; height: 80px; top: 30px; right: -10px}
  .g3, .g2, .g4{grid-template-columns: 1fr 1fr}
  .split, .service-grid, .band{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr 1fr}
  .paybox{position: relative; top: auto}
  .hero{padding-top: 60px}
  .bottom{display:block}
  .stats{grid-template-columns: 1fr 1fr}
  .lockup-lg img{height: 130px}
}

@media (max-width: 620px){
  .wrap{width: min(var(--max), calc(100% - 26px))}
  .lockup img{height: 44px}
  .nav .lockup img{height: 38px}
  .lockup-lg img{height: 100px}
  .btns{display:grid}
  .btns .btn{width:100%}
  .section{padding: 60px 0}
  .card{padding: 22px}
  .footer-grid{grid-template-columns: 1fr}
  .h1{font-size: clamp(2.3rem, 11vw, 3.6rem)}
  .g3, .g2, .g4{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
  .band{padding: 26px}
  .nav{min-height: 64px}
  .hero-card{padding: 26px 22px}
}
