:root {
  --bg-main: #0a111a;
  --bg-soft: #121d2a;
  --bg-panel: rgba(19, 27, 39, 0.94);
  --bg-panel-2: rgba(15, 22, 32, 0.92);
  --line: rgba(255,255,255,.08);
  --line-soft: rgba(255,255,255,.05);
  --gold: #d6a44c;
  --gold-soft: #f1c878;
  --green: #12b886;
  --green-soft: #74f0c4;
  --text: #edf2f7;
  --muted: #a9b7c8;
  --shadow: 0 24px 60px rgba(0,0,0,.34);
}
/* CONTENEDOR */
.logo-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* LOGO */
.brand-logo{
  width:70px;
  z-index:2;

  animation:
    logoFloat 4s ease-in-out infinite,
    logoPulse 3s ease-in-out infinite;

  filter:
    drop-shadow(0 0 12px rgba(255,215,0,0.6))
    brightness(1.1);
}

/* GLOW DETRÁS */
.logo-glow{
  position:absolute;
  width:90px;
  height:90px;
  background: radial-gradient(circle, rgba(255,215,0,0.6), transparent 70%);
  z-index:1;
  animation: glowPulse 3s infinite;
}

/* ✨ BRILLO QUE PASA */
.logo-wrapper::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 4s infinite;
}

/* ANIMACIONES */

@keyframes logoFloat{
  0%,100%{ transform:translateY(0);}
  50%{ transform:translateY(-5px);}
}

@keyframes logoPulse{
  0%,100%{ transform:scale(1);}
  50%{ transform:scale(1.05);}
}

@keyframes glowPulse{
  0%,100%{ opacity:0.4;}
  50%{ opacity:0.8;}
}

@keyframes shine{
  0%{ left:-100%;}
  50%{ left:100%;}
  100%{ left:100%;}
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(18,184,134,.08), transparent 20%),
    radial-gradient(circle at 78% 14%, rgba(214,164,76,.10), transparent 26%),
    linear-gradient(180deg, #0a111a 0%, #0d1722 38%, #0a1119 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: #fff4d7; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.card-surface {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 13, 20, .72);
  border-bottom: 1px solid var(--line-soft);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #1d1608;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-soft), #b57a22);
  box-shadow: 0 14px 30px rgba(181,122,34,.28);
}
.brand-text small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  margin-bottom: 4px;
}
.brand-text strong {
  font-size: 26px;
  color: #f7d493;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.nav-links a { color: #d4deea; }
.nav-links a:hover { color: #fff0c6; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #07120d !important;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  box-shadow: 0 12px 26px rgba(18,184,134,.18);
  font-weight: 800;
}

.hero-section { padding: 34px 0 22px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}
.hero-surface {
  padding: 34px;
  min-height: 590px;
  position: relative;
  overflow: hidden;
}
.hero-surface::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(18,184,134,.13), transparent 70%);
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: #78e8c0;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: 1.02;
  max-width: 860px;
}
.hero-copy h1 span {
  display: block;
  color: #f6d48f;
  text-shadow: 0 0 18px rgba(214,164,76,.14);
}
.lead {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #0b120f;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  box-shadow: 0 16px 30px rgba(18,184,134,.18);
}
.btn-secondary {
  color: #ffe9b8;
  border-color: rgba(214,164,76,.26);
  background: rgba(255,255,255,.02);
}
.btn-block, .btn-wide { width: 100%; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hero-strip div,
.metric-card,
.info-card,
.nft-card,
.pack-card,
.step-card {
  background: rgba(255,255,255,.018);
}
.hero-strip div {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}
.hero-strip strong,
.metric-card strong { display: block; font-size: 20px; margin-bottom: 5px; }
.hero-strip span,
.metric-card span { color: var(--muted); font-size: 13px; }
.hero-strip .hot {
  border-color: rgba(214,164,76,.24);
  background: linear-gradient(180deg, rgba(214,164,76,.10), rgba(255,255,255,.018));
}
.hero-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}
.ticker-card,
.metrics-grid,
.reserve-form { padding: 24px; }
.ticker-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 8px;
}
.ticker-head strong { font-size: 24px; }
.countdown {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 44px);
  color: #f8d99f;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.metric-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.metric-card small {
  display: block;
  margin-bottom: 10px;
  color: #7feccc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.metric-card.hot {
  border-color: rgba(214,164,76,.26);
  background: linear-gradient(180deg, rgba(214,164,76,.10), rgba(255,255,255,.016));
}

