/* Tokens de diseño centralizados (marca, neutros, estados, radius, shadow…) */
@import './tokens.css';

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
/* Los tokens de marca/neutros/estados/radius/shadow viven en tokens.css.
   Acá sólo queda lo específico de este layout. */
:root {
  --nav-h: 100px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .montserrat { font-family: 'Montserrat', sans-serif; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}
.nav-logo img { height: 70px; width: auto; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; text-decoration: none; }
.nav-logo-text { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; color: #a67fc4; }
.nav-logo-dot { color: #8a9a5b; font-family: 'Poppins', sans-serif; font-weight: 400; }
.nav-logo-sub { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 400; color: #a67fc4; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-disabled { color: var(--text-light) !important; cursor: default; opacity: 0.6; }
.nav-disabled:hover { color: var(--text-light) !important; }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s; }

/* mobile nav */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; padding: 24px 6%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99; flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 500; color: var(--text-dark); }

/* nav button (Agendar consulta) */
.nav-cta { margin-left: 0.6rem; }
.nav-cta a, .nav-cta a:hover { color: #fff; }

/* dropdown desktop (Aprender ▼) */
.nav-links li { position: relative; }
.nav-dropdown { padding: 28px 0; }
.nav-dropdown > .nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > .nav-dropdown-trigger::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.2s;
}
.nav-dropdown:hover > .nav-dropdown-trigger::after,
.nav-dropdown:focus-within > .nav-dropdown-trigger::after { transform: rotate(225deg) translateY(-2px); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: -12px;
  background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 12px; padding: 8px 0; min-width: 230px;
  flex-direction: column;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 11px 20px; white-space: nowrap;
  font-size: 13px; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--purple-light, #f5f0ff); color: var(--purple); }

/* dropdown mobile */
.mobile-dropdown-trigger {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--text-dark); cursor: pointer;
}
.mobile-dropdown-trigger::after {
  content: ''; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s;
}
.mobile-dropdown.open .mobile-dropdown-trigger::after { transform: rotate(225deg); }
.mobile-dropdown-menu { display: none; flex-direction: column; gap: 1rem; padding: 14px 0 4px 16px; }
.mobile-dropdown.open .mobile-dropdown-menu { display: flex; }
.mobile-dropdown-menu a { font-size: 14px; font-weight: 400; color: var(--text-mid); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  padding: 14px 30px; border-radius: 50px;
  cursor: pointer; transition: all 0.25s; border: none; text-align: center;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(158,114,188,0.35); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(140,187,74,0.35); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-white { background: var(--white); color: var(--text-dark); }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ===== LAYOUT ===== */
.section-inner { max-width: 1140px; margin: 0 auto; padding: 88px 6%; }
.section-inner.narrow { max-width: 820px; }

.eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--text-dark); line-height: 1.25; margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-subtitle { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 600px; }
.section-subtitle.center { text-align: center; margin: 0 auto; }

/* ===== HERO ===== */
#hero {
  position: relative; width: 100%;
  height: clamp(500px, 60vw, 700px); overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,10,55,0.72) 0%, rgba(30,10,55,0.45) 42%, rgba(30,10,55,0.04) 100%);
}
.hero-content {
  position: absolute; top: 50%; left: 6%;
  transform: translateY(-50%); max-width: 560px; color: #fff;
}
.hero-content h1 {
  font-size: clamp(38px, 4.5vw, 62px); font-weight: 600;
  line-height: 1.2; margin-bottom: 16px; font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 2vw, 22px); font-weight: 300;
  line-height: 1.65; margin-bottom: 32px; opacity: 0.93;
}
.hero-body {
  font-size: 17px; font-weight: 400; line-height: 1.85;
  margin-bottom: 32px; opacity: 0.88;
}

