/* =========================================================
   CAPACITACIÓN OBLIGATORIA — CJI
   Diseño independiente, moderno y llamativo
   ========================================================= */

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

html { scroll-behavior: smooth; }

/* ============ VARIABLES ============ */
:root {
  --verde: #2e7d32;
  --verde-claro: #43a047;
  --verde-brillo: #66bb6a;
  --verde-oscuro: #1b5e20;
  --dorado: #c9a95b;
  --dorado-brillo: #e8c87a;
  --dorado-oscuro: #8f7432;

  --gris-fondo: #f4f7f5;
  --gris-100: #f8fafb;
  --gris-200: #e5ebe7;
  --gris-300: #cfd8d3;
  --texto: #1a2e22;
  --texto-suave: #4b5c52;
  --muted: #728377;
  --white: #ffffff;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 8px rgba(16, 43, 24, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 43, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 43, 24, 0.18);
  --shadow-green: 0 16px 40px rgba(46, 125, 50, 0.28);
  --shadow-gold: 0 16px 40px rgba(201, 169, 91, 0.28);

  --grad-verde: linear-gradient(135deg, #43a047 0%, #2e7d32 55%, #1b5e20 100%);
  --grad-dorado: linear-gradient(135deg, #e8c87a 0%, #c9a95b 55%, #8f7432 100%);
  --grad-hero: linear-gradient(120deg, rgba(10, 16, 22, 0.72) 0%, rgba(20, 28, 36, 0.45) 50%, rgba(10, 16, 22, 0.72) 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);

  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ============ BASE ============ */
html, body { height: 100%; }

body {
  font-family: var(--font-display);
  background:
    radial-gradient(1100px 560px at -10% -20%, #e8f9ed 0%, transparent 70%),
    radial-gradient(900px 480px at 110% 110%, #eef6f1 0%, transparent 65%),
    var(--gris-fondo);
  color: var(--texto);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

::selection { background: var(--verde); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gris-200); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--verde-claro), var(--verde-oscuro));
  border-radius: 10px;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: #ffffff;
  color: var(--verde-oscuro);
  padding: 10px 0;
  border-bottom: 1px solid var(--gris-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(6px);
}

.top-bar .container {
  width: min(1220px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.top-bar .container img {
  width: 170px;
  max-width: 45%;
  transition: transform 0.3s ease;
}
.top-bar .container img:hover { transform: scale(1.04); }

.pbx-numbers {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  background: var(--grad-verde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  background: url("img/slider1.jpg") center/cover no-repeat fixed;
  display: grid;
  place-items: center;
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 91, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  padding: 20px 16px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: fadeUp 1.1s ease both;
}

.hero-kicker {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 22px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: pulseKicker 3s ease-in-out infinite;
}

@keyframes pulseKicker {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 91, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(201, 169, 91, 0); }
}

.hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
  max-width: 1100px;
}

.hero-title span {
  background: var(--grad-dorado);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 10px auto 0;
  width: min(1100px, 100%);
  text-align: left;
  display: grid;
  gap: 16px;
}

.hero-benefits li {
  position: relative;
  padding: 14px 18px 14px 62px;
  line-height: 1.5;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  color: #f2faf3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-benefits li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(201, 169, 91, 0.6);
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--grad-dorado);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(201, 169, 91, 0.4);
}

.hero-benefits li::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #ffffff;
  -webkit-mask: url("img/chulo.png") no-repeat center / 60%;
          mask: url("img/chulo.png") no-repeat center / 60%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.scroll-hint {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-top: 16px;
  font-weight: 800;
  opacity: 1;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
  animation: bounce 2.2s infinite;
  letter-spacing: 0.8px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============ FORM SHELL (IMAGEN + IFRAME) ============ */
.container.form-shell {
  margin: -90px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: min(1180px, 94vw);
  position: relative;
  z-index: 10;
}

.form-shell {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(46, 125, 50, 0.08);
  position: relative;
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 85%, rgba(201, 169, 91, 0.12));
  pointer-events: none;
  z-index: 1;
}

.form-shell .dots,
.form-shell .dot { display: none !important; }

/* Panel izquierdo (imagen) */
.form-shell .left {
  padding: 0 !important;
  background: none !important;
}

.form-shell .left.left-static {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: linear-gradient(135deg, #f8fbf9 0%, #e8f3eb 100%);
  overflow: hidden;
  position: relative;
}

.form-shell .left.left-static::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(46, 125, 50, 0.08), transparent 60%);
  pointer-events: none;
}

.form-shell .left.left-static .img-form-left {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  transition: transform 0.6s ease;
}
.form-shell .left.left-static:hover .img-form-left { transform: scale(1.03); }

/* Panel derecho (iframe) */
.form-shell .right.iframe-right {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: var(--grad-soft);
}

.form-shell .right.iframe-right iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

/* ============ PROMO BANNER ============ */
.promocion-bg {
  margin: 80px 0;
  width: 100%;
  background: transparent;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* ============ INSCRIPCIÓN (fondo verde) ============ */
.inscripcion-bg {
  width: 100%;
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 169, 91, 0.25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(46, 125, 50, 0.35), transparent 45%),
    var(--grad-verde);
  position: relative;
  overflow: hidden;
}

.inscripcion-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 40px,
    rgba(255, 255, 255, 0.03) 40px,
    rgba(255, 255, 255, 0.03) 80px
  );
  pointer-events: none;
  animation: slideStripes 20s linear infinite;
}

@keyframes slideStripes {
  from { transform: translate(0, 0); }
  to { transform: translate(80px, 80px); }
}

.inscripcion-bg .container.form-shell {
  margin: 0 auto;
}

.inscripcion-titulo {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 40px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.promocion {
  width: min(1180px, 92vw);
  margin: 0 auto;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.promocion:hover { transform: translateY(-6px) scale(1.01); }

.promocion img { width: 100%; }

/* ============ TÍTULOS DE SECCIÓN ============ */
center h1,
center h2,
.inversion h1,
.afiliados-container h2,
.contenido h1 {
  color: var(--verde-oscuro) !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 900 !important;
  text-align: center !important;
  position: relative;
  margin: 20px auto !important;
  padding-bottom: 18px;
  letter-spacing: 0.5px;
}

center h1::after,
center h2::after,
.inversion h1::after,
.afiliados-container h2::after,
.contenido h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: var(--grad-dorado);
  border-radius: 999px;
}

/* ============ CONTENIDO "QUÉ APRENDERÁ" + TEMARIO ============ */
.contenido {
  width: min(1180px, 92vw);
  margin: 60px auto;
  display: grid;
  gap: 28px;
}

.bloque {
  background: var(--white);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.bloque::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--grad-verde);
}

.bloque p {
  color: var(--texto-suave);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: justify;
}

.bloque-temario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.temario-col {
  background: var(--white);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temario-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.temario-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.temario-col li {
  list-style: none;
  position: relative;
  padding: 12px 14px 12px 46px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--texto-suave);
  background: var(--gris-100);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.temario-col li:hover {
  background: #effaf0;
  border-left-color: var(--verde);
  transform: translateX(4px);
}

.temario-col li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--grad-verde);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.35);
}

