@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --rosa: #e0186a;
  --rosa-medio: #f03080;
  --rosa-claro: #ff80b0;
  --dorado: #c8903a;
  --dorado-claro: #e8b86a;
  --fondo-oscuro: #1a0810;
  --fondo-oscuro-2: #2d1020;
  --texto-oscuro: #1a0810;
  --texto-medio: #4a1530;
  --texto-suave: #7a3050;
  --texto-blanco: #fff8fa;
  --borde: rgba(255,255,255,0.25);
  --borde-hover: rgba(255,255,255,0.5);
  --sombra: 0 8px 40px rgba(180,40,100,0.2);
  --sombra-hover: 0 16px 60px rgba(180,40,100,0.35);
  --radio: 20px;
  --radio-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(180deg, #ffd6e8 0%, #f8a8c8 55%, #ee80a8 100%);
  background-attachment: fixed;
  color: var(--texto-oscuro);
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(255, 214, 232, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.navbar .logo {
  justify-self: start;
}

.navbar-centro {
  font-size: 11px;
  color: var(--rosa);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  justify-self: center;
  white-space: nowrap;
  margin-left: -300px;
}

.nav-links {
  justify-self: end;
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.navbar .logo span {
  color: var(--rosa);
  font-size: 10px;
  font-weight: 500;
  display: block;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links a {
  font-size: 12px;
  color: var(--texto-medio);
  font-weight: 600;
  transition: color 0.3s;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--rosa); }

.nav-links .btn-nav {
  background: var(--rosa);
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.nav-links .btn-nav:hover {
  background: var(--texto-oscuro);
  color: var(--rosa-claro);
  transform: translateY(-1px);
}

/* ── BOTONES ── */
.btn-primario {
  background: transparent;
  color: var(--rosa);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 2px solid var(--rosa);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-primario:hover {
  background: #1a0810;
  border-color: #1a0810;
  color: var(--rosa);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,8,16,0.25);
}

.btn-secundario {
  background: transparent;
  color: var(--rosa);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 2px solid var(--rosa);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-secundario:hover {
  background: #1a0810;
  border-color: #1a0810;
  color: var(--rosa);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,8,16,0.25);
}

/* ── HERO ── */
.hero {
  min-height: calc(85vh - 55px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero-contenido {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tag {
  font-size: 12px;
  color: var(--rosa);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--rosa);
  border-radius: 2px;
}

.hero-texto h1 {
  font-size: 52px;
  line-height: 1.1;
  color: var(--texto-oscuro);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-texto h1 em {
  color: var(--rosa);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: 16px;
  color: var(--texto-suave);
  margin-bottom: 32px;
  line-height: 1.9;
  max-width: 420px;
  font-weight: 300;
  border-left: 2px solid rgba(240,24,106,0.25);
  padding-left: 16px;
}

.hero-botones {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  margin-top: 24px;
  background: rgba(26,8,16,0.08);
  border-radius: 16px;
  border: 1px solid rgba(26,8,16,0.1);
  backdrop-filter: blur(8px);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #1a0810 0%, #e0186a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
}

.stat span {
  font-size: 10px;
  color: #1a0810;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 5px;
  display: block;
  font-weight: 600;
  -webkit-text-fill-color: #1a0810;
}

.stat-ico {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 4px rgba(224,24,106,0.4));
}

.separador {
  width: 1px;
  height: 40px;
  background: rgba(180,30,80,0.2);
  align-self: center;
}

/* ── IMAGEN HERO ── */
.hero-imagen {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-fondo-circulo {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
  z-index: 0;
}

.imagen-marco {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 60px rgba(180,30,80,0.25), 0 0 0 12px rgba(255,255,255,0.2);
}

.imagen-marco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.badge-flotante {
  position: absolute;
  bottom: -10px;
  left: 20px;
  background: #fdf0f5;
  border-radius: 50px;
  padding: 10px 20px;
  border-left: 4px solid #e0186a;
  box-shadow: 0 6px 20px rgba(160,20,60,0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  transition: all 0.3s ease;
  cursor: default;
}

.badge-flotante:hover {
  background: #1a0810;
  border-left-color: #e0186a;
  box-shadow: 0 12px 32px rgba(26,8,16,0.25);
  transform: translateY(-4px) scale(1.03);
}

.badge-flotante:hover strong,
.badge-flotante:hover span {
  color: #e0186a;
}

.badge-flotante .icono { font-size: 22px; }

.badge-flotante strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: #1a0810;
  font-weight: 600;
  transition: color 0.3s;
}

.badge-flotante span {
  font-size: 10px;
  color: #e0186a;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.3s;
}

.badge-flotante-2 {
  position: absolute;
  top: 10px;
  right: 0px;
  background: #fdf0f5;
  border-radius: 50px;
  padding: 10px 22px;
  border-left: 4px solid #e0186a;
  box-shadow: 0 6px 20px rgba(160,20,60,0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: default;
}

.badge-flotante-2:hover {
  background: #1a0810;
  border-left-color: #e0186a;
  box-shadow: 0 12px 32px rgba(26,8,16,0.25);
  transform: translateY(-4px) scale(1.03);
}

.badge-flotante-2:hover strong,
.badge-flotante-2:hover span {
  color: #e0186a;
}

.badge-flotante-2 strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1a0810;
  font-weight: 700;
  transition: color 0.3s;
}

.badge-flotante-2 span {
  font-size: 10px;
  color: #e0186a;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

/* ── SECCIÓN CURSOS ── */
.seccion-cursos {
  padding: 100px 0;
  position: relative;
  background: transparent;
}

.seccion-cursos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.seccion-titulo {
  text-align: center;
  margin-bottom: 60px;
}

.seccion-titulo .pretitulo {
  font-size: 11px;
  color: var(--rosa);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.seccion-titulo .pretitulo::before,
.seccion-titulo .pretitulo::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--rosa);
  border-radius: 2px;
}

.seccion-titulo h2 {
  font-size: 48px;
  color: var(--texto-oscuro);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.seccion-titulo h2 em {
  color: var(--rosa);
  font-style: italic;
  font-weight: 500;
}

.seccion-titulo p {
  color: var(--texto-suave);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
}

.linea-decorativa {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--rosa), rgba(255,255,255,0.5));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── CARDS CURSOS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-curso {
  background: #1a0810;
  border-radius: var(--radio);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
  position: relative;
}

.card-curso:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26,8,16,0.35);
  border-color: rgba(224,24,106,0.3);
}

.card-curso .imagen {
  width: 100%;
  height: 160px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.card-curso .contenido { 
  padding: 18px;
  display: flex;
  flex-direction: column; 
}

.card-curso .badge {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.card-curso h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
  font-weight: 600;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}

.card-curso p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  min-height: 36px;
}

.card-curso .precio {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  margin-top: auto;
}

.card-curso .precio span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

.card-curso .btn-primario {
  background: var(--rosa);
  color: #fff;
  border-color: var(--rosa);
  width: 100%;
  text-align: center;
  display: block;
}

.card-curso .btn-primario:hover {
  background: #fff;
  border-color: #fff;
  color: var(--rosa);
  transform: none;
}

.card-curso.destacada {
  background: linear-gradient(160deg, #2d1020, #1a0810);
  border-color: rgba(224,24,106,0.3);
}

.badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--rosa);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── BANNER SOBRE MÍ ── */
.banner-sobre-mi {
  padding: 80px 0;
  background: transparent;
  position: relative;
}

.banner-sobre-mi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.banner-contenido {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  border-radius: var(--radio);
  padding: 60px;
  border: 1px solid rgba(255,255,255,0.4);
}

.banner-texto h2 {
  font-size: 40px;
  color: var(--texto-oscuro);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.banner-texto h2 em {
  color: var(--rosa);
  font-style: italic;
  font-weight: 500;
}

.banner-texto p {
  color: var(--texto-suave);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

.banner-imagen {
  border-radius: var(--radio);
  overflow: hidden;
  height: 280px;
  box-shadow: 0 20px 60px rgba(180,30,80,0.2);
}

.banner-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── SOBRE MÍ ── */
.sobre-mi {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.sobre-mi::before { display: none; }
.sobre-mi::after { display: none; }

.sobre-mi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-imagen {
  position: relative;
}

.sobre-imagen img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radio);
  box-shadow: 0 20px 60px rgba(180,30,80,0.2);
}

.sobre-imagen::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radio);
  z-index: -1;
}

.sobre-texto .pretitulo {
  font-size: 11px;
  color: var(--rosa);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sobre-texto .pretitulo::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rosa);
}

.sobre-texto h2 {
  font-size: 44px;
  color: var(--texto-oscuro);
  margin-bottom: 8px;
  line-height: 1.1;
  font-weight: 700;
}

.sobre-texto h2 em {
  color: var(--rosa);
  font-style: italic;
}

.sobre-texto p {
  color: var(--texto-suave);
  font-size: 15px;
  line-height: 1.9;
  margin-top: 16px;
  font-weight: 300;
}

.sobre-logros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.logro {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radio-sm);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.4);
}

.logro strong {
  display: block;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: var(--texto-oscuro);
  line-height: 1;
  font-weight: 700;
}

.logro span {
  font-size: 11px;
  color: var(--texto-suave);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--fondo-oscuro);
  text-align: center;
  padding: 50px 60px;
  border-top: none;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

footer .footer-sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rosa-claro);
  margin-bottom: 16px;
}