/* ===== NUESTROS SERVICIOS ===== */
#servicios { background: #fff; }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; align-items: stretch; }
.servicio-card {
  background: #fff;
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.servicio-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.servicio-card-img { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.servicio-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.servicio-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.servicio-card .eyebrow { margin-bottom: 10px; }
.servicio-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 16px; line-height: 1.3;
}
.servicio-card p { font-size: 14.5px; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }
.servicio-card .btn { align-self: flex-start; margin-top: auto; }

/* ===== SOBRE NOSOTRAS ===== */
#sobre-nosotras { background: var(--purple-light); }
.sobre-intro {
  max-width: 780px;
  margin-bottom: 52px;
}
.sobre-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.sobre-intro p:first-child {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: var(--text-dark);
}
.sobre-intro p:last-child { margin-bottom: 0; }

/* ===== QUIÉNES SOMOS ===== */
#quienes { background: var(--purple-light); }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.person-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.person-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.person-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--purple-light); position: relative;
}
.person-card-img img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-portrait {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple-light) 0%, #e0cff0 100%);
}
.placeholder-portrait svg { opacity: 0.45; }
.person-card-body { padding: 28px; }
.person-card-body h3 {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--purple-dark); margin-bottom: 4px;
}
.person-card-body .role {
  font-size: 13px; font-weight: 600; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.person-card-body p { font-size: 14.5px; line-height: 1.75; color: var(--text-mid); }

/* ===== MÉTODO ===== */
#metodo { background: #fff; }
.metodo-header { margin-bottom: 52px; max-width: 680px; }
.metodo-label {
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-mid); margin-bottom: 32px;
}
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.method-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.method-card-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.method-card-img img { width: 100%; height: 100%; object-fit: cover; }
.method-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.step-number {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--purple); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.method-card-body h3 {
  font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--text-dark); line-height: 1.35; margin-bottom: 12px;
}
.method-card-body p { font-size: 14px; line-height: 1.75; color: var(--text-mid); }
.metodo-cta { margin-top: 44px; text-align: center; }

/* ===== LOS CAMINOS ===== */
#caminos { background: var(--purple-light); }
.caminos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.camino-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.camino-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.camino-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
}
.camino-icon.purple { background: var(--purple-light); }
.camino-icon.green  { background: var(--green-light); }
.camino-card .tag {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.camino-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.3;
}
.camino-card p { font-size: 14px; line-height: 1.75; color: var(--text-mid); flex: 1; margin-bottom: 28px; }
.camino-card .btn { align-self: flex-start; }

/* ===== BLOG ===== */
#blog { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, #e8daf5 0%, #d4edb8 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-placeholder-img { font-size: 40px; opacity: 0.4; }
.blog-card-body { padding: 24px; }
.blog-card-body .tag {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.blog-card-body h3 {
  font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--text-dark); line-height: 1.35; margin-bottom: 10px;
}
.blog-card-body p { font-size: 13.5px; line-height: 1.7; color: var(--text-mid); }

/* ===== INSTAGRAM ===== */
.email-ig-inner {
  display: grid; grid-template-columns: 1fr; gap: 60px;
  max-width: 680px; margin: 0 auto;
}
.ig-box { text-align: center; }
.ig-box h3 { font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; margin-bottom: 12px; }
.ig-box p { font-size: 15px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; }
.ig-handle {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--purple);
  border: 2px solid var(--purple); border-radius: 50px; padding: 10px 24px;
  transition: all 0.25s;
}
.ig-handle:hover { background: var(--purple); color: #fff; }
.ig-feed-wrapper { margin-top: 16px; }
.ig-placeholder {
  background: rgba(158,114,188,0.07); border-radius: var(--radius);
  border: 2px dashed rgba(158,114,188,0.25);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; text-align: center; color: var(--text-light); font-size: 13px;
}

/* ===== FOOTER ===== */
footer { background: #1E1228; color: rgba(255,255,255,0.75); }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 60px 6% 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 12px; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   LANDING CURSO
   =========================== */

/* Hero curso */
#hero-curso {
  position: relative;
  width: 100%; min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero-curso-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
}
.hero-curso-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(40,50,70,0.72) 0%, rgba(40,50,70,0.48) 42%, rgba(40,50,70,0.04) 100%);
}
.hero-curso-inner {
  position: relative; z-index: 1;
  max-width: 580px;
  padding: 100px 0 80px 6%;
  text-align: left;
}
.hero-curso-inner h1 {
  font-size: clamp(38px, 4.5vw, 62px); font-weight: 600;
  line-height: 1.25; margin-bottom: 20px; font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}
