/* CESEA Formación · B2B · estilos adicionales (sobre styles.css del B2C)
   Solo clases NUEVAS para B2B: mosaico de 5 pilares, secciones de servicio,
   sello FUNDAE/UE, extras de modal, formulario de contacto, stats, skills. */

/* ── Hero B2B (home) ── */
.b2b-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) var(--pad-x) 40px;
  text-align: center;
  background:
    radial-gradient(1200px 480px at 50% -10%, rgba(244,120,9,.10), transparent 60%),
    var(--bg);
}
.b2b-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 16px; box-shadow: var(--sh-sm);
}
.b2b-hero h1 {
  font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.05;
  font-size: clamp(34px, 6vw, 62px); color: var(--ink); margin: 18px auto 0; max-width: 16ch;
}
.b2b-hero h1 .grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.b2b-hero-sub {
  margin: 18px auto 0; max-width: 60ch; font-size: clamp(16px, 1.9vw, 21px);
  color: var(--gray-3); line-height: 1.5;
}
.b2b-hero-ctas { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Mosaico de 5 pilares (bento, estética Apple) ── */
.pillars {
  display: grid; gap: 18px;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(176px, auto);
  max-width: var(--maxw); margin: 8px auto 0; padding: 0 var(--pad-x);
}
.pillar-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-start;
  text-align: left; text-decoration: none;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.85); border-radius: var(--r-card);
  box-shadow: var(--sh); padding: 26px 26px 22px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(244,120,9,.05));
  pointer-events: none;
}
a.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.pillar-card.feat { grid-row: span 2; background: rgba(255,255,255,.82); }
.pillar-ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--cat-soft, #fdeede);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  background-size: 70% 70%; background-position: center; background-repeat: no-repeat;
}
.pillar-card h2, .pillar-card h3 {
  font-family: var(--display); font-weight: 700; letter-spacing: -.01em; color: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px); margin: 0;
}
.pillar-card.feat h2 { font-size: clamp(24px, 3vw, 34px); }
.pillar-desc { margin: 8px 0 0; color: var(--gray-3); font-size: 15px; line-height: 1.5; }
.pillar-link {
  margin-top: auto; padding-top: 16px; color: var(--brand-ink); font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pillar-card.feat .pillar-link { color: var(--brand-ink); }
/* Botones de los 7 servicios dentro del pilar Formación */
.pillar-servicios { display: grid; gap: 8px; margin: 16px 0 0; }
.pillar-servicios a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 11px 18px; color: var(--ink); font-weight: 600; font-size: 14.5px;
  text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pillar-servicios a:hover { border-color: var(--brand); transform: translateX(2px); box-shadow: var(--sh-sm); }
.pillar-servicios a span.arrow { color: var(--brand-ink); font-weight: 800; }
.pillar-servicios a .serv-ic {
  width: 22px; height: 22px; background-size: contain; background-repeat: no-repeat; background-position: center;
  flex: 0 0 auto;
}
.pillar-servicios a .serv-tx { flex: 1; }

/* ── Glass tipo Apple: color difuso DETRÁS de las tarjetas para que el blur lo revele ── */
.pillars { position: relative; isolation: isolate; }
.pillars::before {
  content: ""; position: absolute; z-index: -1; inset: -30px -18px; border-radius: 38px; pointer-events: none;
  background:
    radial-gradient(42% 50% at 12% 14%, rgba(244,120,9,.50), transparent 66%),
    radial-gradient(38% 46% at 90% 8%, rgba(64,128,210,.42), transparent 68%),
    radial-gradient(48% 56% at 84% 96%, rgba(245,168,64,.50), transparent 66%),
    radial-gradient(40% 48% at 16% 94%, rgba(88,178,148,.40), transparent 68%);
  filter: blur(10px);
}
.pillar-card { background: rgba(255,255,255,.54); border-color: rgba(255,255,255,.7); box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,.7); }
.pillar-card.feat { background: rgba(255,255,255,.6); }
.pillar-servicios a { background: rgba(255,255,255,.74); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

/* ── Listado de cursos personalizado (caja Formación, por sector del gate) ── */
.pillar-courses { margin: 16px 0 0; }
.pillar-courses-head { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-3); }
.pillar-courses-list { display: grid; gap: 8px; }
.pcourse {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.80); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 8px 14px 8px 8px; text-decoration: none; color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pcourse:hover { border-color: var(--brand); transform: translateX(2px); box-shadow: var(--sh-sm); }
.pcourse-img { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 10px; background-size: cover; background-position: center; background-color: var(--cat-soft, #fdeede); }
.pcourse-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pcourse-title { font-weight: 600; font-size: 14px; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcourse-meta { font-size: 12px; color: var(--gray-3); }
.pcourse .arrow { flex: 0 0 auto; color: var(--brand-ink); font-weight: 800; }
.pillar-courses-more { display: inline-block; margin-top: 12px; color: var(--brand-ink); font-weight: 700; font-size: 14px; text-decoration: none; }
.pillar-courses-more:hover { text-decoration: underline; }

@media (max-width: 940px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar-card.feat { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ── Banda FUNDAE + sello UE ── */
.fundae-band {
  padding: 16px var(--pad-x); text-align: center; font-size: 15.5px;
  background: var(--band); color: var(--ink-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fundae-band strong { color: var(--brand-ink); }
.eu-sello {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px var(--pad-x); color: var(--gray-3); font-size: 13px; text-align: center;
  background: var(--band-2); border-top: 1px solid var(--line);
}
.eu-sello .eu-flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 20px; border-radius: 3px; background: #003399; color: #ffcc00;
  font-size: 12px; flex: 0 0 auto;
}

/* ── Secciones de catálogo por servicio ── */
.cat-service { max-width: var(--maxw); margin: 0 auto; padding: 28px var(--pad-x) 0; }
.cat-service-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cat-service-ic {
  width: 38px; height: 38px; background-size: contain; background-repeat: no-repeat;
  background-position: center; flex: 0 0 auto;
}
.cat-service-title { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.4vw, 28px); color: var(--ink); margin: 0; }
.cat-service-count { margin-left: auto; color: var(--gray-3); font-size: 13.5px; font-weight: 600; }
.cat-empty { color: var(--gray-3); font-size: 15px; }
.cat-empty a { color: var(--brand-ink); font-weight: 600; }

/* ── Extras del modal (B2B) ── */
.modal-kicker {
  display: inline-block; font-weight: 700; font-size: 12.5px; letter-spacing: .03em;
  text-transform: uppercase; color: #fff; opacity: .92;
}
.modal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 14px; }
.modal-chip {
  background: var(--cat-soft, #f3ece3); color: var(--cat-ink, var(--ink-2));
  border-radius: var(--r-pill); padding: 6px 14px; font-size: 13.5px;
}
.modal-chip strong { font-weight: 700; }
.modal-subt {
  font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink);
  margin: 20px 0 8px;
}

/* ── Páginas pilar: bloques reutilizables ── */
.lead {
  max-width: 760px; margin: 0 auto; font-size: clamp(16px, 1.9vw, 20px);
  color: var(--ink-2); line-height: 1.55; text-align: center;
}
.prose { max-width: 820px; margin: 0 auto; color: var(--ink-2); line-height: 1.6; font-size: 16.5px; }
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--ink); }
.quote {
  max-width: 820px; margin: 26px auto; padding: 22px 28px; border-left: 4px solid var(--brand);
  background: var(--band); border-radius: var(--r-md); font-size: clamp(18px, 2.3vw, 24px);
  font-family: var(--display); color: var(--ink); line-height: 1.3;
}
/* Tarjetas de beneficio/feature */
.feature-grid {
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x);
}
.feature-card {
  background: var(--band); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 24px; box-shadow: var(--sh-sm);
}
.feature-card h3 { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 8px; }
.feature-card p { margin: 0; color: var(--gray-3); font-size: 15px; line-height: 1.5; }
.feature-card .fc-num {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; margin-bottom: 12px;
}
/* Lista con check (cuando no se use .modalidad-feats) */
.check-list { list-style: none; max-width: 720px; margin: 22px auto 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-2); font-size: 16px; line-height: 1.5; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cat-soft, #fdeede); color: var(--green-ink); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
/* Pasos numerados (recorridos: 4 fases ACP, 5 pasos EROP, REPNA) */
.steps { display: grid; gap: 14px; max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x); }
.steps.cols { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step {
  display: flex; gap: 16px; align-items: flex-start; background: var(--band);
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--sh-sm);
}
.step .step-n {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--cat-soft, #fdeede);
  color: var(--cat-ink, var(--brand-ink)); font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 0 0 4px; color: var(--ink); }
