/* Web UI kit — adicionales sobre colors_and_type.css */

.acmp-page { background: var(--bg-page); min-height: 100vh; overflow-x: clip; }
html, body { overflow-x: clip; }

/* ---- Buttons ---- */
.acmp-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur-base) var(--ease-standard);
  text-decoration: none;
  line-height: 1;
}
.acmp-btn:active { transform: scale(0.985); }
.acmp-nav .acmp-btn-primary {
  font-size: 13.5px; padding: 12.6px 19.8px; border-radius: 12.6px;
}
.acmp-btn-primary {
  background: var(--acmp-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.acmp-btn-primary:hover {
  background: var(--acmp-orange-700);
  color: #fff;
  box-shadow: 0 14px 36px rgba(247, 70, 4, 0.40);
}
.acmp-btn-ghost {
  background: transparent;
  color: var(--acmp-navy);
  border: 1.5px solid var(--acmp-navy);
}
.acmp-btn-ghost:hover { background: var(--acmp-navy); color: #fff; }
.acmp-btn-on-dark {
  background: #fff;
  color: var(--acmp-navy);
}
.acmp-btn-on-dark:hover { background: var(--acmp-orange); color: #fff; }
.acmp-btn-pill { border-radius: 999px; }

/* ---- Nav ---- */
.acmp-nav {
  position: sticky; top: 0; z-index: 50;
  background: #f2f2f2;
  border-bottom: 1px solid var(--border-subtle);
}
.acmp-nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 72px; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.acmp-nav-left  { display: flex; align-items: center; justify-self: start; }
.acmp-nav-right { display: flex; align-items: center; justify-self: end; gap: 8px; }

/* ---- Mobile burger / panel ---- */
.acmp-nav-burger {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  color: var(--acmp-navy, #222b49);
  cursor: pointer; padding: 0;
  border-radius: 10px;
}
.acmp-nav-burger:hover { background: rgba(0,0,0,0.04); }
.acmp-nav-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 48;
  animation: acmp-scrim-in .15s ease-out;
}
@keyframes acmp-scrim-in { from { opacity: 0 } to { opacity: 1 } }
.acmp-nav-panel {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border-subtle, #eee);
  box-shadow: 0 24px 40px rgba(0,0,0,0.10);
  padding: 14px 20px 20px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 49;
  animation: acmp-panel-in .18s ease-out;
}
@keyframes acmp-panel-in {
  from { transform: translateY(-12px); opacity: 0 }
  to   { transform: translateY(0); opacity: 1 }
}
.acmp-nav-panel-link {
  display: block;
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 600; font-size: 16px;
  color: var(--acmp-navy, #222b49);
  padding: 14px 6px;
  border-bottom: 1px solid var(--border-subtle, #f2f2f2);
  cursor: pointer; text-decoration: none;
}
.acmp-nav-panel-link.is-active { color: var(--acmp-orange, #f74604); }
.acmp-nav-panel-link:last-of-type { border-bottom: 0; }
.acmp-nav-panel-cta {
  margin-top: 14px; width: 100%; justify-content: center;
}
@media (max-width: 900px) {
  .acmp-nav-burger { display: inline-flex; }
  .acmp-nav-cta { display: none !important; }
}
.acmp-nav-links { display: flex; gap: 26px; align-items: center; justify-self: center; }
.acmp-nav-link {
  font-family: 'DM Sans',var(--font-body); font-weight: 500; font-size: 14px;
  color: #000; text-decoration: none; letter-spacing: -0.04em; white-space: nowrap;
  padding: 6px 0; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}
.acmp-nav-link:hover { color: var(--acmp-orange); }
.acmp-nav-link.is-active { color: var(--acmp-orange); }

/* ---- Responsive br helper ---- */
.acmp-br-desktop { display: none; }
@media (min-width: 861px) { .acmp-br-desktop { display: block; } }

/* ---- Hero ---- */
.acmp-hero {
  max-width: 1200px; margin: -24px auto 0;
  padding: 0 28px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center;
}
.acmp-hero h1 {
  font-family: var(--font-course-title); font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 150px);
  line-height: 0.82; letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 20px; text-wrap: balance;
}
.acmp-hero h1 .navy { color: var(--acmp-navy); }
.acmp-hero h1 .kw { color: var(--acmp-orange); }
.acmp-hero h1.acmp-hero-h1-extenda {
  font-family: 'Extenda 30 Deca', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 140px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 14px 0 4px;
}
.acmp-hero h1.acmp-hero-h1-extenda + p.lead { margin-top: 0; }
.acmp-hero .eyebrow { margin-bottom: 6px !important; margin-top: -34px !important; }
.acmp-hero-eyebrow {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.3;
}
.acmp-hero p.lead {
  font-size: 15px; color: var(--fg-2); max-width: 46ch; margin: 0 0 28px;
}
.acmp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.acmp-hero-art {
  position: relative; aspect-ratio: 5 / 4;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.acmp-hero-art img.hero-photo {
  width: 216%; height: 216%;
  object-fit: contain;
  display: block;
  transform-origin: center;
}
.acmp-hero-art .pattern { display: none; }
.acmp-hero-art .photo-placeholder { display: none; }

/* ---- Logo marquee ---- */
.acmp-logos {
  background: #f2f2f2;
  padding: 44px 0;
  display: flex; flex-direction: column; gap: 22px;
}
.acmp-logos .label {
  font-family: var(--font-section); font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fg-2);
  text-align: center;
}
.acmp-logos .label .hl { color: var(--acmp-orange); }

.acmp-module-bullets {
  margin: 0; padding: 0 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--fg-2); font-size: 15px; line-height: 1.5;
}
.acmp-module-bullets li { margin: 0; }
.acmp-logos-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.acmp-logos-track {
  display: flex; align-items: center; gap: 72px;
  width: max-content;
  animation: acmp-logos-scroll 40s linear infinite;
}
.acmp-logos-marquee:hover .acmp-logos-track { animation-play-state: paused; }
.acmp-logos .brand-logo {
  height: 202px; width: auto; max-width: 648px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.3s, opacity 0.3s;
}
.acmp-logos .brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes acmp-logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Stats ---- */
.acmp-stats {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 28px 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.acmp-stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 64px; line-height: 1; letter-spacing: -0.025em;
  color: var(--acmp-orange); text-align: center;
}
.acmp-stat .lbl {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  margin-top: 8px; text-align: center;
}
.acmp-stat { display: flex; flex-direction: column; align-items: center; }

/* ---- Section header ---- */
.acmp-section-head {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 28px 40px;
  text-align: center;
}
.acmp-section-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-section-head h2 {
  font-family: var(--font-section); font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.1; letter-spacing: -0.04em;
  color: #000; margin: 0 0 8px; text-wrap: balance;
}
.acmp-section-head h2 .kw { color: #000; letter-spacing: -0.04em; }
.acmp-section-head .desc { color: var(--fg-2); max-width: 60ch; margin: 0 auto; }

/* ---- Course grid ---- */
.acmp-courses {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 28px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.acmp-course {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all var(--dur-base) var(--ease-standard);
  cursor: pointer;
}
.acmp-course:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.acmp-course-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f2f2f2;
}
.acmp-course-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.acmp-course-title {
  font-family: 'DM Sans',var(--font-body); font-weight: 700; font-size: 20px;
  line-height: 1.18; color: var(--acmp-navy); letter-spacing: -0.04em;
  margin: 4px 0 2px;
}
.acmp-course-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  letter-spacing: -0.01em;
}
.acmp-course-meta li { margin: 0; }

/* ---- Method ---- */
.acmp-method {
  background: #f2f2f2;
  position: relative; overflow: hidden;
  margin-top: 32px;
}
.acmp-method::before { display: none; }
.acmp-method-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  padding: 96px 28px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.acmp-method h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 4.6vw, 3.75rem);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--acmp-navy); margin: 0; text-wrap: balance;
}
.acmp-method h2 .kw { color: var(--acmp-orange); }
.acmp-method .lead { font-size: 17px; color: var(--fg-2); margin: 16px 0 0; max-width: 30ch; }
.acmp-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.acmp-pillar {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.acmp-pillar .num {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--acmp-orange); margin-bottom: 12px;
}
.acmp-pillar h3 {
  font-family: var(--font-section); font-weight: 700; font-size: 18px;
  color: var(--acmp-navy); margin: 0 0 6px;
}
.acmp-pillar p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }

/* ---- Bonos ---- */
.acmp-bonos-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 28px 80px;
}
  max-width: 1100px; margin: 0 auto;
  padding: 24px 28px 80px;
}
.acmp-bonos-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.acmp-bonos-head .eyebrow { color: var(--acmp-orange); margin-bottom: 10px; }
.acmp-bonos-head h2 { color: var(--acmp-navy); margin: 0 0 8px; text-wrap: balance; }
.acmp-bonos-head h2 .kw { color: var(--acmp-orange); }
.acmp-bonos-head .desc { color: var(--fg-2); margin: 0 auto; }
.acmp-bonos-list { display: flex; flex-direction: column; gap: 12px; }
.acmp-bonus {
  text-align: left; width: 100%; cursor: pointer;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 20px);
  padding: 18px 22px;
  font-family: inherit; color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.acmp-bonus:hover {
  border-color: rgba(217, 119, 87, .35);
  box-shadow: 0 6px 24px rgba(34, 43, 73, 0.06);
}
.acmp-bonus.no-body { cursor: default; }
.acmp-bonus.no-body:hover { transform: none; }
.acmp-bonus-row {
  display: flex; align-items: center; gap: 18px;
}
.acmp-bonus-tag {
  flex: 0 0 auto;
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--acmp-orange);
  padding: 8px 12px;
  border-radius: 999px;
}
.acmp-bonus-main { flex: 1; min-width: 0; }
.acmp-bonus-title {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 17px; color: var(--acmp-navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.acmp-bonus-by {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13px; color: var(--fg-2);
  margin-top: 2px;
}
.acmp-bonus-chev {
  color: var(--acmp-navy);
  transition: transform .2s ease;
}
.acmp-bonus.is-open .acmp-bonus-chev { transform: rotate(180deg); }
.acmp-bonus-badge {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(217, 119, 87, .12);
  color: var(--acmp-orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.acmp-bonus-body { padding: 8px 0 6px 0; }
.acmp-bonus-body ul {
  list-style: none; margin: 14px 0 4px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.acmp-bonus-body li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px; line-height: 1.5; color: var(--fg-1);
}
.acmp-bonus-body li::before {
  content: ''; position: absolute;
  left: 2px; top: 9px; width: 6px; height: 6px;
  border-radius: 999px; background: var(--acmp-orange);
}

/* ---- Antes / Después ---- */
.acmp-ad { background: #fff; padding: 96px 0 64px; }
.acmp-ad-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px;
}
.acmp-ad-head { text-align: center; margin-bottom: 48px; }
.acmp-ad-head .eyebrow { color: var(--acmp-orange); margin-bottom: 14px; }
.acmp-ad-head h2 .kw { color: var(--acmp-orange); }
.acmp-ad-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.acmp-ad-col {
  background: #f6f6f6;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 20px);
  padding: 26px 26px 28px;
}
.acmp-ad-col-head { margin-bottom: 18px; display: flex; }
.acmp-ad-col-tag {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.acmp-ad-tag-antes {
  color: #8a8a8a;
  background: #ebebeb;
}
.acmp-ad-tag-despues {
  color: #fff;
  background: var(--acmp-orange);
}
.acmp-ad-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.acmp-ad-col li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px; line-height: 1.45;
  color: var(--fg-1);
}
.acmp-ad-icon {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.acmp-ad-icon-x {
  background: #e0e0e0;
  color: #6b6b6b;
}
.acmp-ad-icon-check {
  background: var(--acmp-orange);
  color: #fff;
}
.acmp-ad-col-antes li { color: var(--fg-2); }
.acmp-ad-col-despues { background: #fff7f2; border-color: rgba(217, 119, 87, .25); }
.acmp-ad-media {
  display: flex; align-items: stretch; justify-content: center;
}
.acmp-ad-photo {
  width: 100%;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  background: #f2f2f2;
}
.acmp-ad-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

@media (max-width: 1100px) {
  .acmp-ad-grid {
    grid-template-columns: 1fr 1fr;
  }
  .acmp-ad-media { grid-column: 1 / -1; order: -1; max-height: 420px; }
}
@media (max-width: 640px) {
  .acmp-ad-grid { grid-template-columns: 1fr; }
}

/* ---- Empresas CTA (navy block) ---- */
.acmp-empresas-cta {
  position: relative;
  background:
    linear-gradient(rgba(34, 43, 73, 0.78), rgba(34, 43, 73, 0.88)),
    url('assets/empresas-bg.webp') center / cover no-repeat,
    var(--acmp-navy, #222b49);
  padding: 80px 28px;
  margin: 0;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.acmp-empresas-cta-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  color: #fff;
  display: flex; flex-direction: column; align-items: center;
}
.acmp-empresas-cta-icon {
  width: 76px; height: 76px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acmp-orange);
  margin-bottom: 26px;
}
.acmp-empresas-cta-eyebrow {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acmp-orange);
  margin-bottom: 18px;
}
.acmp-empresas-cta-title {
  color: #fff;
}
.acmp-empresas-cta-text {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 16px 0 28px;
  max-width: 56ch;
}

/* ---- Section titles ---- */
.acmp-page section h2,
.acmp-page .acmp-section-head h2,
.acmp-outcomes-head h2,
.acmp-modules-head h2,
.acmp-vsl-head h2,
.acmp-test-head h2,
.acmp-bio-text h2,
.acmp-para-quien-head h2,
.acmp-empresas-cta-title,
.acmp-accion-title,
.acmp-faq-title,
.acmp-certs-title {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

/* ---- Para quién es este curso ---- */
.acmp-para-quien {
  background: #fff;
  padding: 96px 0 64px;
}
.acmp-para-quien-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px;
}
.acmp-para-quien-head { text-align: center; margin-bottom: 48px; }
.acmp-para-quien-head .eyebrow { color: var(--acmp-orange); margin-bottom: 14px; }
.acmp-para-quien-head h2 {
  font-family: 'Extenda 30 Deca', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--acmp-navy);
  margin: 0;
  text-wrap: balance;
}
.acmp-para-quien-head h2 .kw { color: var(--acmp-orange); }
.acmp-para-quien-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.acmp-para-quien-card {
  background: #f6f6f6;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 20px);
  padding: 22px 22px 22px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.45; color: var(--fg-1);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.acmp-para-quien-card:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-md, 0 6px 24px rgba(0,0,0,.06));
}
.acmp-para-quien-check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--acmp-orange);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.acmp-para-quien-text { display: block; }

@media (max-width: 1100px) {
  .acmp-para-quien-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .acmp-para-quien-grid { grid-template-columns: 1fr; }
}


/* ---- Testimonial ---- */
.acmp-testimonial-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 28px;
}
.acmp-test-head { text-align: center; margin-bottom: 40px; }
.acmp-test-head .eyebrow { margin-bottom: 10px; }
.acmp-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acmp-test-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.acmp-test-stars { display: flex; gap: 2px; color: var(--acmp-orange); }
.acmp-test-text {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.55; color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.01em;
}
.acmp-test-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.acmp-test-avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--acmp-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: -0.02em;
}
.acmp-test-name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; color: #000; letter-spacing: -0.02em;
}
.acmp-testimonial {
  background: var(--acmp-navy);
  border-radius: var(--radius-xl);
  padding: 56px 56px 48px;
  position: relative; overflow: hidden;
  color: #fff;
}
.acmp-testimonial::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px;
  background-image: url('../assets/isotype-waves.svg');
  background-size: contain; background-repeat: no-repeat;
  color: #fff; opacity: 0.10;
}
.acmp-testimonial .qmark {
  font-family: var(--font-display); font-weight: 700;
  color: var(--acmp-orange); font-size: 96px; line-height: 0.6; height: 56px;
}
.acmp-testimonial .qtext {
  font-family: var(--font-section); font-weight: 500;
  font-size: 28px; line-height: 1.25; letter-spacing: -0.04em;
  max-width: 28ch; margin: 8px 0 28px;
}
.acmp-testimonial .who { display: flex; align-items: center; gap: 14px; }
.acmp-testimonial .avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--acmp-orange); }
.acmp-testimonial .name { font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.acmp-testimonial .role { font-family: var(--font-body); font-size: 13px; opacity: 0.72; }

/* ---- Instructor Bio ---- */
.acmp-bio-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 28px;
}
.acmp-bio-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.acmp-bio-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-bio-section-title { color: var(--acmp-navy); margin: 0; }
.acmp-bio-section-title .kw { color: var(--acmp-orange); }
.acmp-bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}
.acmp-bio-grid-single {
  grid-template-columns: 1fr;
  max-width: calc((1200px - 28px * 2 - 40px) / 2);
  margin: 40px auto 0;
}
.acmp-bio {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 20px);
  padding: 32px 28px;
}
.acmp-bio-photo {
  width: 220px; aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: #f2f2f2;
  overflow: hidden;
  flex: 0 0 220px;
}
.acmp-bio-name {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--acmp-orange);
  margin: 0 0 6px;
}
  overflow: hidden;
  background: linear-gradient(160deg, #f6f4ef 0%, #e9e4d8 100%);
  box-shadow: 0 24px 60px rgba(34, 43, 73, 0.14);
  position: relative;
}
.acmp-bio-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-section); color: #000; text-align: center;
  border: 2px dashed rgba(0,0,0,0.18);
  border-radius: var(--radius-xl);
  margin: 14px;
}
.acmp-bio-placeholder span {
  font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
}
.acmp-bio-placeholder small {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-2); letter-spacing: 0;
  text-transform: none;
}
.acmp-bio-text .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-bio-text h2 { color: #000; margin: 0 0 6px; text-wrap: balance; }
.acmp-bio-text h2 .kw { color: var(--acmp-orange); }
.acmp-bio-role {
  font-family: var(--font-section); font-weight: 500; font-size: 17px;
  color: var(--fg-2); margin: 0 0 18px; letter-spacing: -0.02em;
}
.acmp-bio-lead {
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: #000; letter-spacing: -0.02em; margin: 0 auto 22px;
  max-width: 56ch;
}
.acmp-bio-bullets {
  list-style: none; padding: 0; margin: 0 auto 26px;
  display: inline-flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.acmp-bio-bullets li {
  position: relative; padding-left: 22px;
  font-size: 15px; color: var(--fg-2); letter-spacing: -0.02em; line-height: 1.45;
}
.acmp-bio-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--acmp-orange);
}
.acmp-bio-bullets li strong { color: #000; font-weight: 700; }
.acmp-bio-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.acmp-bio-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: #f2f2f2; color: #000;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: -0.02em; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  text-decoration: none;
}
.acmp-bio-chip:hover { background: var(--acmp-orange); color: #fff; }
.acmp-bio-socials { justify-content: center; }

@media (max-width: 860px) {
  .acmp-bio-photo { width: 220px; }
}

/* ---- Modules ---- */
.acmp-modules-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 28px;
}
.acmp-modules-head {
  max-width: 720px; margin: 0 auto 40px; text-align: center;
}
.acmp-modules-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-modules-head h2 { color: #000; margin: 0 0 8px; text-wrap: balance; }
.acmp-modules-head h2 .kw { color: var(--acmp-orange); }
.acmp-modules-head .desc { color: var(--fg-2); margin: 0 auto; }

.acmp-modules-list {
  display: flex; flex-direction: column; gap: 10px;
}
.acmp-module {
  width: 100%; text-align: left;
  background: #fff;
  border: 1px solid #e6e6e6; border-radius: 14px;
  padding: 0; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  font-family: var(--font-body);
}
.acmp-module:hover { border-color: var(--acmp-orange); }
.acmp-module.is-open { border-color: var(--acmp-orange); box-shadow: 0 12px 32px rgba(247,70,4,0.12); }
.acmp-module-row {
  display: grid; grid-template-columns: 64px 1fr auto auto;
  align-items: center; gap: 18px;
  padding: 18px 22px;
}
.acmp-module-n {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  color: var(--acmp-orange); letter-spacing: -0.04em; line-height: 1;
}
.acmp-module-title {
  font-family: var(--font-section); font-weight: 700; font-size: 19px;
  color: #000; letter-spacing: -0.04em; line-height: 1.25;
}
.acmp-module-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--fg-2); letter-spacing: -0.02em;
}
.acmp-module-meta .dot { opacity: 0.5; }
.acmp-module-chev {
  width: 36px; height: 36px; border-radius: 999px;
  background: #f5f5f5; color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
}
.acmp-module.is-open .acmp-module-chev {
  background: var(--acmp-orange); color: #fff; transform: rotate(180deg);
}
.acmp-module-body {
  padding: 0 22px 22px 104px;
}
.acmp-module-body p {
  margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55;
  letter-spacing: -0.02em; max-width: 60ch;
}