.temario-col li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #ffffff;
  -webkit-mask: url("img/chulo.png") no-repeat center / 60%;
          mask: url("img/chulo.png") no-repeat center / 60%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

/* ============ BLOQUE "INCLUYE" ============ */
.incluye {
  width: min(1180px, 92vw);
  margin: 40px auto 60px;
}

.incluye-box {
  background: var(--white);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 40px;
  position: relative;
  overflow: hidden;
}

.incluye-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 169, 91, 0.18), transparent 70%);
  pointer-events: none;
}

.incluye-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.incluye-box li {
  position: relative;
  padding: 14px 16px 14px 52px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--texto);
  background: var(--gris-100);
  border-radius: var(--radius);
  border: 1px solid var(--gris-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.incluye-box li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--verde-claro);
}

.incluye-box li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--grad-verde);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.4);
}

.incluye-box li::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #ffffff;
  -webkit-mask: url("img/chulo.png") no-repeat center / 60%;
          mask: url("img/chulo.png") no-repeat center / 60%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

@media (max-width: 768px) {
  .incluye-box ul { grid-template-columns: 1fr; }
  .incluye-box { padding: 24px 20px; }
}

/* ============ VIDEO ============ */
.video {
  width: min(1180px, 92vw);
  margin: 40px auto 60px;
}