.step p { margin: 0; color: var(--gray-3); font-size: 14.5px; line-height: 1.5; }

/* ── Stats (datos de mercado ECOE) ── */
.stats-row {
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x);
}
.stat { background: var(--band); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; text-align: center; box-shadow: var(--sh-sm); }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 44px); color: var(--brand-ink); line-height: 1; }
.stat-tx { margin: 10px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.45; }
.stat-src { margin: 8px 0 0; color: var(--gray-3); font-size: 11.5px; }

/* ── Skills (sub-marcas ECOE/EROP/ACAT) ── */
/* Logos ECOE/ACAT/EROP: ecoe es 1 línea (ancho), acat/erop llevan sublabel.
   max-width + object-fit iguala el alto VISUAL de los glifos principales. */
.skills-logo { height: 56px; width: auto; max-width: 152px; object-fit: contain; display: block; margin: 0 auto 6px; }
.skills-hero { --skills-navy: #1c345b; }
.skill-tiles { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x); }
.skill-tile {
  display: block; text-decoration: none; background: var(--band); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px 24px; box-shadow: var(--sh-sm); text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.skill-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.skill-tile img { height: 48px; width: auto; margin: 0 auto 14px; display: block; }
.skill-tile h3 { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 6px; }
.skill-tile p { margin: 0; color: var(--gray-3); font-size: 14.5px; line-height: 1.5; }
.skill-tile .skill-go { display: inline-block; margin-top: 14px; color: var(--brand-ink); font-weight: 700; font-size: 14px; }

/* ── Formulario de contacto ── */
.contact-wrap {
  max-width: 760px; margin: 0 auto; padding: 0 var(--pad-x);
}
.contact-form { display: grid; gap: 16px; background: var(--band); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; box-shadow: var(--sh); }
.cf-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-weight: 600; font-size: 14px; color: var(--ink-2); }
.cf-field input, .cf-field select, .cf-field textarea {
  font: inherit; color: var(--ink); background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 12px 14px; width: 100%;
}
.cf-field textarea { min-height: 130px; resize: vertical; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(244,120,9,.15);
}
.cf-legal { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--gray-3); }
.cf-legal input { margin-top: 3px; }
.cf-legal a { color: var(--brand-ink); }
.cf-note { font-size: 14px; margin: 0; }
.cf-note.ok { color: var(--green-ink); }
.cf-note.err { color: #b00b0f; }
.contact-aside { margin-top: 22px; text-align: center; color: var(--ink-2); font-size: 15px; }
.contact-aside a { color: var(--brand-ink); font-weight: 600; }

/* ── Equipo ── */
.team-b2b-grid {
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x);
}
.team-b2b-card { background: var(--band); border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px; text-align: center; box-shadow: var(--sh-sm); }
.team-b2b-card .tb-photo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; display: block;
  background: #f3ece3; border: 3px solid #fff; box-shadow: var(--sh-sm);
}
.team-b2b-card h3 { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); margin: 0; }
.team-b2b-card p { margin: 4px 0 0; color: var(--gray-3); font-size: 14px; }