@media (max-width: 720px) {
  .acmp-module-row { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 14px 16px; }
  .acmp-module-meta { display: none; }
  .acmp-module-body { padding: 0 16px 18px 76px; }
}

/* ---- Academia en acción ---- */
.acmp-accion {
  background: #f2f2f2;
  padding: 72px 0;
  overflow: hidden;
}
.acmp-accion-head {
  max-width: 1200px; margin: 0 auto 40px;
  padding: 0 28px; text-align: center;
}
.acmp-accion-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0;
}
.acmp-accion-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.acmp-accion-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: acmp-accion-scroll 60s linear infinite;
}
.acmp-accion-marquee:hover .acmp-accion-track { animation-play-state: paused; }
.acmp-accion-card {
  flex: 0 0 auto;
  width: 336px; aspect-ratio: 9 / 12;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(34, 43, 73, 0.10);
}
.acmp-accion-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@keyframes acmp-accion-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Ebook ---- */
.acmp-ebook { background: #f2f2f2; }
.acmp-ebook-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 96px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.acmp-ebook-copy { text-align: left; }
.acmp-ebook-eyebrow {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0 0 18px;
  text-transform: uppercase;
}
.acmp-ebook-title {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif; font-weight: 700;
  font-size: 34.5px; line-height: 1.2;
  color: var(--acmp-navy); margin: 0 0 28px;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.acmp-ebook-media { display: flex; justify-content: center; }
.acmp-ebook-cover-img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(34, 43, 73, 0.18);
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-ebook-cover-img:hover { transform: rotate(-1deg) translateY(-4px); }
.acmp-ebook-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%; max-width: 360px;
  transform: rotate(-3deg);
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-ebook-cover:hover { transform: rotate(-1deg) translateY(-4px); }
.acmp-ebook-cover-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 6px 12px 12px 6px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow:
    0 30px 60px rgba(34, 43, 73, 0.30),
    0 12px 24px rgba(34, 43, 73, 0.18),
    inset -6px 0 16px rgba(0,0,0,0.12);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
}
.acmp-ebook-cover-logo {
  height: 48px; width: auto; display: block;
  margin: 38px auto 6px;
}
.acmp-ebook-cover-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  min-height: 0;
}
.acmp-ebook-cover-meta {
  background: var(--acmp-orange);
  color: #fff;
  text-align: center;
  padding: 18px 18px 22px;
}
.acmp-ebook-cover-kicker {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; opacity: 0.92; margin: 0 0 8px;
}
.acmp-ebook-cover-title {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif; font-weight: 800;
  font-size: 25.3px; line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 auto 8px; color: #fff;
  max-width: 16ch;
  text-wrap: balance;
}
.acmp-ebook-cover-author {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.06em;
  color: #fff; opacity: 0.92;
  text-transform: uppercase;
}
.acmp-ebook-spine {
  position: absolute; left: 0; top: 2%; bottom: 2%;
  width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.30), rgba(0,0,0,0));
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .acmp-ebook-wrap { grid-template-columns: 1fr; gap: 48px; }
  .acmp-ebook-copy { text-align: center; }
  .acmp-ebook-title { margin-left: auto; margin-right: auto; }
  .acmp-ebook-cover { max-width: 280px; }
}

