:root {
  --bg: #12172B;
  --surface: #1B2140;
  --surface-2: #232B4E;
  --border: #3A427055;
  --text: #EDEEF5;
  --text-muted: #8B90A8;
  --gold: #D4A72C;
  --gold-soft: #D4A72C1E;
  --gold-bright: #E8C158;
  --down: #3ECF8E;
  --font-display: 'Sansita', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
 .logo {
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
  }
.logo-seal {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-seal::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.plain {
  font-size: 14px; color: var(--text-muted); text-decoration: none;
}
.nav-links a.plain:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color .15s ease;
}
.nav-cta:hover { border-color: var(--gold); }
.ticker-outer {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.ticker-track { display: flex; width: max-content; animation: scroll 38s linear infinite; }
.ticker-item {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 10px 28px;
  white-space: nowrap;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.ticker-item .codigo { color: var(--gold); }
.ticker-item .nombre { color: var(--text); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } html { scroll-behavior: auto; } }
.hero { padding: 76px 0 64px; display: flex; align-items: center; gap: 48px; }
.hero-content { flex: 1; min-width: 0; }
.hero-image { flex: 1; max-width: 55%; height: auto; border-radius: 10px; border: 10px solid var(--border); opacity: 0; animation: fade-up .7s ease .4s forwards; }
@media (max-width: 860px) {
  .hero { flex-direction: column; }
  .hero-content { flex: none; width: 100%; }
  .hero-image { display: none; }
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; animation: fade-up .6s ease forwards;
}
.eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin-bottom: 24px;
  opacity: 0; animation: fade-up .6s ease .1s forwards;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0; animation: fade-up .6s ease .2s forwards;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fade-up .6s ease .3s forwards; }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform .12s ease, opacity .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px #D4A72C33; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); }
.section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 34px); font-weight: 600; letter-spacing: -0.01em; }
.section-sub { color: var(--text-muted); font-size: 16px; margin-top: 12px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
@media (max-width: 780px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { background: var(--surface); padding: 30px; }
.problem-card .mark { font-family: var(--font-mono); font-size: 13px; color: var(--gold); margin-bottom: 14px; }
.problem-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.problem-card strong { color: var(--text); font-weight: 500; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step-num { font-family: var(--font-mono); font-size: 15px; color: var(--gold); margin-bottom: 16px; margin-top: 16px;}
.step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .18s ease, border-color .18s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border); }
.price-card.destacado { border-color: var(--gold); background: linear-gradient(180deg, #D4A72C10, var(--surface) 60%); }
.price-card.destacado:hover { border-color: var(--gold-bright); }
.price-stamp {
  position: absolute; top: -1px; right: 24px;
  background: var(--gold); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: 0 0 6px 6px;
  letter-spacing: 0.04em;
}
.price-plan-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.price-plan-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; min-height: 40px; }
.price-now { display: flex; align-items: baseline; gap: 6px; }
.price-amount { font-family: var(--font-display); font-size: 38px; font-weight: 600; }
.price-period { color: var(--text-muted); font-size: 13.5px; }
.price-later { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-top: 4px; margin-bottom: 24px; }
.price-later.oculto { visibility: hidden; }
.price-features { list-style: none; margin: 4px 0 28px; flex-grow: 1; }
.price-features li {
  font-size: 14px; color: var(--text-muted);
  padding: 10px 0; border-top: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.price-features li strong { color: var(--text); font-weight: 500; }
.price-card .btn { width: 100%; justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item { background: var(--surface); padding: 22px 26px; }
.faq-item h3 { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.footer-cta { padding: 90px 0 70px; text-align: center; border-top: 1px solid var(--border); }
.footer-cta h2 { max-width: 100%; margin-bottom: 14px; }
.footer-cta .hero-sub { margin: 0 auto 32px; }
.footer-cta .hero-ctas { justify-content: center; opacity: 1; animation: none; }
footer {
  padding: 28px 0 44px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-logo {
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
}
.footer-logo .logo-seal { width: 18px; height: 18px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

  .icon {
    height: 50px;
    width: 50px; 
    background-color: #8B90A8; 
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
  .icon-desc {height: 40px;}

   #head {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    padding-top: 20px;
    padding-bottom: 12px;
  }

.btn-deshabilitado {
  pointer-events: none; /* Evita clics y eventos de teclado */
  color: gray;          /* Cambia el color para indicar que está inactivo */
  text-decoration: none; /* Quita el subrayado si lo deseas */
  cursor: not-allowed;   /* Cambia el cursor para mostrar que no se puede interactuar */
}