/* ── Bootcamps ── */
.bc-b2b-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x); }
.bc-b2b-card { background: var(--band); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.bc-b2b-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #f3ece3; }
.bc-b2b-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bc-b2b-body h3 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); margin: 0; }
.bc-b2b-body .bc-by { color: var(--gray-3); font-size: 14px; }
.bc-b2b-body .btn { margin-top: auto; }

/* ── Buscador del catálogo ── */
.cat-search { display: flex; align-items: center; gap: 10px; max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 6px 4px 16px; box-shadow: var(--sh-sm); }
.cat-search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(244,120,9,.15); }
.cat-search-ic { color: var(--gray-3); display: flex; flex: 0 0 auto; }
.cat-search-input { flex: 1; border: 0; outline: none; background: transparent; font: inherit; color: var(--ink); padding: 11px 6px; }
.cat-search-count { text-align: center; color: var(--gray-3); font-size: 13.5px; margin: 12px 0 0; }

/* ── Texto centrado de sección utilitario ── */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.section.tight { padding-top: 28px; padding-bottom: 28px; }

/* ── Gate paso 2: selección de sector (multiselección) ── */
.gate-step[hidden] { display: none; }
.gate-sectors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 4px 0 22px; text-align: left;
}
@media (max-width: 480px) { .gate-sectors { grid-template-columns: 1fr; } }
.gate-sector {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 11px 12px; cursor: pointer; font: inherit; color: var(--ink);
  text-align: left; transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.gate-sector:hover { border-color: var(--brand); transform: translateY(-1px); }
.gate-sector .gs-ic {
  width: 28px; height: 28px; flex: 0 0 auto;
  background-size: contain; background-position: center; background-repeat: no-repeat;
}
.gate-sector .gs-tx { flex: 1; font-size: 14px; font-weight: 600; line-height: 1.2; }
.gate-sector .gs-check {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line); color: transparent;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.gate-sector.sel { border-color: var(--brand); background: var(--brand-soft, #fdeede); }
.gate-sector.sel .gs-check { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── Ficha de curso (página completa) ── */
a.card { text-decoration: none; color: inherit; }
.course-hero {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start;
  max-width: var(--maxw); margin: 0 auto; padding: calc(var(--nav-h) + 36px) var(--pad-x) 4px;
}
@media (max-width: 900px) { .course-hero { grid-template-columns: 1fr; } }
.course-back { color: var(--brand-ink); font-weight: 600; font-size: 14px; text-decoration: none; }
.course-back:hover { text-decoration: underline; }
.course-hero-main .modalidad-kicker { margin-top: 14px; }
.course-title { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.06; font-size: clamp(30px, 4.4vw, 50px); color: var(--ink); margin: 8px 0 0; }
.course-desc { margin: 18px 0 0; font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-2); line-height: 1.55; max-width: 62ch; }
.course-hero-main .modal-services { margin-top: 18px; }
/* Configurador (tarjeta sticky) */
.course-config {
  background: var(--cat-soft, #fdeede); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 24px; box-shadow: var(--sh); position: sticky; top: calc(var(--nav-h) + 14px);
}
.cc-title { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--cat-ink, var(--ink)); margin: 0 0 16px; }
.cc-field { margin-bottom: 14px; }
.cc-label { display: block; font-weight: 600; font-size: 13px; color: var(--ink-2); margin-bottom: 7px; }
.cc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cc-field input { font: inherit; width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--ink); }
.cc-field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(244,120,9,.15); }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg-btn { font: inherit; font-size: 13.5px; font-weight: 600; padding: 10px 8px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--ink-2); cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.seg-btn:hover { border-color: var(--brand); }
.seg-btn.sel { background: var(--brand); border-color: var(--brand); color: #fff; }
.cc-note { font-size: 12.5px; color: var(--green-ink); margin: 8px 0 14px; font-weight: 600; }
.cc-mindate { font-size: 11.5px; color: var(--gray-3); margin: 6px 0 0; line-height: 1.35; }
.cc-field input.cc-invalid { border-color: #e10c11; box-shadow: 0 0 0 3px rgba(225,12,17,.12); }
.course-config .btn { width: 100%; margin-top: 8px; }
/* Dirigido a */
.dirigido { max-width: var(--maxw); margin: 26px auto 0; padding: 0 var(--pad-x); }
.dirigido-card { background: var(--band); border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 24px; box-shadow: var(--sh-sm); }
.dirigido-card h2 { font-family: var(--display); font-weight: 700; font-size: 18px; margin: 0 0 12px; color: var(--ink); }
.dirigido-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dirigido-tag { background: var(--cat-soft, #f3ece3); color: var(--cat-ink, var(--ink-2)); border-radius: var(--r-pill); padding: 7px 14px; font-size: 13.5px; font-weight: 600; }
/* Objetivos / Contenidos */
.course-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: var(--maxw); margin: 0 auto; padding: 34px var(--pad-x) 0; }
@media (max-width: 760px) { .course-detail { grid-template-columns: 1fr; } }
.course-subt { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--cat-ink, var(--ink)); margin: 0 0 14px; }
.course-temario { margin: 0; padding-left: 1.1em; color: var(--ink-2); line-height: 1.6; }
.course-temario li { margin-bottom: 8px; }
/* FAQ del curso (AEO) */
.course-faq { max-width: 860px; margin: 30px auto 0; padding: 0 var(--pad-x); }
.course-faq details { background: var(--band); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 18px; margin-bottom: 10px; }
.course-faq summary { font-weight: 700; color: var(--ink); cursor: pointer; }
.course-faq p { margin: 10px 0 0; color: var(--ink-2); line-height: 1.5; }