.hero-curso-inner .hero-sub { font-size: clamp(17px, 2vw, 20px); opacity: 0.88; margin-bottom: 32px; font-weight: 300; }
.hero-curso-trust { margin-top: 24px; font-size: 13px; opacity: 0.55; }

/* Para quién es */
#para-quien { background: var(--purple-light); }
.para-quien-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.para-quien-si, .para-quien-no { }
.para-quien-si h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--purple-dark); margin-bottom: 20px; }
.para-quien-no h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-mid); margin-bottom: 20px; }
.check-list li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.65; margin-bottom: 14px; color: var(--text-mid); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cross-list li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.65; margin-bottom: 14px; color: var(--text-light); }
.cross-list li::before { content: "✕"; color: #ccc; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Qué vas a lograr */
#logros { background: #fff; }
.logros-steps { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.logro-item { display: flex; gap: 28px; align-items: flex-start; }
.logro-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800;
}
.logro-text h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.logro-text p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* Qué incluye — nuevo diseño */
#incluye { background: #E6EDD4; }
.incluye-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.incluye-card {
  background: #fff; border-radius: 16px; padding: 36px 32px;
  box-shadow: var(--shadow);
}
.incluye-card-title {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--purple-light);
}
/* Módulos */
.modulo-nuevo { margin-bottom: 28px; }
.modulo-nuevo:last-child { margin-bottom: 0; }
.modulo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-light); border-radius: 50px;
  padding: 7px 16px; margin-bottom: 12px;
}
.modulo-badge .badge-icon { font-size: 18px; }
.modulo-badge span {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--purple-dark); text-transform: uppercase; letter-spacing: 0.06em;
}
.modulo-clases-nuevo { padding-left: 8px; }
.modulo-clases-nuevo li {
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.65; color: var(--text-mid);
  padding: 5px 0; border-bottom: 1px solid #f5f5f5;
  display: flex; gap: 8px;
}
.modulo-clases-nuevo li:last-child { border-bottom: none; }
.modulo-clases-nuevo li::before { content: "▸"; color: var(--purple); flex-shrink: 0; font-size: 11px; margin-top: 3px; }
/* Bonuses en 1 card */
.bonus-nuevo {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid #f5f5f5;
}
.bonus-nuevo:last-child { border-bottom: none; padding-bottom: 0; }
.bonus-nuevo:first-child { padding-top: 0; }
.bonus-nuevo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.bonus-nuevo h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.bonus-nuevo p { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; color: var(--text-mid); }

/* Quiénes somos (landing) */
#quienes-curso { background: #fff; }
.quienes-curso-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.quienes-curso-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); margin-top: 20px; }
.quienes-curso-foto {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.quienes-curso-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ¿Este curso es para vos? — una sola columna */
.para-quien-solo {
  max-width: 760px; margin: 40px 0 0;
  background: #fff; border-radius: var(--radius); padding: 40px 40px 32px;
  box-shadow: var(--shadow);
}
.para-quien-solo .intro {
  font-family: 'Poppins', sans-serif; font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-mid); margin-bottom: 24px;
}
.para-quien-solo .check-list li { font-size: clamp(15px, 1.6vw, 17px); margin-bottom: 16px; }
.para-quien-solo .check-list li:last-child { margin-bottom: 0; }

/* Lo que vas a encontrar */
#encontrar { background: #fff; }
.encontrar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.encontrar-card {
  background: var(--purple-light); border-radius: 16px; padding: 32px 28px;
  border-top: 4px solid var(--purple);
}
.encontrar-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.encontrar-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--purple-dark); margin-bottom: 10px;
}
.encontrar-card p { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.75; color: var(--text-mid); }

