:root {
  --bg: #0A1A1F;
  --text: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.72);
  --accent: #5EEAD4;
  --primary: #F76B7C;
  --primary-hover: #ff8090;
  --nav-height: 88px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 26, 31, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 2px;
  transition: color .2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(247, 107, 124, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ---------- Mobile toggle ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero-title {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(94, 234, 212, 0.08);
  transform: translateY(-1px);
}

.btn-ghost svg {
  transition: transform .2s ease;
}

.btn-ghost:hover svg {
  transform: translateY(2px);
}

/* Visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 620px;
  margin-left: auto;
  width: 100%;
}

.hero-orbit {
  position: absolute;
  inset: 6%;
  border: 1.5px dashed rgba(94, 234, 212, 0.35);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.7);
}

.hero-orbit::before {
  width: 8px; height: 8px;
  top: -4px; left: 50%;
  transform: translateX(-50%);
}

.hero-orbit::after {
  width: 6px; height: 6px;
  bottom: 14%; right: 6%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(247, 107, 124, 0.7);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: 86%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  animation: float 6s ease-in-out infinite;
}

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

/* Decorative sparkles & dots */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle,
.dot {
  position: absolute;
  display: block;
}

.sparkle {
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  color: var(--accent);
  transform: rotate(45deg);
  opacity: .85;
  animation: twinkle 3.6s ease-in-out infinite;
}

.sparkle.s1 { top: 18%; left: 48%; }
.sparkle.s2 { top: 8%;  right: 18%; width: 10px; height: 10px; animation-delay: .8s; }
.sparkle.s3 { top: 70%; left: 6%;  width: 12px; height: 12px; animation-delay: 1.6s; }
.sparkle.s4 { bottom: 12%; right: 38%; width: 16px; height: 16px; color: var(--primary); animation-delay: 2.2s; }
.sparkle.s5 { top: 38%; right: 6%;  width: 10px; height: 10px; animation-delay: 1.2s; }

.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: .8;
}
.dot.d1 { top: 30%; left: 12%; }
.dot.d2 { top: 60%; left: 42%; width: 3px; height: 3px; }
.dot.d3 { top: 22%; right: 38%; width: 4px; height: 4px; }
.dot.d4 { bottom: 22%; left: 30%; width: 3px; height: 3px; }

@keyframes twinkle {
  0%, 100% { opacity: .25; transform: rotate(45deg) scale(.85); }
  50%      { opacity: 1;   transform: rotate(45deg) scale(1.1); }
}

/* ---------- ¿Qué es un Movita? ---------- */
.que-es {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}

.que-es-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.que-es-visual {
  position: relative;
  aspect-ratio: 1.1 / 1;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.glow-floor {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 70%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(94, 234, 212, 0.18), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.movita-main {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 56%;
  max-width: 320px;
  z-index: 3;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.5));
  animation: float-center 6s ease-in-out infinite;
}

@keyframes float-center {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -12px); }
}

.movita-side {
  position: absolute;
  width: 20%;
  max-width: 120px;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.45));
}

.movita-left {
  left: 4%;
  bottom: 6%;
  animation: float 5s ease-in-out infinite;
  animation-delay: .4s;
}

.movita-right {
  right: 4%;
  bottom: 6%;
  animation: float 5.4s ease-in-out infinite;
  animation-delay: 1s;
}