.section-space { padding: 22px 0 26px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}
.section-heading.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-heading.light .section-copy { color: #d9e4ee; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}
.section-copy {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.72;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card {
  padding: 24px;
}
.info-index {
  display: inline-block;
  margin-bottom: 12px;
  color: #f6d48f;
  letter-spacing: .15em;
  font-weight: 800;
}
.info-card h3 { margin: 0 0 10px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.info-card.accent {
  border-color: rgba(214,164,76,.26);
  background: linear-gradient(180deg, rgba(214,164,76,.10), rgba(255,255,255,.016));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nft-card {
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.nft-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18,184,134,.24);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
.nft-media { aspect-ratio: 4 / 5.2; overflow: hidden; }
.nft-media img { width: 100%; height: 100%; object-fit: cover; }
.nft-copy { padding: 16px; }
.nft-copy h3 { margin: 0; }
.pill {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff1cb;
  border: 1px solid rgba(214,164,76,.24);
  background: rgba(214,164,76,.10);
  font-size: 12px;
}
.rare { border-color: rgba(214,164,76,.18); }

.olimpo-section {
  padding: 48px 0 32px;
  background:
    radial-gradient(circle at 18% 30%, rgba(18,184,134,.10), transparent 18%),
    radial-gradient(circle at 80% 24%, rgba(214,164,76,.16), transparent 24%),
    linear-gradient(180deg, rgba(10,17,26,0) 0%, rgba(8,14,21,.96) 12%, rgba(8,14,21,.98) 100%);
}
.olimpo-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 24px;
  padding: 30px;
  overflow: hidden;
  position: relative;
}
.olimpo-copy { padding: 10px 0; }
.olimpo-badge {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214,164,76,.26);
  background: rgba(214,164,76,.10);
  color: #ffe5ad;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 800;
}
.olimpo-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4.2vw, 56px);
  color: #f6d48f;
}
.olimpo-copy p {
  color: #d1dbe6;
  line-height: 1.8;
  font-size: 17px;
  margin: 0 0 14px;
}
.bullet-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bullet-grid div {
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.bullet-grid .hot {
  border-color: rgba(214,164,76,.25);
  background: linear-gradient(180deg, rgba(214,164,76,.10), rgba(255,255,255,.018));
}
.olimpo-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.ol-orbit,
.ol-glow,
.olimpo-shine {
  position: absolute;
  pointer-events: none;
}
.ol-orbit {
  border-radius: 50%;
  border: 1px solid rgba(214,164,76,.16);
  box-shadow: inset 0 0 18px rgba(214,164,76,.06), 0 0 18px rgba(18,184,134,.08);
}
.orbit-a {
  width: 480px;
  height: 480px;
  animation: orbitA 18s linear infinite;
}
.orbit-b {
  width: 410px;
  height: 410px;
  border-color: rgba(18,184,134,.20);
  animation: orbitB 15s linear infinite;
}
.ol-glow {
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,164,76,.20) 0%, rgba(18,184,134,.12) 32%, transparent 72%);
  filter: blur(36px);
  animation: glowPulse 5.2s ease-in-out infinite;
}
.olimpo-frame {
  position: relative;
  width: min(100%, 490px);
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(214,164,76,.12), rgba(255,255,255,.02));
  border: 1px solid rgba(214,164,76,.26);
  box-shadow: 0 30px 60px rgba(0,0,0,.34);
  overflow: hidden;
}
.olimpo-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.06);
}
.olimpo-main-image {
  width: 100%;
  border-radius: 22px;
  position: relative;
  z-index: 2;
  filter: saturate(1.06) contrast(1.08);
  animation: floatCard 5.6s ease-in-out infinite;
}
.olimpo-shine {
  top: -22%;
  left: -36%;
  width: 40%;
  height: 160%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  animation: shinePass 4.6s ease-in-out infinite;
  z-index: 3;
}
.support-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.support-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  padding: 16px;
  align-items: center;
}
.support-item img {
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0,0,0,.24);
}
.support-item h3 { margin: 0 0 8px; }
.support-item p { margin: 0; color: var(--muted); line-height: 1.7; }

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pack-card {
  padding: 24px;
  border: 1px solid var(--line);
}
.pack-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #90f5d2;
  background: rgba(18,184,134,.10);
  border: 1px solid rgba(18,184,134,.18);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pack-card h3 { margin: 0 0 10px; font-size: 30px; }