/* ---- Learning Outcomes ---- */
.acmp-outcomes { background: #f2f2f2; }
.acmp-outcomes-wrap { max-width: 1200px; margin: 0 auto; padding: 96px 28px; }
.acmp-outcomes-head { margin-bottom: 48px; text-align: center; }
.acmp-outcomes-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-outcomes-head h2 {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.04em; line-height: 1.05;
  color: #000; margin: 0; text-wrap: balance;
}
.acmp-outcomes-head h2 .kw { color: var(--acmp-orange); }
.acmp-outcomes-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 40px; align-items: center;
}
.acmp-outcomes-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.acmp-outcomes-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  color: #000; letter-spacing: -0.01em;
}
.acmp-outcomes-check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--acmp-orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px; flex-shrink: 0;
}
.acmp-outcomes-media { position: relative; }
.acmp-outcomes-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background: #f2f2f2; border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: var(--fg-3);
  font-family: var(--font-section); font-weight: 500;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
.acmp-outcomes-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .acmp-outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .acmp-outcomes-media { position: static; order: -1; }
}

/* ---- VSL Section ---- */
.acmp-vsl-wrap {
  background: #fff;
  max-width: none; margin: 0;
  padding: 80px max(28px, calc((100% - 1200px) / 2)) 40px;
}
.acmp-vsl-head {
  max-width: 720px; margin: 0 auto 32px; text-align: center;
}
.acmp-vsl-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-vsl-head h2 { color: #000; margin: 0 0 8px; text-wrap: balance; }
.acmp-vsl-head h2 .kw { color: var(--acmp-orange); }
.acmp-vsl-head .desc { color: var(--fg-2); max-width: 60ch; margin: 0 auto; }
.acmp-vsl-frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl); overflow: hidden;
  background: transparent;
  box-shadow: 0 30px 80px rgba(34, 43, 73, 0.12);
}
.acmp-vsl-frame vturb-smartplayer {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.acmp-vsl-player {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(247,70,4,0.18) 0%, rgba(34,43,73,0) 60%), var(--acmp-navy);
}
.acmp-vsl-play {
  width: 96px; height: 96px; border-radius: 999px;
  background: var(--acmp-orange); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-orange);
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-vsl-play:hover { transform: scale(1.06); }
.acmp-vsl-play svg { margin-left: 4px; }
.acmp-vsl-meta {
  position: absolute; left: 24px; bottom: 22px;
  font-family: var(--font-section); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.78);
}

