.elementor-17252 .elementor-element.elementor-element-1599100{--display:flex;--margin-top:32px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17252 .elementor-element.elementor-element-1599100.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-17252 .elementor-element.elementor-element-1599100{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-e715aeb */:root {
  --bg: #050816;
  --bg-elevated: #0b1020;
  --bg-elevated-soft: #101626;
  --bg-muted: #060a12;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --accent: #10a37f; /* tono OpenAI-ish */
  --accent-soft: rgba(16, 163, 127, 0.16);
  --accent-strong: rgba(16, 163, 127, 0.35);
  --text: #f9fafb;
  --text-soft: #9ca3af;
  --text-softer: #6b7280;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.7);
  --max-width: 1120px;
}

/* RESET BÁSICO ------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, var(--bg) 52%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* UTILS -------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: linear-gradient(120deg, #22c55e, #10a37f, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  color: var(--accent);
}

/* HEADER ------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: linear-gradient(
      to bottom,
      rgba(5, 8, 22, 0.92),
      rgba(5, 8, 22, 0.82),
      transparent
    );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: radial-gradient(circle at 20% 0%, #22c55e, #10a37f 45%, #020617);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-text {
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: color 0.16s ease, background 0.16s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.1);
}

/* HERO --------------------------------------------------------------------- */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 1rem 0 1.15rem;
}

.hero-lead {
  margin: 0 0 1.6rem;
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.87rem;
  color: var(--text-softer);
  max-width: 30rem;
}

/* PILL --------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pill-beta {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.24);
}

/* BUTTONS ------------------------------------------------------------------ */
.btn {
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #22c55e, #10a37f 45%, #0ea5e9);
  color: #020617;
  box-shadow: 0 20px 60px rgba(16, 163, 127, 0.44);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 80px rgba(16, 163, 127, 0.7);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-soft);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.96);
}

.btn-full {
  width: 100%;
}

/* HERO CARD ---------------------------------------------------------------- */
.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #10a37f22, #020617 58%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-card-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-softer);
}

.hero-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.hero-card-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  padding: 0.25rem 0;
}

.hero-card-label {
  color: var(--text-softer);
}

.hero-card-value {
  color: var(--text);
}

.hero-card-divider {
  margin: 1rem 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(148, 163, 184, 0.6),
    transparent
  );
}

.hero-card-description {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* BADGES ------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

/* SECCIONES GENERALES ------------------------------------------------------ */
.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: radial-gradient(circle at top, #020617, #020617 46%, #020617);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}

.section-header {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.7rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* SECTION GRID ------------------------------------------------------------- */
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.section-intro p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.section-card {
  background: radial-gradient(circle at 0 0, #0ea5e933, #020617 72%);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-card);
}

.section-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.section-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* LIST --------------------------------------------------------------------- */
.list {
  margin: 0.9rem 0 0.9rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.list li {
  margin-bottom: 0.4rem;
}

/* CARDS GRID --------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: radial-gradient(circle at 0 0, #10a37f1f, #020617 68%);
  padding: 1.1rem 1.25rem 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* STEPS -------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.step {
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.55rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* BETA SECTION ------------------------------------------------------------- */
.section-beta {
  background: radial-gradient(circle at top left, #22c55e14, #020617 58%);
  border-top: 1px solid rgba(34, 197, 94, 0.25);
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
}

.beta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.beta-inner p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.beta-box {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.7rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: var(--shadow-card);
}

.beta-label {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-softer);
}

/* FAQ ---------------------------------------------------------------------- */
.faq {
  max-width: 46rem;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text);
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.35rem;
}

.faq-item span:first-child {
  text-align: left;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--text-soft);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0.3rem;
  transition: max-height 0.2s ease, opacity 0.2s ease, padding-top 0.2s ease,
    padding-bottom 0.2s ease;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.faq-panel.open {
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  max-height: 200px;
  opacity: 1;
}

/* FOOTER ------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.6rem 0 2rem;
  margin-top: 1rem;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-meta {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-softer);
}

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}/* End custom CSS */