/* ==========================================================================
   EPRO LANDING PAGE - ESTILOS CSS OFICIALES
   ========================================================================== */

/* FUENTES OFICIALES: BRADESCO SANS */
@font-face {
  font-family: 'Bradesco Sans';
  src: url('fonts/Bradesco Sans Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Bradesco Sans';
  src: url('fonts/Bradesco Sans.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bradesco Sans';
  src: url('fonts/Bradesco Sans Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Bradesco Sans';
  src: url('fonts/Bradesco Sans Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Bradesco Sans';
  src: url('fonts/Bradesco Sans Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* 1. VARIABLES & PALETA OFICIAL */
:root {
  /* Azules */
  --color-primary: #0965b6;        /* Azul principal (#0965b6) */
  --color-sec-blue-1: #1580b5;     /* Sec Azul - 1 (#1580b5) */
  --color-sec-blue-2: #09316b;     /* Sec Azul - 2 (#09316b) */
  --color-sec-blue-3: #071e3a;     /* Sec Azul - 3 / Navy (#071e3a) */
  
  /* Verdes */
  --color-secondary: #34b78e;      /* Verde principal (#34b78e) */
  --color-sec-green-1: #27ad80;    /* Sec Verde - 1 (#27ad80) */
  --color-sec-green-2: #1b966a;    /* Sec Verde - 2 (#1b966a) */
  --color-sec-green-3: #148459;    /* Sec Verde - 3 (#148459) */
  
  /* Neutros */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-grey-light: #dadfe5;     /* Gris principal (#dadfe5) */
  --color-sec-grey-1: #cbcfd1;     /* Sec Gris - 1 (#cbcfd1) */
  --color-sec-grey-2: #b8bbbc;     /* Sec Gris - 2 (#b8bbbc) */
  --color-sec-grey-3: #a7a8a8;     /* Sec Gris - 3 (#a7a8a8) */

  /* Tipografías Oficiales */
  --font-heading: 'Bradesco Sans', sans-serif;
  --font-body: 'Bradesco Sans', sans-serif;

  /* Sombras y transiciones */
  --shadow-sm: 0 4px 12px rgba(7, 30, 58, 0.05);
  --shadow-md: 0 10px 30px rgba(7, 30, 58, 0.08);
  --shadow-lg: 0 20px 40px rgba(7, 30, 58, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. RESET BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  background-color: #071e3a;
}

body {
  font-family: var(--font-body);
  font-weight: 300; /* Bradesco Sans Light */
  background-color: #fafbfc;
  color: var(--color-sec-blue-3);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 3. TIPOGRAFÍA & BOTONES */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700; /* Bradesco Sans Bold */
  color: var(--color-sec-blue-3);
  line-height: 1.2;
}

p {
  font-family: var(--font-body);
  font-weight: 300; /* Bradesco Sans Light */
  text-align: justify;
  text-justify: inter-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700; /* Bradesco Sans Bold */
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(52, 183, 142, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-sec-green-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 183, 142, 0.45);
}

.btn-secondary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(9, 101, 182, 0.25);
}

.btn-secondary:hover {
  background-color: var(--color-sec-blue-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 101, 182, 0.4);
}

/* 4. NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--color-sec-blue-3);
  padding: 18px 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-cta {
  display: flex;
  align-items: center;
}

.navbar-cta .btn {
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(52, 183, 142, 0.25);
}

.navbar-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(52, 183, 142, 0.4);
}

.logo-img {
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-secondary);
}

/* Sandwich / Hamburger Toggle (Hidden by default on PC) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 120;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-white);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: var(--color-secondary);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: var(--color-secondary);
}

.mobile-menu-cta {
  display: none;
}

/* 5. HERO SECTION */
.hero {
  position: relative;
  background-image: url('public/hero epro.png');
  background-size: cover;
  background-position: center 26%;
  background-repeat: no-repeat;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 130px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 30, 58, 0.3);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content-center {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  text-align: center;
  line-height: 1.15;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 21px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: center !important;
  text-justify: auto !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-modalidad {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center !important;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* BLOQUE POTENCIADA POR */
.powered-by-section {
  background-color: var(--color-white);
  padding: 30px 0;
  border-bottom: 1px solid #edf1f5;
}

.powered-by-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.powered-logo-epro {
  height: 32px;
  object-fit: contain;
}

.powered-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #0965b6;
}

.powered-logo-epmc {
  height: 42px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .powered-by-container {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .powered-logo-epro {
    height: 22px;
  }
  .powered-text {
    font-size: 13px;
    white-space: nowrap;
  }
  .powered-logo-epmc {
    height: 28px;
  }
}

/* BLOQUE FORMACIÓN Y ESTÁNDARES (DEGRADADO PRINCIPAL) */
.standards-section {
  background: linear-gradient(135deg, #27ad80 0%, #1b966a 20%, #1580b5 55%, #0965b6 80%, #071e3a 100%);
  padding: 80px 0 60px 0;
  color: var(--color-white);
  position: relative;
}

.standards-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.standards-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.standards-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }
}

.standard-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  background-color: #0965b6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0965b6;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 14.5px;
  color: #556275;
  line-height: 1.5;
  margin-bottom: 28px;
  flex-grow: 1;
}

.btn-card-action {
  background-color: #dadfe5;
  color: var(--color-sec-blue-3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 32px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #cbcfd1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.btn-card-action:hover {
  background-color: #cbcfd1;
  transform: translateY(-2px);
}

/* Descarga Guía Wrap */
.standards-download-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  gap: 14px;
  width: 100%;
}

.download-guide-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center !important;
  text-justify: auto !important;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4;
}

.btn-download-guide {
  background-color: #27ad80;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(39, 173, 128, 0.3);
  transition: var(--transition);
}

.btn-download-guide:hover {
  background-color: #1b966a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(39, 173, 128, 0.45);
}

/* 6. CAPM CERTIFICATION BLOCK (DEGRADADO CORPORATIVO) */
.capm-section {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 55%, #0965b6 100%);
  padding: 90px 0 60px 0;
  color: var(--color-white);
  position: relative;
}

.capm-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.capm-main-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
  max-width: 850px;
  margin: 0 auto;
}

.capm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.capm-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.capm-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.capm-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.capm-visual:hover img {
  transform: scale(1.06);
}

.capm-info {
  display: flex;
  flex-direction: column;
}

.capm-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.capm-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 18px;
  line-height: 1.3;
}

.capm-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.capm-requirement-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

/* Acordeón CAPM */
.capm-accordion {
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 12px;
}

.capm-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  padding: 6px 0;
  text-align: left;
}

.accordion-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: #0965b6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.capm-accordion.active .accordion-arrow-circle {
  transform: rotate(180deg);
}

.capm-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capm-accordion.active .capm-accordion-content {
  max-height: 600px;
}

.capm-accordion-body {
  padding-top: 14px;
}

.capm-reasons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capm-reasons-list li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.capm-reasons-list li strong {
  font-weight: 700;
  color: var(--color-white);
  margin-right: 4px;
}

.capm-roles-sublist {
  list-style: none;
  padding-left: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.capm-roles-sublist li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.capm-cta-wrap {
  margin-top: 10px;
}

.btn-capm-program {
  display: inline-block;
  background-color: #dadfe5;
  color: var(--color-sec-blue-3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 36px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.btn-capm-program:hover {
  background-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* BLOQUE PMP */
.pmp-section {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 55%, #0965b6 100%);
  padding: 50px 0 50px 0;
  color: var(--color-white);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* BLOQUE PMI-CP */
.pmicp-section {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 55%, #0965b6 100%);
  padding: 50px 0 100px 0;
  color: var(--color-white);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* 6. SECCIÓN PROFESORES Y MENTORES */
.teachers-section {
  background-color: var(--color-white);
  padding: 90px 0 100px 0;
  border-top: 1px solid #edf1f5;
}

.teachers-header {
  text-align: center;
  margin-bottom: 60px;
}

.teachers-title {
  font-size: 38px;
  font-weight: 700;
  color: #0965b6;
  letter-spacing: -0.5px;
}

.teachers-grid-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.teachers-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .teachers-grid-top,
  .teachers-grid-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .teachers-grid-top,
  .teachers-grid-bottom {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 10px !important;
    align-items: stretch !important;
  }

  .teachers-grid-bottom {
    margin-top: 20px !important;
  }

  /* Fernando Romero solo y centrado arriba */
  .teachers-grid-top .teacher-card:first-child {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: 100% !important;
    max-width: 240px !important;
    margin-bottom: 6px !important;
  }

  .teachers-grid-top .teacher-card:first-child .teacher-photo-wrap {
    width: 90px !important;
    height: 90px !important;
  }

  .teachers-grid-top .teacher-card:first-child .teacher-name {
    font-size: 13.5px !important;
    min-height: auto !important;
  }

  .teachers-grid-top .teacher-card:first-child .teacher-role {
    min-height: auto !important;
    margin-bottom: 6px !important;
  }

  .teacher-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    height: 100%;
    padding: 0 4px;
  }

  .teacher-photo-wrap {
    width: 75px !important;
    height: 75px !important;
    margin-bottom: 8px !important;
    flex-shrink: 0;
  }

  .teacher-name {
    font-size: 11px !important;
    line-height: 1.15 !important;
    margin-bottom: 4px !important;
    text-align: center !important;
    min-height: 24px !important;
    white-space: nowrap !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .teacher-role {
    font-size: 9px !important;
    min-height: 44px !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    text-justify: auto !important;
    color: #556275;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .teacher-linkedin {
    margin-top: auto;
  }

  .teacher-linkedin svg {
    width: 16px;
    height: 16px;
  }
}

.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teacher-photo-wrap {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(9, 101, 182, 0.12);
  border: 3px solid #ffffff;
  transition: var(--transition);
}

.teacher-card:hover .teacher-photo-wrap {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(9, 101, 182, 0.22);
}

.teacher-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teacher-name {
  font-size: 17px;
  font-weight: 700;
  color: #0965b6;
  margin-bottom: 8px;
  line-height: 1.25;
}

.teacher-role {
  font-size: 13px;
  font-weight: 300;
  color: #556275;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 48px;
}

.teacher-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0965b6;
  transition: var(--transition);
}

.teacher-linkedin:hover {
  color: #071e3a;
  transform: scale(1.15);
}

/* 7. SECCIÓN TESTIMONIOS (DEGRADADO PRINCIPAL) */
.testimonials-section {
  background: linear-gradient(135deg, #27ad80 0%, #1b966a 20%, #1580b5 55%, #0965b6 80%, #071e3a 100%);
  padding: 90px 0 110px 0;
  color: var(--color-white);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.testimonial-card {
  background-color: #dadfe5;
  border: 1px solid #cbcfd1;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background-color: #e4e8ec;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.testimonial-quote-icon {
  color: #0965b6;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: #071e3a;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-author {
  border-top: 1px solid #cbcfd1;
  padding-top: 14px;
}

.author-name {
  font-size: 16.5px;
  font-weight: 700;
  color: #0965b6;
  margin-bottom: 3px;
}

.author-role {
  font-size: 13px;
  font-weight: 300;
  color: #556275;
}

/* 8. SECCIÓN CLIENTES / EMPRESAS */
.clients-section {
  background-color: var(--color-white);
  padding: 80px 0 90px 0;
  border-top: 1px solid #edf1f5;
}

.clients-header {
  text-align: center;
  margin-bottom: 45px;
}

.clients-title {
  font-size: 38px;
  font-weight: 700;
  color: #0965b6;
  letter-spacing: -0.5px;
}

.clients-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.clients-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 9. FOOTER (MISMO FONDO QUE TESTIMONIOS - DEGRADADO PRINCIPAL) */
.footer {
  background: linear-gradient(135deg, #27ad80 0%, #1b966a 20%, #1580b5 55%, #0965b6 80%, #071e3a 100%);
  color: var(--color-white);
  padding: 80px 0 35px 0;
  position: relative;
  margin-top: auto;
}

/* 1. Fila Superior */
.footer-top-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.footer-top-left {
  grid-column: 1 / 4;
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-top-logo {
  height: 65px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-top-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.footer-top-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.footer-top-right {
  grid-column: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.whatsapp-btn {
  background-color: #25D366;
}

.linkedin-btn {
  background-color: #0A66C2;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.footer-copy-text {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-white);
}

.footer-top-epmc-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-top-epmc-link:hover {
  transform: translateY(3px);
  color: #ffffff;
}

/* Línea Separadora Horizontal */
.footer-divider-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 45px 0 40px 0;
}

/* 2. Fila Media: 4 Columnas */
.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-top-left {
    flex-direction: column;
    text-align: center;
  }
  .footer-top-divider {
    display: none;
  }
  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.footer-col-heading {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.col-heading-line {
  width: 34px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  margin: 10px 0 18px 0;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links-list li a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.link-plus {
  font-weight: 700;
  color: var(--color-secondary);
}

/* Columna E+PMC */
.footer-mobile-socials {
  display: none;
}

.footer-epmc-col {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
  min-height: 120px;
}

.footer-epmc-brand-link {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.footer-epmc-large-img {
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.footer-epmc-brand-link:hover .footer-epmc-large-img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* 3. Barra Inferior */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-developer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-developer:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.developer-logo {
  height: 30px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   10. ESTILOS DE LA PÁGINA DE CURSOS (/cursosepro)
   ========================================================================== */
.courses-hero {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 50%, #0965b6 100%);
  padding: 140px 0 70px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
}

.courses-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, #f4f7fa, transparent);
}

.courses-hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.courses-badge {
  display: inline-block;
  background: rgba(39, 173, 128, 0.2);
  border: 1px solid var(--color-secondary);
  color: #5ce6b8;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.courses-hero-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.courses-hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.courses-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 580px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.courses-search-bar svg {
  color: #0965b6;
  flex-shrink: 0;
}

.courses-search-bar input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #071e3a;
  background: transparent;
}

.courses-search-bar input::placeholder {
  color: #8c9ba5;
  font-weight: 300;
}

/* Sección de la Tabla */
.courses-table-section {
  background-color: #f4f7fa;
  padding: 50px 0 90px 0;
}

.table-container-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(9, 49, 107, 0.08);
  border: 1px solid #e1e8f0;
}

.table-header-banner {
  background: linear-gradient(135deg, #148459 0%, #1b966a 30%, #27ad80 70%, #1580b5 100%);
  color: var(--color-white);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-header-banner h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.courses-count-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

.table-responsive-wrapper {
  overflow-x: auto;
}

.epro-courses-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.epro-courses-table thead tr {
  background-color: #09316b;
  color: var(--color-white);
}

.epro-courses-table thead th {
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-bottom: 2px solid #071e3a;
}

.epro-courses-table tbody tr {
  border-bottom: 1px solid #e7ecf2;
  transition: all 0.2s ease-in-out;
}

.epro-courses-table tbody tr:nth-child(even) {
  background-color: #f9fbfd;
}

.epro-courses-table tbody tr:hover {
  background-color: #eef6fc;
  box-shadow: inset 4px 0 0 #0965b6;
}

.course-name-cell {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #0965b6;
  line-height: 1.45;
  vertical-align: top;
}

.course-obj-cell {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: #435164;
  line-height: 1.6;
  vertical-align: top;
}

.course-obj-cell em {
  display: block;
  margin-top: 8px;
  color: #27ad80;
  font-weight: 400;
  font-style: normal;
}

.course-hours-cell {
  padding: 20px 24px;
  text-align: center;
  vertical-align: middle;
}

.pdu-pill {
  display: inline-block;
  background-color: #e8f7f2;
  color: #148459;
  border: 1px solid #a6e5d2;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.3;
}

/* Box CTA en el Catálogo */
.courses-cta-box {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 70%, #0965b6 100%);
  color: var(--color-white);
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #e1e8f0;
}

@media (max-width: 860px) {
  .courses-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

.cta-info h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-white);
}

.cta-info p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-info strong {
  color: #5ce6b8;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn-courses-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-courses-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

/* ==========================================================================
   11. ESTILOS DE CONTACTO & FAQ (/faq)
   ========================================================================== */
.contact-section {
  background-color: var(--color-white);
  padding: 80px 0 60px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-main-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #0965b6;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.contact-main-subtitle {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 300;
  color: #556275;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.contact-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(9, 49, 107, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(9, 101, 182, 0.12);
  border-color: #cbdcf0;
  background: #ffffff;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(9, 101, 182, 0.1);
  color: #0965b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
  background: #0965b6;
  color: #ffffff;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #0965b6;
  margin-bottom: 12px;
}

.contact-card-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #0965b6;
  text-decoration: none;
  background: #edf5fc;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-email-link:hover {
  background: #0965b6;
  color: #ffffff;
  transform: scale(1.03);
}

.contact-whatsapp-wrap {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-whatsapp-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.contact-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(52, 183, 142, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-mail-btn:hover {
  background-color: var(--color-sec-green-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(52, 183, 142, 0.35);
}

/* Sección de FAQ */
.faq-section {
  background: linear-gradient(135deg, #09316b 0%, #1580b5 60%, #0965b6 100%);
  padding: 85px 0 100px 0;
  color: var(--color-white);
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.faq-card.active {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.faq-trigger {
  width: 100%;
  padding: 20px 26px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 20px;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #071e3a;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-card.active .faq-question,
.faq-trigger:hover .faq-question {
  color: #0965b6;
}

.faq-arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef4fb;
  color: #0965b6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
}

.faq-card.active .faq-arrow-icon {
  transform: rotate(180deg);
  background: #0965b6;
  color: #ffffff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-content {
  max-height: 400px;
}

.faq-body {
  padding: 0 26px 22px 26px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.65;
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
}

.faq-body p:not(:last-child) {
  margin-bottom: 12px;
}

/* ==========================================================================
   12. ESTILOS DE PROGRAMAS INDIVIDUALES (/capm, /pmp, /pmicp)
   ========================================================================== */
.program-hero {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 50%, #0965b6 100%);
  padding: 130px 0 80px 0;
  color: var(--color-white);
  position: relative;
}

.program-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .program-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.program-badges-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 173, 128, 0.2);
  border: 1px solid var(--color-secondary);
  color: #5ce6b8;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 30px;
  text-transform: uppercase;
}

.upcoming-badge {
  background: rgba(255, 193, 7, 0.18);
  border: 1px solid rgba(255, 193, 7, 0.6);
  color: #ffd043;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffd043;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #ffd043;
  animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.program-hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.program-hero-lead {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #5ce6b8;
  margin-bottom: 16px;
  line-height: 1.4;
}

.program-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.program-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.program-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(39, 173, 128, 0.15);
  border: 1px solid rgba(52, 183, 142, 0.38);
  color: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  margin-top: 24px;
  line-height: 1.45;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.program-guarantee-note svg {
  color: #5ce6b8;
  flex-shrink: 0;
}

.program-guarantee-note strong {
  font-weight: 700;
  color: #5ce6b8;
}

@media (max-width: 992px) {
  .program-hero-actions {
    justify-content: center;
  }
  .program-guarantee-note {
    text-align: left;
  }
}

.program-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #000000;
}

.program-video-player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  outline: none;
  background-color: #000000;
}

.program-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.program-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(7, 30, 58, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.program-floating-badge svg {
  color: #27ad80;
}

/* Sección de Propuesta de Valor (Overview) */
.program-overview-section {
  background-color: #f4f7fa;
  padding: 70px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

@media (max-width: 850px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

.overview-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(9, 49, 107, 0.07);
  border: 1px solid #e1e8f0;
  display: flex;
  flex-direction: column;
}

.learn-card {
  border-top: 4px solid var(--color-secondary);
}

.include-card {
  border-top: 4px solid var(--color-primary);
}

.overview-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.overview-card-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #071e3a;
  margin: 0;
}

.overview-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.green-badge {
  background: rgba(39, 173, 128, 0.12);
  color: #1b966a;
}

.blue-badge {
  background: rgba(9, 101, 182, 0.12);
  color: #0965b6;
}

.overview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6f7f2;
  color: #148459;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.overview-list li p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

.overview-list li p strong {
  font-weight: 700;
  color: #071e3a;
}

/* Sección de Contenido Modular */
.program-curriculum-section {
  background-color: var(--color-white);
  padding: 85px 0;
}

.curriculum-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.curriculum-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #0965b6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.curriculum-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: #071e3a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.curriculum-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #556275;
}

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

@media (max-width: 768px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}

.curriculum-item {
  background: #f8fafc;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.curriculum-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(9, 101, 182, 0.08);
  border-color: #cbdcf0;
  background: #ffffff;
}

.module-number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #0965b6;
  background: #edf5fc;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #071e3a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.module-info p {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: #556275;
  line-height: 1.5;
  margin: 0;
}

.highlight-module {
  background: linear-gradient(135deg, rgba(39, 173, 128, 0.08) 0%, rgba(9, 101, 182, 0.08) 100%);
  border-color: #a8e3d0;
}

.highlight-module .module-number {
  background: #27ad80;
  color: #ffffff;
}

/* Sección de Acceso & Llamados a la Acción (Doble CTA) */
.program-cta-section {
  background: linear-gradient(135deg, #071e3a 0%, #09316b 60%, #0965b6 100%);
  padding: 85px 0;
  color: var(--color-white);
}

.cta-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .cta-cards-container {
    grid-template-columns: 1fr;
  }
}

.program-action-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px 35px;
  color: #071e3a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.free-tag {
  background: #e8f7f2;
  color: #148459;
}

.premium-tag {
  background: #edf5fc;
  color: #0965b6;
}

.action-card-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #071e3a;
  margin-bottom: 12px;
}

.action-card-header p {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: #556275;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-price-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 25px;
  border: 1px dashed #cbd5e1;
}

.price-status {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #0965b6;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
}

.action-subtext {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  color: #64748b;
  text-align: center;
  margin-top: 12px;
}

/* 8. RESPONSIVE ADAPTATIONS */
@media (max-width: 992px) {
  .hero-container, .capm-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .capm-badge-requirement {
    margin-left: auto;
    margin-right: auto;
  }

  .reasons-list {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 70%;
    max-width: 280px;
    background: rgba(7, 30, 58, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 0 16px;
    box-shadow: -8px 16px 30px rgba(0, 0, 0, 0.45);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0 18px;
    gap: 8px;
  }

  .navbar-nav.active {
    max-height: 380px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 18px 20px 18px;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 7px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-white);
  }

  .nav-link:hover, .nav-link.active {
    color: var(--color-secondary);
    border-bottom-color: rgba(52, 183, 142, 0.4);
  }

  .mobile-menu-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
  }

  .btn-mobile-cta {
    width: auto;
    min-width: 150px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
  }

  /* Encuadre equilibrado de imagen Hero en Móvil */
  .hero {
    background-position: 36% center !important;
    min-height: 480px !important;
    padding: 75px 0 !important;
  }

  /* ==========================================================================
     TIPOGRAFÍA UNIFICADA Y PROPORCIONADA PARA MÓVIL (≤ 768px)
     ========================================================================== */
  /* 1. Títulos Principales de Bloques / Secciones */
  .hero-title,
  .standards-title,
  .capm-main-title,
  .capm-title,
  .section-title,
  .teachers-title,
  .testimonials-title,
  .clients-title,
  .clients-block-title,
  .contact-main-title,
  .faq-title,
  .program-hero-title,
  .courses-main-title,
  .curriculum-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 12px !important;
  }

  .capm-section-header,
  .standards-header,
  .teachers-header,
  .testimonials-header,
  .clients-header,
  .clients-block-header {
    margin-bottom: 28px !important;
  }

  .hero-description {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    text-align: center !important;
    text-justify: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 340px !important;
  }

  .hero-modalidad {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #ffffff !important;
  }

  .standards-subtitle,
  .capm-subtitle,
  .capm-text,
  .teachers-desc,
  .testimonials-subtitle,
  .clients-block-desc,
  .contact-main-subtitle,
  .faq-subtitle,
  .program-hero-lead,
  .program-hero-desc,
  .courses-main-subtitle,
  .curriculum-subtitle {
    font-size: 14.5px !important;
    font-weight: 300 !important;
    line-height: 1.55 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
  }

  /* 3. Títulos Internos de Tarjetas y Acordeones */
  .card-title,
  .contact-card-title,
  .overview-card-header h3,
  .module-info h4,
  .teacher-name {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  /* FAQ Móvil con letra más pequeña y compacta */
  .faq-section {
    padding: 45px 0 60px 0 !important;
  }

  .faq-header {
    margin-bottom: 25px !important;
  }

  .faq-subtitle {
    text-align: center !important;
    text-justify: auto !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .faq-list {
    gap: 10px !important;
  }

  .faq-card {
    border-radius: 10px !important;
  }

  .faq-trigger {
    padding: 13px 15px !important;
    gap: 10px !important;
  }

  .faq-question {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
  }

  .faq-arrow-icon {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
  }

  .faq-arrow-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .faq-body {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    padding: 0 15px 15px 15px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
  }

  /* 4. Textos de Contenido de Tarjetas / Listas */
  .card-desc,
  .contact-card-text,
  .overview-list li p,
  .module-info p,
  .capm-reasons-list li,
  .testimonial-text {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
  }

  /* 5. Carrusel Horizontal de Testimonios Móvil */
  .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 6px 16px 18px 16px !important;
    margin: 0 -24px !important;
    scrollbar-width: none !important;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testimonial-card {
    flex: 0 0 80% !important;
    max-width: 270px !important;
    scroll-snap-align: center !important;
    padding: 18px 16px !important;
    border-radius: 14px !important;
  }

  .testimonial-quote-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .testimonial-quote-icon {
    margin-bottom: 8px !important;
  }

  .testimonial-text {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .author-name {
    font-size: 13.5px !important;
    margin-bottom: 2px !important;
  }

  .author-role {
    font-size: 11px !important;
  }

  /* 6. Footer Móvil Centrado con Redes sobre Logo E+PMC */
  .desktop-only {
    display: none !important;
  }

  .footer-top-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .footer-top-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .footer-top-logo {
    height: 52px !important;
    max-width: 220px !important;
    width: auto !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
  }

  .footer-top-divider {
    display: none !important;
  }

  .footer-top-desc {
    text-align: center !important;
    text-justify: auto !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    max-width: 320px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .footer-divider-line {
    width: 100% !important;
    margin: 28px auto 32px auto !important;
  }

  .footer-epmc-col {
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-left: 0 !important;
    padding-top: 30px !important;
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
    min-height: auto !important;
  }

  .footer-mobile-socials {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .footer-mobile-socials .footer-social-icons {
    display: flex !important;
    gap: 14px !important;
    justify-content: center !important;
  }

  .footer-mobile-socials .footer-copy-text {
    font-size: 12.5px !important;
    color: var(--color-white) !important;
    margin: 2px 0 0 0 !important;
  }

  .footer-mobile-socials .footer-top-epmc-link {
    font-size: 13px !important;
    color: var(--color-white) !important;
    margin-bottom: 2px !important;
  }

  .footer-epmc-large-img {
    max-width: 190px !important;
    margin: 0 auto !important;
  }

  /* Catálogo de Cursos / Tabla en formato acordeón móvil */
  .courses-hero {
    padding: 95px 0 45px 0 !important;
  }

  .courses-hero-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .courses-hero-subtitle {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    text-align: center !important;
    text-justify: auto !important;
    max-width: 320px !important;
    margin: 0 auto 20px auto !important;
  }

  .courses-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 12px !important;
  }

  .courses-search-bar {
    padding: 8px 16px !important;
    max-width: 100% !important;
  }

  .courses-search-bar input {
    font-size: 13.5px !important;
  }

  .courses-table-section {
    padding: 30px 0 60px 0 !important;
  }

  .table-header-banner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 15px 16px !important;
    gap: 10px !important;
    border-radius: 0 !important;
  }

  .table-header-banner h3 {
    font-size: 14.5px !important;
    line-height: 1.4 !important;
  }

  .table-container-card {
    border-radius: 12px !important;
  }

  .epro-courses-table thead {
    display: none !important;
  }

  .epro-courses-table,
  .epro-courses-table tbody,
  .epro-courses-table tr {
    display: block !important;
    width: 100% !important;
  }

  .epro-courses-table tr {
    background: #ffffff !important;
    border-radius: 12px !important;
    margin: 12px 14px !important;
    width: calc(100% - 28px) !important;
    padding: 15px 16px !important;
    border: 1px solid #e1e8f0 !important;
    box-shadow: 0 4px 12px rgba(9, 49, 107, 0.04) !important;
    position: relative !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .epro-courses-table tr:hover {
    background-color: #f8fafc !important;
  }

  .course-name-cell {
    display: block !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0965b6 !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
    line-height: 1.45 !important;
    text-align: left !important;
    border: none !important;
  }

  .course-hours-cell {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    border: none !important;
    margin-bottom: 4px !important;
    text-align: left !important;
  }

  .course-hours-cell::before {
    content: "Hrs/PDU: " !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    color: #4a5568 !important;
    margin-right: 6px !important;
  }

  .pdu-pill {
    font-size: 12px !important;
    padding: 3px 10px !important;
    border-radius: 12px !important;
    display: inline-block !important;
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.35 !important;
  }

  .course-obj-cell {
    display: none !important;
    margin-top: 12px !important;
    border-top: 1px dashed #e2e8f0 !important;
    padding: 10px 0 0 0 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    color: #556275 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    border-bottom: none !important;
  }

  /* Indicador desplegable en móvil */
  .epro-courses-table tr::after {
    content: "Ver objetivo \25BE";
    display: block !important;
    font-family: var(--font-heading) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #27ad80 !important;
    margin-top: 8px !important;
    text-align: right !important;
  }

  .epro-courses-table tr.expanded::after {
    content: "Ocultar \25B4" !important;
    color: #556275 !important;
  }

  .epro-courses-table tr.expanded .course-obj-cell {
    display: block !important;
  }

  .courses-cta-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 30px 20px !important;
    gap: 20px !important;
  }

  .cta-actions {
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* Reposicionamiento del badge "no requiere experiencia" en móvil */
  .program-floating-badge {
    position: static !important;
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(7, 30, 58, 0.95) !important;
    padding: 12px 16px !important;
    justify-content: center !important;
    font-size: 12.5px !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Botón de WhatsApp más pequeño en el Hero del Programa */
  .program-hero-actions .btn {
    padding: 10px 24px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    min-width: 145px !important;
    box-shadow: 0 4px 12px rgba(39, 173, 128, 0.2) !important;
  }
}

/* 13. SECCIÓN DE ADQUISICIÓN / PRICING */
.program-purchase-section {
  background-color: #f8fafc;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #edf2f7;
}

.purchase-card {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.purchase-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #27ad80;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.purchase-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #4a5568;
  max-width: 720px;
  margin-bottom: 30px;
  text-align: center !important;
  text-justify: auto !important;
}

.purchase-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 35px;
}

.original-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
}

.original-price del {
  color: #64748b;
  text-decoration: line-through;
}

.promo-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #0965b6;
}

.btn-purchase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #27ad80;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(39, 173, 128, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin-bottom: 24px;
}

.btn-purchase:hover {
  background-color: #1b966a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(39, 173, 128, 0.38);
  color: var(--color-white);
}

.btn-purchase svg {
  transition: transform 0.3s ease;
}

.btn-purchase:hover svg {
  transform: translateX(4px);
}

.purchase-subtext {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center !important;
  text-justify: auto !important;
}

/* Responsivo Móvil de Adquisición */
@media (max-width: 768px) {
  .program-purchase-section {
    padding: 55px 0;
  }
  .purchase-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  .purchase-desc {
    font-size: 14px !important;
    line-height: 1.55 !important;
    padding: 0 15px !important;
  }
  .promo-price {
    font-size: 26px !important;
  }
  .btn-purchase {
    font-size: 14px !important;
    padding: 12px 28px !important;
    width: 100% !important;
    max-width: 290px !important;
    box-sizing: border-box !important;
  }
  .purchase-subtext {
    font-size: 13px !important;
    line-height: 1.5 !important;
    padding: 0 15px !important;
  }
}