/* ---- FAQ ---- */
.acmp-faq { background: #fff; }
.acmp-faq-wrap {
  max-width: 880px; margin: 0 auto;
  padding: 96px 28px;
}
.acmp-faq-head { text-align: center; margin-bottom: 40px; }
.acmp-faq-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-faq-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0;
}
.acmp-faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.acmp-faq-item {
  width: 100%; text-align: left;
  background: #fff;
  border: 1px solid #e6e6e6; border-radius: 14px;
  padding: 0; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  font-family: var(--font-body);
}
.acmp-faq-item:hover { border-color: var(--acmp-orange); }
.acmp-faq-item.is-open {
  border-color: var(--acmp-orange);
  box-shadow: 0 12px 32px rgba(247, 70, 4, 0.10);
}
.acmp-faq-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
  padding: 18px 22px;
}
.acmp-faq-q {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 17px; color: var(--acmp-navy);
  letter-spacing: -0.02em; line-height: 1.3;
}
.acmp-faq-chev {
  width: 32px; height: 32px; border-radius: 999px;
  background: #f5f5f5; color: var(--acmp-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
  flex-shrink: 0;
}
.acmp-faq-item.is-open .acmp-faq-chev {
  background: var(--acmp-orange); color: #fff; transform: rotate(180deg);
}
.acmp-faq-a {
  margin: 0; padding: 0 22px 20px 22px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--fg-2); letter-spacing: -0.01em;
  max-width: 70ch;
}