footer p {
  color: rgba(255,245,248,0.4);
  font-size: 12px;
  margin-top: 8px;
}

/* ── UTILIDADES ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.texto-centro { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ── FORMULARIOS ── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--texto-medio);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radio-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--texto-oscuro);
  background: rgba(255,255,255,0.4);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder { color: var(--texto-suave); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rosa);
  background: rgba(255,255,255,0.6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.btn-carrito {
  position: relative;
  color: var(--texto-medio);
  display: flex;
  align-items: center;
  transition: color 0.3s;
  padding: 4px;
}

.btn-carrito:hover { color: var(--rosa); }

.carrito-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--rosa);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}


/* ── SOBRE MÍ PAGE ── */
.sm-hero {
  padding: 80px 0;
  position: relative;
}

.sm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sm-hero-texto h1 {
  font-size: 56px;
  color: var(--texto-oscuro);
  line-height: 1.1;
  margin-bottom: 8px;
  font-weight: 700;
}

.sm-hero-texto h1 em {
  color: var(--rosa);
  font-style: italic;
}

.sm-linea {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--texto-oscuro), var(--rosa));
  border-radius: 2px;
  margin: 20px 0;
}

.sm-hero-texto p {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.9;
  font-weight: 300;
  max-width: 440px;
}

.sm-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.sm-chips span {
  background: #1a0810;
  color: #fff;
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sm-hero-foto {
  position: relative;
  display: flex;
  justify-content: center;
}

.sm-foto-marco {
  width: 380px;
  height: 480px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 60px rgba(180,30,80,0.25), 0 0 0 12px rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
}

.sm-foto-marco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sm-foto-deco {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  z-index: 0;
}

/* ── TIMELINE ── */
.sm-seccion {
  padding: 80px 0;
  background: transparent;
}

.sm-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.sm-etapa {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 0 20px;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}

.sm-etapa-año {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rosa);
  text-align: right;
  padding-top: 4px;
}