.que-es-copy {
  max-width: 520px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.que-es-title {
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.12;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.que-es-title em { font-style: italic; }
.que-es-title .accent { color: var(--accent); }

.que-es-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.cta-find {
  gap: 10px;
}

.cta-find em {
  font-style: italic;
  font-weight: 800;
}

/* ---------- ¿Cómo funciona? ---------- */
.como {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}

.como-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.como-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 32px;
  text-align: center;
}

.como-head .eyebrow { margin-bottom: 20px; }

.como-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.como-sub {
  font-size: 16px;
  color: var(--text-muted);
}

.como-rows {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.como-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  position: relative;
}

/* Dashed connector between rows */
.como-row::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -52px;
  width: 60%;
  height: 40px;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.como-rows .como-row:last-child::after { display: none; }

/* Feature card */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 32px 28px;
  position: relative;
  backdrop-filter: blur(6px);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.feature-card ul {
  list-style: none;
  margin-bottom: 22px;
}

.feature-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.feature-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.card-pink   { border-color: rgba(247, 107, 124, 0.35); box-shadow: 0 0 0 1px rgba(247, 107, 124, 0.08), 0 20px 50px -20px rgba(247, 107, 124, 0.25); }
.card-pink h3   { color: var(--primary); }
.card-pink li::before { color: var(--primary); }

.card-purple { border-color: rgba(168, 132, 255, 0.4); box-shadow: 0 0 0 1px rgba(168, 132, 255, 0.08), 0 20px 50px -20px rgba(168, 132, 255, 0.25); }
.card-purple h3 { color: #B49BFF; }
.card-purple li::before { color: #B49BFF; }

.card-teal   { border-color: rgba(94, 234, 212, 0.4); box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.08), 0 20px 50px -20px rgba(94, 234, 212, 0.25); }
.card-teal h3   { color: var(--accent); }
.card-teal li::before { color: var(--accent); }

/* Chip / pill button under cards */
.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.chip-pink   { background: var(--primary); color: #fff; }
.chip-purple { background: #8C6BFF;  color: #fff; }
.chip-teal   { background: rgba(94, 234, 212, 0.15); color: var(--accent); border: 1px solid rgba(94, 234, 212, 0.4); }

/* Mascot side of each row */
.feature-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.mascot-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .9;
  z-index: 0;
  pointer-events: none;
  animation: spin 80s linear infinite;
}

.row-right .mascot-bg { animation-direction: reverse; }

.mascot-img {
  position: relative;
  z-index: 1;
  width: 62%;
  max-width: 280px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
  animation: float 6s ease-in-out infinite;
}

.row-right .mascot-img { animation-delay: .6s; }
.row-left  + .como-row.row-left .mascot-img { animation-delay: 1.2s; }

/* ---------- 3 Pasos ---------- */
.pasos {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 100px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.pasos-intro {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  margin-bottom: 24px;
}

.pasos-intro .pink { color: var(--primary); font-weight: 800; }

.pasos-big {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.pasos-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .9;
  z-index: 0;
}

.pasos-label-top,
.pasos-label-bottom,
.pasos-number {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 800;
}

.pasos-label-top {
  position: absolute;
  top: 18%;
  left: 8%;
  font-size: 22px;
  color: #fff;
}

.pasos-number {
  font-size: clamp(180px, 22vw, 280px);
  line-height: 1;
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
  text-shadow: 0 8px 30px rgba(94, 234, 212, 0.3);
}

.pasos-label-bottom {
  position: absolute;
  bottom: 12%;
  right: 6%;
  font-size: 24px;
  color: #fff;
}

.eyebrow-teal {
  color: var(--accent);
  border-color: rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.06);
  margin-bottom: 28px;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 600;
}

.step-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
}

/* ---------- Módulos ---------- */
.modulos {
  position: relative;
  padding: 80px 0 120px;
}

.modulos-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 32px;
}

.modulos-head .eyebrow { margin-bottom: 20px; }

.modulos-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.modulos-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
}

.modulos-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 16px;
}

.modulo {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14% 12%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.16);
  background: radial-gradient(ellipse at 50% 95%, rgba(94, 234, 212, 0.10) 0%, transparent 55%);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.modulo:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.35);
  background: radial-gradient(ellipse at 50% 95%, rgba(94, 234, 212, 0.18) 0%, transparent 55%);
}

.modulo-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.modulo-icon {
  font-size: 28px;
  line-height: 1;
}

.modulo h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.modulo p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 280px;
}

.modulo p:last-of-type { margin-bottom: 22px; }

