/* ===== Hero — más margen arriba y abajo ===== */.acmp-hero.acmp-hero-ingles {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }@media (max-width: 860px) {
    .acmp-hero.acmp-hero-ingles { margin-top: 48px !important; margin-bottom: 48px !important; }
  }
/* Hero de Academia en Inglés: el kit sangra la foto al 180% (presencia en las
   landings de curso), pero acá dominaba y pisaba el texto → contenida al marco. */
.acmp-hero-ingles .acmp-hero-art img.hero-photo {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}/* ===== Botones de "Elegí tu nivel" — mismo ancho que el texto descriptivo ===== */.acmp-nivel-card .acmp-btn {
    width: 100% !important;
    justify-content: center;
    max-width: none !important;
  }/* En mobile el botón se ajusta al texto y queda centrado, sin pegarse a los bordes */@media (max-width: 700px) {
    .acmp-nivel-card .acmp-btn {
      width: auto !important;
      align-self: center;
      padding-left: 28px !important;
      padding-right: 28px !important;
    }
  }
/* ===== Test de nivelación ===== */
.acmp-test-nivel { padding: 56px 0 72px; }
.acmp-test-nivel-cta { text-align: center; padding: 12px 28px 0; }

/* ===== Hero: el "giro" del título va en naranja (no navy) — firma del sistema =====
   La entrega usó .hero-navy (indefinida → heredaba navy); el diseño lo quiere
   en #f74604. El resto del H1 queda en su peso normal. */
.acmp-hero-h1-ingles .hero-navy {
  color: var(--acmp-orange) !important;
}

/* ===== "Elegí tu nivel": grid de cards uniformes (faltaba todo el CSS) ===== */
.acmp-niveles {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 72px;
}
.acmp-niveles .acmp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.acmp-niveles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.acmp-nivel-card {
  display: flex;
  flex-direction: column;
  background: var(--acmp-white, #fff);
  border: 1px solid var(--border-subtle, #e6e6e6);
  border-radius: var(--radius-lg, 20px);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(34,43,73,.08));
  padding: 28px 24px;
  height: 100%;
}
.acmp-nivel-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--acmp-navy, #222b49);
  color: var(--acmp-white, #fff);
  border: none;
  border-radius: var(--radius-pill, 999px);
  padding: 6px 14px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  cursor: pointer;
}
.acmp-nivel-live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d96b;
  display: inline-block;
}
.acmp-nivel-title {
  font-family: var(--font-section, 'Satoshi', 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--acmp-navy, #222b49);
  margin: 0 0 12px;
}
.acmp-nivel-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2, #4a4a4a);
  margin: 0 0 24px;
  flex: 1 1 auto;
}
.acmp-nivel-card .acmp-btn {
  margin-top: auto;
}
@media (max-width: 860px) {
  .acmp-niveles-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* ===== Sección "Somos una academia de comunicación" (faltaba todo el CSS) ===== */
.acmp-comunica {
  padding: 72px 0;
}
.acmp-comunica-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.acmp-comunica-text h2 {
  font-family: var(--font-section, 'Satoshi', 'Poppins', sans-serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--acmp-navy, #222b49);
  margin: 0 0 18px;
}
.acmp-comunica-text p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2, #4a4a4a);
  margin: 0 0 16px;
}
.acmp-comunica-emph {
  font-weight: 700;
  color: var(--acmp-navy, #222b49) !important;
}
.acmp-comunica-close {
  color: var(--acmp-navy, #222b49) !important;
}

/* Carrusel de la sección (track flex desplazado por translateX en el JS) */
.acmp-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 20px);
  box-shadow: var(--shadow-lg, 0 14px 32px rgba(34,43,73,.12));
  aspect-ratio: 4 / 3;
}
.acmp-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.acmp-carousel-slide {
  flex: 0 0 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: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--acmp-navy, #222b49);
  cursor: pointer;
  box-shadow: var(--shadow-md, 0 4px 12px rgba(34,43,73,.08));
}
.acmp-carousel-prev { left: 12px; }
.acmp-carousel-next { right: 12px; }
.acmp-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.acmp-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
}
.acmp-carousel-dot.is-active {
  background: var(--acmp-orange, #f74604);
}
@media (max-width: 860px) {
  .acmp-comunica-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== "Seguí entrenando" — card English for Impact (faltaba todo el CSS) ===== */
.acmp-featured {
  padding: 64px 24px;
}
.acmp-featured .acmp-section-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}
.acmp-featured-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--bg-page, #f2f2f2);
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 14px 32px rgba(34,43,73,.12));
}
.acmp-featured-media {
  min-height: 260px;
}
.acmp-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acmp-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 32px 30px;
}
.acmp-featured-authors {
  color: var(--acmp-navy, #222b49);
  font-weight: 700;
}
.acmp-featured-desc {
  color: var(--fg-2, #4a4a4a);
  line-height: 1.6;
  margin: 0;
}
.acmp-featured-cta {
  align-self: flex-start;
  margin-top: 6px;
}
@media (max-width: 760px) {
  .acmp-featured-card {
    grid-template-columns: 1fr;
  }
  .acmp-featured-media {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }
}