.video-container {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 25% 25%, #e8fff0, #d6ebe1);
  border: 1px solid var(--gris-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ CONFERENCISTAS ============ */
.conferencistas {
  width: min(1180px, 92vw);
  margin: 80px auto;
  text-align: center;
}

.cards-conferencistas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.card-conf {
  background: var(--white);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 26px 24px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-conf::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--grad-dorado);
}

.card-conf:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--dorado);
}

.card-conf img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  margin-bottom: 18px;
  background: var(--gris-100);
  border-radius: var(--radius-lg);
  padding: 10px;
  transition: transform 0.4s ease;
}
.card-conf:hover img { transform: scale(1.04); }

.card-conf h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--verde-oscuro);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.card-conf h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dorado-oscuro);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-conf p {
  font-size: 0.92rem;
  color: var(--texto-suave);
  line-height: 1.6;
  text-align: justify;
}

/* ============ AFILIADOS (YouTube) ============ */
.afiliados-section {
  width: min(1180px, 92vw);
  margin: 80px auto;
  padding: 50px 30px;
  background: var(--white);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.afiliados-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.12), transparent 70%);
  pointer-events: none;
}
.afiliados-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201, 169, 91, 0.14), transparent 70%);
  pointer-events: none;
}

.afiliados-container { position: relative; z-index: 2; }

.afiliados-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.video-item {
  background: var(--white);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.video-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--grad-dorado);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.video-item:hover::before { opacity: 1; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ ANIMACIONES ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ RESPONSIVE ============ */

/* Tablet / pantallas medias */
@media (max-width: 992px) {
  .top-bar .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 8px 10px;
  }
  .top-bar .container img { width: 140px; }
  .pbx-numbers { font-size: 0.9rem; }

  .hero { min-height: 72vh; padding: 60px 0 40px; background-attachment: scroll; }
  .hero-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }

  .container.form-shell {
    width: min(95vw, 900px);
    margin-top: -60px;
  }

  .form-shell .right.iframe-right iframe { min-height: 500px; }

  .bloque-temario { grid-template-columns: 1fr; }
  .incluye-box ul { grid-template-columns: 1fr; }
  .cards-conferencistas { grid-template-columns: repeat(2, 1fr); }
  .card-conf img { height: 320px; }

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

/* Móvil */
@media (max-width: 768px) {
  .hero { min-height: 82vh; padding: 50px 0 40px; }
  .hero-content { gap: 16px; }
  .hero-title { font-size: 1.45rem; letter-spacing: 0.3px; }
  .hero-kicker { font-size: 0.78rem; letter-spacing: 2px; padding: 8px 16px; }
  .hero-benefits li {
    font-size: 0.9rem;
    padding: 12px 14px 12px 54px;
  }
  .hero-benefits li::before { width: 28px; height: 28px; left: 12px; }

  .container.form-shell {
    margin-top: -40px;
    width: 94vw;
  }
  .form-shell { flex-direction: column; border-radius: var(--radius-lg); }
  .form-shell .left, .form-shell .right { width: 100%; }

  .form-shell .left.left-static .img-form-left {
    width: 100%;
    height: auto;
    padding: 14px;
  }
  .form-shell .right.iframe-right iframe { min-height: 580px; }

  .promocion-bg { margin: 50px 0; padding: 60px 0; }

  .contenido, .incluye, .video, .conferencistas, .afiliados-section {
    width: 94vw;
  }

  .bloque { padding: 22px 20px; }
  .bloque p { font-size: 0.98rem; }

  .temario-col { padding: 20px 18px; }
  .temario-col li { font-size: 0.92rem; padding: 10px 12px 10px 42px; }
  .temario-col li::before { width: 20px; height: 20px; left: 10px; }

  .incluye-box { padding: 24px 20px; }

  .cards-conferencistas { grid-template-columns: 1fr; }
  .card-conf img { height: 280px; }

  .videos-grid { grid-template-columns: 1fr; gap: 20px; }
  .afiliados-section { padding: 30px 16px; }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .hero-title { font-size: 1.25rem; }
  .hero-kicker { font-size: 0.7rem; padding: 6px 12px; }
  .hero-benefits li { font-size: 0.85rem; }

  center h1, center h2, .inversion h1, .afiliados-container h2, .contenido h1 {
    font-size: 1.4rem !important;
  }

  .card-conf img { height: 240px; }
}

/* ============ REDUCIDO (modo accesibilidad) ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