.sm-etapa-linea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sm-etapa-linea::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rosa);
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 0 3px rgba(224,24,106,0.2);
  flex-shrink: 0;
  margin-top: 6px;
}

.sm-etapa-linea::after {
  content: '';
  width: 2px;
  flex: 1;
  background: rgba(224,24,106,0.2);
  margin-top: 6px;
  min-height: 60px;
}

.sm-etapa:last-child .sm-etapa-linea::after {
  display: none;
}

.sm-etapa-contenido {
  padding-bottom: 20px;
}

.sm-etapa-contenido h3 {
  font-size: 20px;
  color: var(--texto-oscuro);
  margin-bottom: 8px;
  font-weight: 600;
}

.sm-etapa-contenido p {
  font-size: 14px;
  color: var(--texto-suave);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FORMACIÓN ── */
.sm-formacion {
  padding: 80px 0;
  background: transparent;
}

.sm-cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sm-curso-card {
  background: #1a0810;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(224,24,106,0.15);
  transition: all 0.3s;
}

.sm-curso-card:hover {
  border-color: rgba(224,24,106,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,8,16,0.25);
}

.sm-curso-ico {
  font-size: 28px;
  flex-shrink: 0;
}

.sm-curso-card h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}

.sm-curso-card span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ── CTA ── */
.sm-cta {
  padding: 80px 0;
  background: transparent;
}