/* ---- Certificates ---- */
.acmp-certs {
  background: #f2f2f2;
  padding: 80px 0;
  overflow: hidden;
}
.acmp-certs-head {
  max-width: 880px; margin: 0 auto 40px;
  padding: 0 28px; text-align: center;
}
.acmp-certs-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0 0 14px;
}
.acmp-certs-sub {
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  color: var(--fg-2); margin: 0; letter-spacing: -0.01em;
  max-width: 60ch; margin-left: auto; margin-right: auto;
}
.acmp-certs-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.acmp-certs-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: acmp-certs-scroll 60s linear infinite;
}
.acmp-certs-marquee:hover .acmp-certs-track { animation-play-state: paused; }
.acmp-certs-card {
  flex: 0 0 auto;
  width: 340px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(34, 43, 73, 0.10);
}
.acmp-certs-card img {
  width: 100%; height: auto; object-fit: cover; display: block;
}
@keyframes acmp-certs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Socials ---- */
.acmp-socials { background: #fff; }
.acmp-socials-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 28px 96px;
  text-align: center;
}
.acmp-socials .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 24px;
}
.acmp-socials-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 72px;
}
.acmp-social-link {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 0; background: none; border: none;
  color: var(--acmp-orange);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: -0.02em; text-decoration: none;
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-social-link:hover {
  background: none; color: var(--acmp-orange);
  transform: translateY(-2px);
}
.acmp-social-ico { display: inline-flex; }

/* ---- Footer ---- */
.acmp-footer {
  background: var(--acmp-orange);
  color: rgba(255,255,255,0.92);
}
.acmp-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 28px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.acmp-footer h4 {
  font-family: var(--font-section); font-weight: 700;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; margin: 0 0 14px;
}
.acmp-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.acmp-footer ul a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; }
.acmp-footer ul a:hover { color: #fff; }
.acmp-footer .tagline { font-size: 14px; line-height: 1.6; max-width: 36ch; opacity: 0.82; margin: 14px 0 22px; }
.acmp-footer .socials { display: flex; gap: 12px; }
.acmp-footer .socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: all var(--dur-fast) var(--ease-standard);
}
.acmp-footer .socials a { background: rgba(255,255,255,0.14); }
.acmp-footer .socials a:hover { background: rgba(255,255,255,0.28); }
.acmp-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.52);
}

/* ---- Modal ---- */
.acmp-scrim {
  position: fixed; inset: 0;
  background: rgba(34, 43, 73, 0.64);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 32px;
}
.acmp-modal {
  background: #fff; border-radius: var(--radius-xl);
  max-width: 640px; width: 100%;
  padding: 36px;
  box-shadow: 0 40px 80px rgba(34, 43, 73, 0.4);
}
.acmp-modal h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--acmp-navy); margin: 0 0 12px;
}
.acmp-modal h3 .kw { color: var(--acmp-orange); }
.acmp-modal p { color: var(--fg-2); }
.acmp-modal .modal-actions { display: flex; gap: 12px; margin-top: 24px; }