.pack-price {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  color: #f7d79b;
}
.pack-subprice,
.pack-detail,
.form-note,
.step-card p { color: var(--muted); }
.pack-detail { min-height: 88px; line-height: 1.72; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  padding: 24px;
  border: 1px solid var(--line);
}
.step-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 12px;
  font-weight: 900;
  color: #08110d;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
}
.step-card.hot {
  border-color: rgba(214,164,76,.26);
  background: linear-gradient(180deg, rgba(214,164,76,.10), rgba(255,255,255,.016));
}
.reserve-form {
  padding: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: var(--text);
}
.reserve-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 12px;
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder { color: #95a7ba; }
.form-note {
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.7;
}

@keyframes orbitA { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitB { from { transform: rotate(24deg); } to { transform: rotate(-336deg); } }
@keyframes glowPulse { 0%,100% { opacity: .58; transform: scale(1); } 50% { opacity: .96; transform: scale(1.08); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shinePass {
  0% { left: -36%; opacity: 0; }
  12% { opacity: .85; }
  48% { left: 116%; opacity: .38; }
  100% { left: 116%; opacity: 0; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .overview-grid,
  .gallery-grid,
  .packs-grid,
  .steps-grid,
  .olimpo-grid,
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-side { grid-column: span 2; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 24px, 1240px); }
  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }
  .nav-links { justify-content: center; }
  .hero-grid,
  .overview-grid,
  .gallery-grid,
  .packs-grid,
  .steps-grid,
  .olimpo-grid,
  .support-grid,
  .form-grid,
  .bullet-grid,
  .metrics-grid { grid-template-columns: 1fr; }
  .section-heading,
  .section-heading.centered {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .section-copy { max-width: none; }
  .hero-surface { min-height: auto; padding: 26px; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .support-item { grid-template-columns: 1fr; }
  .olimpo-visual { min-height: 460px; }
}


/* --- Viral + bilingual integration --- */
.viral-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, rgba(214,164,76,.18), rgba(18,184,134,.16));
  backdrop-filter: blur(14px);
}
.viral-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: #fff3d0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
}
.viral-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff3d0;
  box-shadow: 0 0 12px rgba(255,243,208,.8);
}
.site-header {
  top: 45px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  min-width: 48px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.lang-btn:hover {
  transform: translateY(-1px);
}
.lang-btn.active {
  color: #09110d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 24px rgba(214,164,76,.22);
  border-color: transparent;
}
.sold-counter {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.sold-counter small {
  display: block;
  color: #86f0ce;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.sold-counter strong {
  font-size: 24px;
  color: #fff3cf;
}
.payment-panel {
  padding: 28px;
}
.payment-topbar {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}
.payment-topbar h3 {
  margin: 10px 0 8px;
  font-size: 28px;
}
.payment-topbar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.payment-pack-select label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}
.payment-pack-select select {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: var(--text);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.payment-box {
  padding: 22px;
  border: 1px solid var(--line);
}
.payment-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
}
.payment-head span {
  color: #7feccc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.payment-head h3 {
  margin: 0;
  font-size: 28px;
}
.payment-box p {
  color: var(--muted);
  line-height: 1.7;
}
.payment-qr {
  width: min(100%, 230px);
  margin: 8px auto 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 34px rgba(0,0,0,.24);
}
.payment-note {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.payment-actions-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.transfer-list p {
  margin: 0 0 8px;
}
.manual-payment {
  margin-top: 18px;
  padding: 22px;
}
.form-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.mono {
  word-break: break-all;
  font-family: "Courier New", monospace;
  color: #fff0c9 !important;
}
.accent-gold {
  border-color: rgba(214,164,76,.26);
  background: linear-gradient(180deg, rgba(214,164,76,.10), rgba(255,255,255,.016));
}
.accent-green {
  border-color: rgba(18,184,134,.24);
  background: linear-gradient(180deg, rgba(18,184,134,.10), rgba(255,255,255,.016));
}
.is-disabled {
  opacity: .55;
  pointer-events: none;
}
.social-proof {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,17,26,.96);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.34);
  line-height: 1.6;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.social-proof.visible {
  transform: translateY(0);
  opacity: 1;
}
.launch-active .viral-bar {
  background: linear-gradient(90deg, rgba(18,184,134,.24), rgba(214,164,76,.22));
}
.launch-active .countdown {
  color: #9cf6d7;
  text-shadow: 0 0 18px rgba(18,184,134,.22);
}
@media (max-width: 1100px) {
  .payment-topbar,
  .payment-grid,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .site-header {
    top: 54px;
  }
  .viral-bar-inner {
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }
  .payment-actions-row {
    grid-template-columns: 1fr;
  }
  .social-proof {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}


.geo-priority-box{
  margin:0 0 18px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.scarcity-box{
  margin:0 0 18px;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(244,207,133,.22);
  background:linear-gradient(180deg,rgba(244,207,133,.10),rgba(255,255,255,.02));
}
.scarcity-box h3{margin:0 0 10px;color:#f4cf85}
.scarcity-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:14px}
.scarcity-stat{padding:16px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.payment-priority{border:1px solid rgba(116,240,196,.45)!important;box-shadow:0 0 0 1px rgba(116,240,196,.18),0 20px 45px rgba(0,0,0,.28);position:relative}
.payment-priority::before{content:"RECOMENDADO";position:absolute;top:14px;right:14px;background:linear-gradient(135deg, rgba(116,240,196,.95), rgba(18,184,134,.95));color:#07120d;font-size:11px;font-weight:800;letter-spacing:.08em;padding:7px 10px;border-radius:999px}