.sm-cta-contenido {
  background: #1a0810;
  border-radius: var(--radio);
  padding: 60px;
  text-align: center;
  border: 1px solid rgba(224,24,106,0.2);
  box-shadow: 0 20px 60px rgba(26,8,16,0.2);
}

.sm-cta-contenido h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}

.sm-cta-contenido h2 em {
  color: var(--rosa);
  font-style: italic;
}

.sm-cta-contenido p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.8;
}

.sm-cta-contenido .btn-primario {
  background: var(--rosa);
  color: #fff;
  border-color: var(--rosa);
}

.sm-cta-contenido .btn-primario:hover {
  background: #fff;
  border-color: #fff;
  color: var(--rosa);
}

.footer-redes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

.footer-red {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.footer-red:hover {
  color: #fff;
  border-color: var(--rosa);
  background: rgba(224,24,106,0.1);
}

.modal-det-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.modal-det-box {
  position: relative;
  z-index: 1;
  background: #1a0810;
  border-radius: 16px;
  width: 560px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 0.5px solid rgba(255,255,255,0.08);
  overflow-x: hidden;
}

.modal-det-imagen {
  height: 200px;
  background: #2d1020;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.modal-det-cerrar {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.modal-det-body { padding: 24px; position: relative; }

.modal-det-nivel {
  background: rgba(224,24,106,0.85);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-det-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 8px;
}

.modal-det-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.modal-det-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 0.5px solid rgba(255,255,255,0.06);
}

.modal-det-stat { text-align: center; }
.modal-det-stat strong { display: block; font-family: 'Playfair Display',serif; font-size: 20px; color: #fff; }
.modal-det-stat span { font-size: 11px; color: rgba(255,255,255,0.35); }
.modal-det-sep { width: 0.5px; background: rgba(255,255,255,0.08); }

.modal-det-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.det-etapa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 0.5px solid rgba(255,255,255,0.05);
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.det-etapa i { font-size: 14px; color: #ff60a0; }
.det-etapa.bloqueada { opacity: 0.4; }
.det-etapa.bloqueada i { color: rgba(255,255,255,0.2); }

.modal-det-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

.modal-det-precio {
  font-family: 'Playfair Display',serif;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

.modal-det-precio-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

.modal-det-btn {
  background: #e0186a;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s;
}

.modal-det-btn:hover { background: #c8006a; }


/* ════════════════════════════════════ */
/* ── RESPONSIVE MOBILE (max-width: 768px) ── */
/* ════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── NAVBAR ── */
  .navbar {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
    row-gap: 8px;
  }

  .navbar-centro {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

 .nav-ocultar-mobile {
  display: none;
}

  .navbar .logo {
    font-size: 14px;
  }

  .navbar .logo span {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .nav-links .btn-nav {
    padding: 8px 16px;
    font-size: 10px;
  }

  /* ── HERO ── */
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-contenido {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
    text-align: center;
  }

  .hero-texto h1 {
    font-size: 32px;
  }

  .hero-sub {
    margin: 0 auto 24px;
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

.hero-botones {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
}

.hero-botones .btn-primario,
.hero-botones .btn-secundario {
  flex: 1;
  padding: 12px 10px;
  font-size: 10px;
  text-align: center;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 10px;
}

.hero-stats .stat strong {
  font-size: 18px;
}

.hero-stats .stat span {
  font-size: 8px;
  letter-spacing: 1px;
}

.hero-stats .separador {
  height: 28px;
}

.hero-stats .stat-ico {
  font-size: 16px;
}
  .hero-imagen {
    order: -1;
  }

  .imagen-marco {
    width: 220px;
    height: 220px;
  }

  .imagen-fondo-circulo {
    width: 260px;
    height: 260px;
  }

  .badge-flotante-2 {
    top: -10px;
    right: 10px;
    padding: 8px 16px;
  }

  .badge-flotante {
    left: 10px;
    bottom: -10px;
    padding: 8px 14px;
  }

  /* ── SECCIÓN CURSOS ── */
.seccion-cursos {
  padding: 30px 0 60px;
}

.seccion-titulo {
  margin-bottom: 32px;
}

.seccion-titulo .pretitulo {
  margin-bottom: 8px;
}

.seccion-titulo h2 {
  margin-bottom: 8px;
}

  .seccion-titulo p {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  /* ── CARDS: 1 columna ── */
 .grid-3 {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 16px;
}

.grid-3 .card-curso .imagen {
  height: 90px;
  font-size: 28px;
}

.grid-3 .card-curso .contenido {
  padding: 10px;
}

.grid-3 .card-curso h3 {
  font-size: 13px;
  height: 32px;
  margin-bottom: 4px;
}

.grid-3 .card-curso p {
  font-size: 10px;
  min-height: 26px;
  margin-bottom: 4px;
  -webkit-line-clamp: 2;
}

.grid-3 .card-curso .precio {
  font-size: 16px;
  margin-bottom: 8px;
}

.grid-3 .card-curso .precio span {
  font-size: 9px;
}

.grid-3 .card-curso button {
  padding: 8px 10px;
  font-size: 9px;
  margin-bottom: 6px !important;
}

.badge-popular {
  font-size: 7px;
  padding: 3px 8px;
  top: 8px;
  right: 8px;
}
  /* ── BANNER SOBRE MÍ ── */
.banner-sobre-mi {
  padding: 30px 0;
}

.banner-contenido {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 20px 16px;
  gap: 16px;
  align-items: center;
}

.banner-texto .hero-tag {
  font-size: 9px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.banner-texto h2 {
  font-size: 18px;
  margin-bottom: 8px;
  text-align: left;
}

.banner-texto p {
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
}

.banner-texto .btn-primario {
  font-size: 9px;
  padding: 8px 16px;
  margin-top: 12px !important;
}

.banner-imagen {
  height: 180px;
  border-radius: 12px;
}

  /* ── SOBRE MÍ PAGE ── */
  .sm-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .sm-hero-texto h1 {
    font-size: 34px;
  }

  .sm-hero-texto p {
    margin: 0 auto;
  }

  .sm-chips {
    justify-content: center;
  }

  .sm-foto-marco {
    width: 240px;
    height: 300px;
  }

  .sm-foto-deco {
    width: 280px;
    height: 280px;
  }

  .sobre-mi-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre-imagen img {
    height: 320px;
  }

  .sobre-texto h2 {
    font-size: 30px;
  }

  .sobre-logros {
    grid-template-columns: 1fr 1fr;
  }

  .sm-etapa {
    grid-template-columns: 50px 30px 1fr;
    gap: 0 12px;
  }

  .sm-etapa-año {
    font-size: 15px;
  }

  .sm-cursos-grid {
    grid-template-columns: 1fr;
  }

  .sm-cta-contenido {
    padding: 32px 20px;
  }

  .sm-cta-contenido h2 {
    font-size: 28px;
  }

  /* ── MODAL DETALLES ── */
  .modal-det-box {
    width: 100%;
  }

  .modal-det-imagen {
    height: 140px;
  }

  .modal-det-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .modal-det-btn {
    width: 100%;
    text-align: center;
  }

  /* ── FOOTER ── */
  footer {
    padding: 32px 20px;
  }

  .footer-redes {
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.footer-red {
  padding: 8px 14px;
  font-size: 12px;
}
}