/* Este curso nació mucho antes */
#nacio { background: var(--purple-light); }
.nacio-intro { max-width: 760px; margin: 0; }
.nacio-intro p {
  font-family: 'Poppins', sans-serif; font-size: clamp(16px,1.8vw,18px);
  line-height: 1.8; color: var(--text-mid); font-weight: 300;
}
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 40px 0; }
.testi-card { background: #fff; border-radius: 16px; padding: 32px 28px; box-shadow: var(--shadow); }
.testi-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testi-head img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-head .testi-name {
  font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--purple-dark);
}
.testi-card blockquote {
  margin: 0; font-family: 'Poppins', sans-serif; font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8; color: var(--text-dark); font-style: italic;
}
.nacio-foto {
  max-width: 680px; margin: 8px auto;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-hover);
}
.nacio-foto img { width: 100%; display: block; }
.nacio-cierre {
  max-width: 680px; margin: 8px auto 32px; text-align: center;
  font-family: 'Montserrat', sans-serif; font-size: clamp(17px,2vw,21px);
  font-weight: 600; color: var(--purple-dark); line-height: 1.5;
}

/* Precio */
#precio { background: var(--purple-light); }
.precio-box {
  max-width: 500px; margin: 48px auto 0;
  background: #fff; border-radius: 20px; padding: 48px 40px; text-align: center;
  box-shadow: 0 8px 40px rgba(158,114,188,0.18);
}
.precio-titulo { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 32px; }
.precio-lista { text-align: left; margin-bottom: 36px; }
.precio-lista li { display: flex; gap: 10px; font-size: clamp(15px, 1.6vw, 17px); color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.precio-lista li:last-child { border-bottom: none; }
.precio-lista li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.precio-amount { margin-bottom: 32px; }
.precio-amount .amount { font-family: 'Montserrat', sans-serif; font-size: 54px; font-weight: 800; color: var(--purple-dark); }
.precio-amount .currency { font-size: 22px; font-weight: 600; color: var(--purple); vertical-align: super; }
.precio-amount .periodo { font-size: 14px; color: var(--text-light); display: block; margin-top: 4px; }

/* Garantía */
#garantia { background: #fff; }
.garantia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.garantia-card {
  background: var(--green-light); border-radius: var(--radius); padding: 36px;
  display: flex; gap: 20px; align-items: flex-start;
}
.garantia-icon { font-size: 36px; flex-shrink: 0; }
.garantia-card h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.garantia-card p { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.75; color: var(--text-mid); }

/* FAQ */
#faq { background: var(--purple-light); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  background: #fff; border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  font-family: 'Montserrat', sans-serif; font-size: clamp(15px, 1.6vw, 17px); font-weight: 600;
  color: var(--text-dark); background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question .chevron { font-size: 18px; color: var(--purple); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 200px; }
.faq-answer p { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.75; color: var(--text-mid); }

/* CTA flotante landing */
.cta-banner { background: var(--purple-dark); color: #fff; text-align: center; padding: 60px 6%; }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(22px,3vw,34px); font-weight: 800; margin-bottom: 12px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-banner p { font-size: clamp(15px, 1.6vw, 17px); opacity: 0.85; margin: 0 auto 28px; max-width: 580px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards-2, .cards-3, .caminos-grid, .blog-grid, .servicios-grid,
  .email-ig-inner, .para-quien-grid, .incluye-grid,
  .incluye-cards, .garantia-grid, .quienes-curso-layout,
  .encontrar-grid, .testi-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { max-width: 85%; }
  .hero-content h1 { font-size: clamp(28px, 6vw, 44px); }
}

@media (max-width: 640px) {
  .section-inner { padding: 60px 5%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  #hero { height: 90vw; min-height: 420px; }
  .hero-overlay { background: rgba(30,10,55,0.72); }
  .precio-box { padding: 36px 24px; }
}