/* Outline chips */
.chip-outline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  background: transparent;
}

.chip-pink-o   { color: var(--primary); }
.chip-teal-o   { color: var(--accent); }
.chip-yellow-o { color: #E6D269; }
.chip-white-o  { color: rgba(255, 255, 255, 0.85); }
.chip-olive-o  { color: #B7A24E; }

/* ---------- Tutores ---------- */
.tutores {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.tutores-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.18), rgba(94, 234, 212, 0.05) 60%, transparent 70%);
}
.bubble.b1 { width: 280px; height: 280px; top: 8%;  right: 4%; }
.bubble.b2 { width: 180px; height: 180px; top: 38%; left: 3%; }
.bubble.b3 { width: 90px;  height: 90px;  top: 22%; left: 38%; opacity: .6; }
.bubble.b4 { width: 140px; height: 140px; bottom: 14%; right: 18%; opacity: .8; }
.bubble.b5 { width: 70px;  height: 70px;  bottom: 22%; left: 22%; }
.bubble.b6 { width: 220px; height: 220px; bottom: 4%; right: -3%; opacity: .7; }
.bubble.b7 { width: 60px;  height: 60px;  top: 58%; right: 32%; opacity: .55; }
.bubble.b8 { width: 110px; height: 110px; top: 5%; left: 35%; opacity: .5; }

.tutores-block {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 32px 60px;
}

.tutor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.chip-teal-solid {
  background: var(--accent);
  color: #0A1A1F;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
}

.chip-pink-solid {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
}

.tutor-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 22px 0 18px;
}

.tutor-title .accent { color: var(--accent); }
.tutor-title .pink   { color: var(--primary); }
.tutor-title.align-right { text-align: right; }

.tutor-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 460px;
}

.tutor-desc.align-right { text-align: right; margin-left: auto; }
.tutor-desc.small { font-size: 13px; }

.tutor-quote {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 40px 36px;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.tutor-quote blockquote {
  max-width: 380px;
}

.tutor-quote p {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 10px;
}

.tutor-quote footer {
  font-size: 13px;
  color: var(--text-muted);
}

.tutor-quote footer .accent { color: var(--accent); font-weight: 700; }

/* Stats row */
.tutor-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stat {
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat strong {
  font-size: 22px;
  font-weight: 800;
}

.stat span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Soy profesor block */
.profesor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
}

.profesor-head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.profesor-head .chip { margin-bottom: 4px; }

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 32px 28px;
  min-height: 240px;
  overflow: hidden;
}

.step-card .step-number {
  font-size: 96px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  top: 22px;
  right: 28px;
  letter-spacing: -0.04em;
}

.step-card h4 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: var(--primary);
  margin-top: 60px;
  margin-bottom: 14px;
}

.step-card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links,
  .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-inner {
    padding: 0 20px;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px 60px;
    gap: 16px;
  }
  .hero-copy { margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; max-width: 380px; }

  .que-es { padding: 60px 0 80px; }
  .que-es-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 0 20px;
  }
  .que-es-visual { order: -1; margin: 0 auto; max-width: 420px; }
  .que-es-copy { margin: 0 auto; }

  .como-row,
  .pasos {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .como-row::after { display: none; }
  .row-right .feature-mascot { order: -1; }
  .feature-card ul { display: inline-block; text-align: left; }
  .pasos-big { margin: 0 auto; }
  .step-list li { text-align: left; }

  .modulos-grid { grid-template-columns: 1fr; gap: 32px; max-width: 420px; }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .modulos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .tutor-grid,
  .profesor-grid,
  .step-row { grid-template-columns: 1fr; gap: 24px; }
  .tutor-title.align-right,
  .tutor-desc.align-right { text-align: left; margin-left: 0; }
  .profesor-head { align-items: flex-start; }
  .tutor-quote { justify-content: flex-start; text-align: left; }
  .tutor-quote blockquote { max-width: 100%; }
  .tutor-stats { grid-template-columns: 1fr; }
}