/* ---- Buy section ---- */
.acmp-buy { background: #fafafa; padding: 96px 28px; }
.acmp-buy-wrap { max-width: 1100px; margin: 0 auto; }
.acmp-buy-head { text-align: center; margin-bottom: 48px; }
.acmp-buy-head .eyebrow {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--acmp-orange, #f74604); margin-bottom: 10px;
}
.acmp-buy-head h2 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700; color: var(--acmp-navy, #222b49);
  margin: 0; letter-spacing: -0.02em; line-height: 1.05;
}
.acmp-buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.acmp-buy-col { display: flex; flex-direction: column; gap: 20px; }
.acmp-buy-card.is-combo { height: 100%; }
.acmp-buy-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-subtle, #eee);
  border-radius: 20px;
  padding: 44px 32px 32px;
  display: flex; flex-direction: column; gap: 22px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(34, 43, 73, 0.06);
}
.acmp-buy-card.is-combo {
  background: var(--acmp-navy, #222b49);
  color: #fff;
  box-shadow: 0 20px 60px rgba(34, 43, 73, 0.18);
}
.acmp-buy-discount {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--acmp-orange, #f74604); color: #fff;
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(247, 70, 4, 0.32);
}
.acmp-buy-title {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; line-height: 1.2;
  color: var(--acmp-navy, #222b49);
  margin: 0;
}
.acmp-buy-combo-head {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 40px; line-height: 1;
  color: #fff;
  text-transform: uppercase; margin: 0;
  white-space: nowrap;
}
.acmp-buy-combo-head .ln2 { color: var(--acmp-orange, #f74604); }
.acmp-buy-combo-title {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 26px;
  line-height: 1.15; letter-spacing: -0.02em;
  color: #fff; margin: 0;
}
.acmp-buy-kicker {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange, #f74604);
  margin: 0 0 -10px;
}
.acmp-buy-kicker.is-combo { color: rgba(255,255,255,0.78); }
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 26px;
  line-height: 1.15; letter-spacing: -0.02em;
  color: #fff; margin: 0;
}
.acmp-buy-perclass {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14px; opacity: 0.78; font-weight: 500;
}
.acmp-buy-preventa {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: center;
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--acmp-orange, #f74604);
  padding: 7px 14px; border-radius: 999px;
}
.acmp-buy-preventa-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: acmp-pulse 1.6s infinite;
}
@keyframes acmp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.acmp-buy-startdate {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14px; line-height: 1.4;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.acmp-buy-startdate strong { color: #fff; }
.acmp-buy-price { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.acmp-buy-price .now {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 44px;
  line-height: 1; letter-spacing: -0.02em;
  color: inherit;
}
.acmp-buy-price .now small {
  font-size: 16px; letter-spacing: 0.08em; font-weight: 600;
  margin-left: 6px; opacity: 0.7;
}
.acmp-buy-price .was {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  text-decoration: line-through;
  opacity: 0.55;
}
.acmp-buy-pay-label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13px; margin: 0 0 14px;
  opacity: 0.78;
}
.acmp-buy-pay-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.pay-chip {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 500; font-size: 12px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.85;
  white-space: nowrap;
}
.acmp-buy-card.is-combo .pay-chip { border-color: rgba(255,255,255,0.4); }
.acmp-buy-card.is-combo .acmp-buy-pay-label { color: #fff; opacity: 1; }
.acmp-buy-feats {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.acmp-buy-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14.5px; line-height: 1.4;
}
.acmp-buy-feats svg { color: var(--acmp-orange, #f74604); flex: 0 0 16px; margin-top: 2px; }
.acmp-buy-card.is-combo .acmp-buy-feats { text-align: center; }
.acmp-buy-card.is-combo .acmp-buy-feats li { justify-content: center; }
.acmp-buy-cta-wrap { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.acmp-buy-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 22px;
  background: var(--acmp-orange, #f74604); color: #fff !important;
  border-radius: 999px;
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(247, 70, 4, 0.32);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.acmp-buy-cta:hover {
  transform: translateY(-2px);
  background: #d8590a;
  box-shadow: 0 14px 38px rgba(247, 70, 4, 0.42);
}
.acmp-buy-currency { margin-top: 4px; }
.acmp-buy-currency-label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12.5px; opacity: 0.65; margin-bottom: 12px;
}
.acmp-buy-flags { display: flex; justify-content: center; gap: 18px; }
.acmp-buy-flag {
  display: inline-flex; font-size: 32px; line-height: 1;
  text-decoration: none; transition: transform .15s ease;
}
.acmp-buy-flag:hover { transform: scale(1.15); }
.acmp-buy-col { display: flex; flex-direction: column; gap: 20px; }
.acmp-buy-safe {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff;
  border: 1px solid var(--border-subtle, #eee);
  border-radius: 16px;
  padding: 20px 24px;
}
.acmp-buy-safe .ico {
  flex: 0 0 44px; width: 44px; height: 44px;
  background: rgba(247, 70, 4, 0.10);
  color: var(--acmp-orange, #f74604);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.acmp-buy-safe h4 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--acmp-navy, #222b49); margin: 0 0 4px;
}
.acmp-buy-safe p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14px; color: var(--fg-2, #555); margin: 0;
}

/* Buy section — mobile */
@media (max-width: 900px) {
  .acmp-buy { padding: 56px 28px; }
  .acmp-buy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 360px;
    margin: 0 auto;
  }
  .acmp-buy-col {
    gap: 14px;
    min-width: 0;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .acmp-buy-card {
    padding: 32px 22px 26px;
    margin: 0 auto;
    width: 100% !important;
    max-width: 360px !important;
    min-width: 0;
    box-sizing: border-box;
  }
  .acmp-buy-card > * { min-width: 0; }
  .acmp-buy-safe {
    margin: 0 auto;
    width: 100% !important;
    max-width: 360px !important;
    min-width: 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .acmp-buy-combo-head {
    font-size: 36px;
    white-space: normal;
    word-break: keep-all;
  }
  .acmp-buy-price .now { font-size: 38px; }
  .acmp-buy-title { font-size: 19px; }
}

/* ---- Comunidad (IG feed) ---- */
.acmp-community { background: var(--bg-page); padding: 80px 0; }
.acmp-community-wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.acmp-community-head { text-align: center; margin-bottom: 36px; }
.acmp-community-head .eyebrow {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--acmp-orange, #f74604); margin-bottom: 10px;
}
.acmp-community-head h2 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif !important;
  font-weight: 700 !important; font-size: 34px !important;
  color: var(--acmp-navy, #222b49); margin: 0 0 10px;
  letter-spacing: -0.02em; line-height: 1.1;
}
.acmp-community-head h2 .kw { color: var(--acmp-orange, #f74604); }
.acmp-community-sub {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px; color: var(--fg-2, #555);
  margin: 0 auto 26px; max-width: 56ch;
}
.acmp-community-profile {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fafafa;
  border: 1px solid var(--border-subtle, #eee);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  text-decoration: none; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.acmp-community-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 43, 73, 0.08);
}
.acmp-community-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-subtle, #eee);
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acmp-community-avatar img { width: 72%; height: auto; object-fit: contain; }
.acmp-community-handle { display: flex; flex-direction: column; text-align: left; }
.acmp-community-handle-name {
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 14px;
  color: var(--acmp-navy, #222b49);
}
.acmp-community-handle-meta {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12px; color: var(--fg-2, #555);
}
.acmp-community-follow-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--acmp-orange, #f74604); color: #fff;
  font-family: var(--font-section, 'Inter', sans-serif);
  font-weight: 700; font-size: 13px;
  padding: 9px 16px; border-radius: 999px;
}
.acmp-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 auto 32px;
  max-width: 720px;
}
.acmp-community-post {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f2f2f2;
  display: block;
  text-decoration: none;
}
.acmp-community-post img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.acmp-community-post:hover img { transform: scale(1.04); }
.acmp-community-post-overlay {
  position: absolute; inset: 0;
  background: rgba(34, 43, 73, 0);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transition: background .2s ease, opacity .2s ease;
}
.acmp-community-post:hover .acmp-community-post-overlay {
  background: rgba(34, 43, 73, 0.55);
  opacity: 1;
}
.acmp-community-footer { text-align: center; }
.acmp-community-footer .acmp-btn-primary {
  display: inline-flex; align-items: center;
}

@media (max-width: 900px) {
  .acmp-community { padding: 56px 0; }
  .acmp-community-wrap { padding: 0 20px; }
  .acmp-community-head h2 { font-size: 26px !important; }
  .acmp-community-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .acmp-community-profile {
    flex-direction: column; gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .acmp-community-profile:hover {
    transform: none;
    box-shadow: none;
  }
  .acmp-community-handle { text-align: center; align-items: center; }
}

/* ============================================================
   MOBILE — single landing, responsive
   ============================================================ */

/* Tablet & below */
@media (max-width: 900px) {
  /* Navbar */
  .acmp-nav-inner { height: 60px; padding: 0 18px; }
  .acmp-nav-links { display: none; }
  .acmp-logo img { height: 36px !important; }
  .acmp-nav-right .acmp-btn { padding: 10px 14px; font-size: 13px; }

  /* Hero */
  .acmp-hero {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 56px 20px 0;
    margin: 0 auto;
    text-align: center;
  }
  .acmp-hero h1.acmp-hero-h1-extenda {
    font-size: 100px !important;
    line-height: 0.94;
    margin: 4px 0 6px;
    text-align: center;
  }
  .acmp-hero .eyebrow { margin-top: 0 !important; font-size: 11px; text-align: center; }
  .acmp-hero-eyebrow { align-items: center; }
  .acmp-hero-eyebrow span { display: block; text-align: center; }
  .acmp-hero p.lead {
    font-size: 13px; max-width: 32ch;
    margin: 8px auto 20px; text-align: center;
    text-wrap: balance;
  }
  .acmp-hero p.lead .hide-mobile { display: none; }
  .acmp-hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .acmp-hero-ctas .acmp-btn { width: auto; justify-content: center; }
  .acmp-hero-art { aspect-ratio: 5 / 4; }
  .acmp-hero-art img.hero-photo { width: 169% !important; height: 169% !important; }

  /* Logos marquee */
  .acmp-logos { padding: 8px 0 12px; }
  .acmp-logos .label { font-size: clamp(10px, 3.2vw, 14px) !important; white-space: nowrap; padding: 0 12px; text-align: center; justify-content: center; }
  .brand-logo { height: 99px !important; }

  /* Stats */
  .acmp-stats {
    grid-template-columns: 1fr;
    gap: 18px; padding: 32px 20px; text-align: center;
  }
  .acmp-stat .num { font-size: 44px; }
  .acmp-stat .lbl { font-size: 13px; }

  /* Section titles unified — scale down */
  .acmp-page section h2,
  .acmp-page .acmp-section-head h2,
  .acmp-outcomes-head h2,
  .acmp-modules-head h2,
  .acmp-vsl-head h2,
  .acmp-test-head h2,
  .acmp-bio-text h2,
  .acmp-para-quien-head h2,
  .acmp-empresas-cta-title,
  .acmp-bonos-head h2,
  .acmp-ad-head h2,
  .acmp-accion-title,
  .acmp-faq-title,
  .acmp-certs-title {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }
  .acmp-section-head { padding: 0 20px; text-align: center; }
  .acmp-section-head .desc { font-size: 14px; }

  /* VSL */
  .acmp-vsl-wrap { padding: 32px 20px 24px; }  .acmp-vsl-frame { border-radius: 14px; box-shadow: 0 12px 32px rgba(34,43,73,.10); }

  /* Outcomes */
  .acmp-outcomes { padding: 48px 0; }
  .acmp-outcomes-wrap { padding: 0 20px; }
  .acmp-outcomes-head { margin-bottom: 24px; text-align: center; }
  .acmp-outcomes-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .acmp-outcomes-media { order: -1; }
  .acmp-outcomes-photo { max-width: 320px; margin: 0 auto; }
  .acmp-outcomes-list li { font-size: 14px; }

  /* Ebook */
  .acmp-ebook { padding: 48px 0; }
  .acmp-ebook-wrap {
    grid-template-columns: 1fr;
    gap: 32px; padding: 0 20px; text-align: center;
  }
  .acmp-ebook-copy { text-align: center; }
  .acmp-ebook-title { margin: 0 auto 18px; font-size: 26px !important; max-width: 28ch; }
  .acmp-ebook-cover { max-width: 240px; margin: 0 auto; }
  .acmp-ebook-cover-img { max-width: 240px; margin: 0 auto; }

  /* Academia en acción */
  .acmp-accion { padding: 48px 0 32px; }
  .acmp-accion-card { width: 286px !important; height: 364px !important; }
  .acmp-accion-track { gap: 10px !important; }

  /* Modules */
  .acmp-modules-wrap { padding: 48px 20px; }
  .acmp-modules-head { text-align: center; margin-bottom: 24px; }
  .acmp-module { padding: 14px 16px; }
  .acmp-module-row {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    gap: 12px; align-items: center;
  }
  .acmp-module-n { font-size: 16px; }
  .acmp-module-title { font-size: 14px; line-height: 1.3; }
  .acmp-module-meta { display: none; }
  .acmp-module-bullets li { font-size: 14px; }

  /* Bonos */
  .acmp-bonos-wrap { padding: 16px 20px 56px; }
  .acmp-bonos-head { margin-bottom: 24px; }
  .acmp-bonus { padding: 14px 16px; }
  .acmp-bonus-row { gap: 12px; }
  .acmp-bonus-tag {
    font-size: 9px; padding: 6px 9px; letter-spacing: 0.14em;
  }
  .acmp-bonus-title { font-size: 14px; line-height: 1.3; }
  .acmp-bonus-by { font-size: 12px; }
  .acmp-bonus-body li { font-size: 14px; }

  /* Instructor bio */
  .acmp-bio-wrap { padding: 48px 20px; }
  .acmp-bio-head { margin-bottom: 24px; }
  .acmp-bio-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .acmp-bio {
    padding: 24px 20px;
  }
  .acmp-bio-photo { width: 180px; flex-basis: 180px; margin: 0 auto; }
  .acmp-bio-name { font-size: 24px; }
  .acmp-bio-role { font-size: 14px; }
  .acmp-bio-lead { font-size: 14px; text-align: left; }
  .acmp-bio-socials { justify-content: center; }

  /* Para quién */
  .acmp-para-quien { padding: 56px 0 32px; }
  .acmp-para-quien-inner { padding: 0 20px; }
  .acmp-para-quien-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .acmp-para-quien-card { padding: 16px; font-size: 14px; }

  /* Antes / Después */
  .acmp-ad { padding: 56px 0 32px; }
  .acmp-ad-wrap { padding: 0 20px; }
  .acmp-ad-head { margin-bottom: 24px; }
  .acmp-ad-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .acmp-ad-media { order: -1; max-height: 260px; }
  .acmp-ad-col { padding: 20px; }
  .acmp-ad-col li { font-size: 14px; }

  /* Testimonios */
  .acmp-testimonial-wrap { padding: 48px 20px; }
  .acmp-test-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .acmp-test-card { padding: 22px; }
  .acmp-test-text { font-size: 14px; }

  /* Catálogo otros cursos */
  .acmp-courses {
    grid-template-columns: 1fr !important;
    gap: 16px; padding: 0 20px;
    max-width: 64%; margin: 0 auto;
  }
  .acmp-section-head { padding: 32px 20px 32px; text-align: center; }

  /* Empresas CTA */
  .acmp-empresas-cta {
    margin: 0;
    padding: 48px 24px;
    border-radius: 0;
  }
  .acmp-empresas-cta-text { font-size: 15px; }

  /* Certificados */
  .acmp-certs { padding: 48px 0; }
  .acmp-certs-head { padding: 0 20px; margin-bottom: 24px; }
  .acmp-certs-sub { font-size: 14px; }
  .acmp-certs-card { width: 280px !important; }

  /* FAQ */
  .acmp-faq { padding: 48px 0; }
  .acmp-faq-wrap { padding: 0 20px; }
  .acmp-faq-head { text-align: center; margin-bottom: 24px; }
  .acmp-faq-q { font-size: 15px; }
  .acmp-faq-a { font-size: 14px; }

  /* Socials */
  .acmp-socials-wrap { padding: 24px 20px 64px; }
  .acmp-socials-row { gap: 32px; }
  .acmp-social-link { font-size: 12px; }
  .acmp-socials .acmp-social-ico svg { width: 36px !important; height: 36px !important; }

  /* Footer */
  .acmp-footer { padding: 48px 0 24px; }
  .acmp-footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px; padding: 0 20px;
  }
  .acmp-footer-inner > div:first-child { grid-column: 1 / -1; }
  .acmp-footer-bottom { flex-direction: column; gap: 8px; padding: 24px 20px 0; text-align: center; }

  /* Modal */
  .acmp-modal { width: calc(100% - 32px); max-width: 480px; padding: 24px; }
}

/* Phone — below 480px */
@media (max-width: 480px) {
  .acmp-hero h1.acmp-hero-h1-extenda { font-size: 84px !important; }
  .acmp-hero p.lead { font-size: 15px; }
  .acmp-stat .num { font-size: 36px; }

  .acmp-page section h2,
  .acmp-outcomes-head h2,
  .acmp-modules-head h2,
  .acmp-vsl-head h2,
  .acmp-test-head h2,
  .acmp-bio-text h2,
  .acmp-para-quien-head h2,
  .acmp-empresas-cta-title,
  .acmp-bonos-head h2,
  .acmp-ad-head h2,
  .acmp-accion-title,
  .acmp-faq-title,
  .acmp-certs-title {
    font-size: 22px !important;
  }

  .acmp-footer-inner { grid-template-columns: 1fr !important; }
}
  .acmp-footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ===== Hero — Inglés (framed landscape photo) ===== */
.acmp-hero-ingles .acmp-hero-art {
  aspect-ratio: auto;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.acmp-hero-ingles .acmp-hero-art img.hero-photo.hero-photo-frame {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transform: none;
  border-radius: var(--radius-lg);
}
.acmp-hero.acmp-hero-ingles {
  margin: 64px auto 64px;
  padding-top: 0;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.acmp-hero-ingles > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.acmp-hero h1.acmp-hero-h1-extenda.acmp-hero-h1-ingles {
  font-size: clamp(3.5rem, 9.2vw, 140px);
  line-height: 0.82;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--acmp-orange);
  margin: 22px 0 22px;
  text-wrap: balance;
}
.acmp-hero .acmp-hero-eyebrow-ingles { color: #000; margin-top: 0 !important; }
.acmp-hero .acmp-hero-eyebrow-ingles .agotado { color: var(--acmp-orange); }
@media (max-width: 860px) {
  .acmp-hero.acmp-hero-ingles {
    margin-top: 28px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .acmp-hero-ingles > div:first-child {
    text-align: center;
    align-items: center;
  }
  .acmp-hero .acmp-hero-eyebrow-ingles {
    align-items: center;
    text-align: center;
  }
  .acmp-hero-ingles p.lead {
    margin-left: auto;
    margin-right: auto;
  }
  .acmp-hero h1.acmp-hero-h1-extenda.acmp-hero-h1-ingles {
    font-size: clamp(3.5rem, 18vw, 7rem) !important;
    line-height: 0.78;
    letter-spacing: normal;
  }
  .acmp-hero-ingles p.lead {
    font-size: 13px;
    max-width: none;
  }
  .acmp-hero-ingles .acmp-hero-art {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }
}
@media (max-width: 480px) {
  .acmp-hero h1.acmp-hero-h1-extenda.acmp-hero-h1-ingles { font-size: clamp(3.5rem, 18vw, 7rem) !important; }
}

/* ===== Sección "Elegí tu nivel" ===== */
.acmp-niveles {
  background: var(--acmp-orange);
  max-width: none;
  margin: 0 0 72px;
  padding: 40px max(28px, calc((100% - 1200px) / 2)) 72px;
}
.acmp-niveles .acmp-section-head .eyebrow { color: rgba(255,255,255,0.92); }
.acmp-niveles .acmp-section-head h2,
.acmp-niveles .acmp-section-head h2 .kw { color: #fff; }
.acmp-niveles .acmp-section-head .desc { color: rgba(255,255,255,0.92); }
.acmp-niveles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: var(--space-5);
}
.acmp-nivel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: var(--acmp-gray);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.acmp-nivel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.acmp-nivel-live {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acmp-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard);
}
.acmp-nivel-live:hover { background: var(--acmp-orange-700); }
.acmp-nivel-live .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: acmp-live-pulse 1.6s var(--ease-standard) infinite;
}
@keyframes acmp-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.acmp-nivel-kicker {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acmp-orange);
  margin: 22px 0 6px;
}
.acmp-nivel-title {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
  margin: 22px 0 12px;
}
.acmp-nivel-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 24px;
  flex: 0 1 auto;
}
.acmp-nivel-card .acmp-btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
@media (max-width: 920px) {
  .acmp-niveles-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .acmp-niveles { padding: 32px 20px 48px; }
  .acmp-nivel-card { padding: var(--space-5); }
  .acmp-nivel-title { font-size: 21px; }
  .acmp-nivel-desc { font-size: 13px; }
  .acmp-nivel-live { font-size: 11px; padding: 6px 12px; }
  .acmp-nivel-card .acmp-btn-primary { font-size: 13px; }
}

/* ===== Seguí entrenando — featured course ===== */
.acmp-featured {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px 88px;
}
.acmp-featured-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--acmp-gray);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.acmp-featured-media {
  background: var(--acmp-gray);
}
.acmp-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acmp-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-8) var(--space-8);
  gap: var(--space-4);
}
.acmp-featured-authors {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--acmp-orange);
}
.acmp-featured-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  max-width: 46ch;
}
.acmp-featured-cta {
  margin-top: var(--space-2);
  text-decoration: none;
}
@media (max-width: 860px) {
  .acmp-featured { padding: 16px 20px 64px; }
  .acmp-featured-card { grid-template-columns: 1fr; }
  .acmp-featured-media { aspect-ratio: 706 / 400; }
  .acmp-featured-body { padding: var(--space-6); align-items: center; text-align: center; }
  .acmp-featured-desc { font-size: 15.5px; }
}

/* ===== Somos una academia de comunicaci\u00f3n (carrusel + texto) ===== */
.acmp-comunica {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px 72px;
}
.acmp-comunica-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--space-8);
  align-items: center;
}
.acmp-comunica-text h2.acmp-comunica-title {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--acmp-navy);
  margin: 0 0 20px;
  text-align: left;
  text-wrap: normal;
}
.acmp-comunica-text h2.acmp-comunica-title .kw { color: var(--acmp-orange); letter-spacing: -0.03em; }
.acmp-comunica-text p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--fg-2);
  margin: 0 0 16px;
  max-width: 52ch;
}
.acmp-comunica-lead {
  font-weight: 600;
  color: var(--fg-1) !important;
}
.acmp-comunica-emph {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: 19px !important;
  line-height: 1.3 !important;
  color: var(--acmp-navy) !important;
  margin: 22px 0 18px !important;
}
.acmp-comunica-close {
  font-family: var(--font-section);
  font-size: 20px !important;
  line-height: 1.3 !important;
  color: var(--acmp-navy) !important;
  margin: 0 !important;
}
.acmp-comunica-close strong { color: var(--acmp-orange); font-weight: 700; }

/* Carousel */
.acmp-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--acmp-gray);
}
.acmp-carousel-track {
  display: flex;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-standard);
}
.acmp-carousel-slide {
  min-width: 100%;
  height: 100%;
}
.acmp-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acmp-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--acmp-navy);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}
.acmp-carousel-arrow:hover { background: var(--acmp-orange); color: #fff; }
.acmp-carousel-prev { left: 14px; }
.acmp-carousel-next { right: 14px; }
.acmp-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.acmp-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard),
              width var(--dur-fast) var(--ease-standard);
}
.acmp-carousel-dot.is-active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--acmp-orange);
}
@media (max-width: 860px) {
  .acmp-comunica { padding: 16px 20px 56px; }
  .acmp-comunica-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .acmp-comunica-media { max-width: 440px; margin: 0 auto; width: 100%; }
  .acmp-carousel { aspect-ratio: 4 / 3; }
  .acmp-comunica-text { text-align: center; }
  .acmp-comunica-text h2.acmp-comunica-title { text-align: center; }
  .acmp-comunica-text p { font-size: 13px; margin-left: auto; margin-right: auto; }
}

/* ===== Comunidad — mobile: ocultar sub-texto y botón de perfil entre título y fotos ===== */
@media (max-width: 860px) {
  .acmp-community-sub { display: none; }
  .acmp-community-profile { display: none; }
}
