:root {
  /*--bg-primary: #0f1729;
  --bg-secondary: #162036;
  --bg-card: #1c2940;
  --text-primary: #f0f6fc; */
  --text-secondary: #d9d9d9;
  --accent: #ff1654;
  --accent-hover: #1a8cd8;
  --border: #30363d;
  /*--radius: 12px; */
  --max-width: 1100px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* barra navegacion */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-internos {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* funcionalidades */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 600px;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* pasos para empezar*/
.pasos {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.paso {
  flex: 1;
  text-align: center;
}

.paso-numero {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fafafa;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.paso h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.paso p {
  color: var(--text-secondary);
  font-size: 14px;
}

.paso a {
  font-size: 14px;
  color: #ff1654
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badges img {
  height: 44px;
}