:root {
  --bg: #f5f6f8;
  --text: #2b2b2b;
  --primary: #f9b100;
  --secondary: #1e2a3a;
  --card: #ffffff;
  --muted: #6f7682;
  --line: #e3e6eb;
}


@media only screen and (min-width: 992px) {
  /*First level styles */
  .main-menu ul ul li:hover > a {
    color: #005899;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}





.hero {
  width: 100%;
  overflow: hidden;
  background: #e9edf2;
}

.hero-bg {
  width: 100%;
  height: min(640px, 58vw);
  object-fit: cover;
}

.features {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 26px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item img {
  width: 62px;
}

.feature-item h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
}

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 40px);
}

.section-head p {
  margin: 12px auto 0;
  color: var(--muted);
  max-width: 720px;
}

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

.category-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.english-banner {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.english-banner h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.english-banner p {
  color: var(--muted);
  margin: 16px 0 20px;
}

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

.course-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.course-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.course-body {
  padding: 18px;
}

.course-body small {
  color: var(--muted);
  font-weight: 600;
}

.course-body h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.28;
}

.course-card-featured {
  background: var(--color-primary);
  border: 1px solid #0f2a57;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 12, 33, 0.3);
}

.featured-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 12, 30, 0.12) 45%, rgba(3, 12, 30, 0.9));
  pointer-events: none;
}

.featured-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.featured-pill {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  background: #f52632;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 12px;
}

.featured-content {
  padding: 24px;
  color: #fff;
}

.featured-content h4 {
  margin: 0;
  font-size: clamp(21px, 1.6vw, 26px);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}

.featured-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.featured-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 0.86vw, 14px);
  line-height: 1.35;
  font-weight: 700;
}

.featured-list em {
  color: #8ea8cf;
  font-style: normal;
  font-size: 0.95em;
  font-weight: 500;
}

.featured-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.btn-wa,
.btn-info {
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
}

.btn-wa {
  background: #2dda66;
  color: #fff;
  font-size: 24px;
}

.btn-info {
  background: #7da8ff;
  color: #03132d;
  font-size: clamp(13px, 0.9vw, 14px);
  letter-spacing: 0.01em;
  width: 100%;
}

.btn-info::after {
  content: "›";
  margin-left: 10px;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

.section-grey {
  background: var(--bg);
}

.teachers {
  padding: 78px 0;
  background: var(--color-primary);
  color: #edf2ff;
}

.teachers-head {
  text-align: center;
  margin-bottom: 30px;
}

.teachers-link {
  display: inline-block;
  margin-bottom: 26px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #ef2b31;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.teachers-head h2 {
  margin: 0;
  font-size: clamp(32px, 2.8vw, 45px);
  line-height: 1.15;
}

.teachers-head p {
  margin: 12px auto 0;
  max-width: 760px;
  color: #9fb0cf;
  font-size: 16px;
}

.teachers-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.teachers-track-wrap {
  overflow: hidden;
}

.teachers-grid {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.teachers-grid .teacher-card {
  flex: 0 0 calc((100% - 36px) / 3);
}

.teachers-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(157, 180, 221, 0.5);
  border-radius: 999px;
  background: #0c234f;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.teachers-arrow:hover {
  background: #1a3a75;
}

.teacher-card {
  border: 1px solid rgba(109, 132, 177, 0.25);
  border-radius: 10px;
  overflow: hidden;
  background: #03132d;
}

.teacher-media {
  position: relative;
  padding: 12px;
}

.teacher-media img {
  width: 100%;
  height: 310px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}

.teacher-level {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(238, 245, 255, 0.95);
  color: #1f2937;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
}

.teacher-body {
  padding: 0 16px 16px;
}

.teacher-body h3 {
  margin: 2px 0 8px;
  font-size: 29px;
  line-height: 1.2;
}

.teacher-role {
  margin: 0;
  color: #bdd0f3;
  font-size: 14px;
  font-weight: 600;
}

.teacher-summary {
  margin: 10px 0 12px;
  color: #a3b4d5;
  line-height: 1.45;
  font-size: 13px;
}

.teacher-more {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd668;
  font-size: 14px;
  font-weight: 700;
}

.teacher-social {
  display: block;
  color: #7da8ff;
  font-size: 13px;
}

.teacher-social:hover {
  text-decoration: underline;
}

.contact-cta {
  position: relative;
  min-height: 360px;
  background-image: linear-gradient(rgba(2, 9, 24, 0.48), rgba(2, 9, 24, 0.48)), url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.contact-cta-overlay {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px 16px;
}

.contact-cta-card {
  width: min(560px, 100%);
  background: rgba(6, 10, 18, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  padding: 26px 30px;
}

.contact-cta-card h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 47px);
  line-height: 1.08;
}

.contact-cta-card p {
  margin: 16px auto 18px;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.35;
  max-width: 44ch;
}

.contact-cta-card h3 {
  margin: 0 0 16px;
  font-size: clamp(27px, 2vw, 33px);
  line-height: 1.15;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #15a24b;
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 700;
}

.contact-cta-btn:hover {
  filter: brightness(1.04);
}

.plans-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  background: #1f2e42;
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  position: relative;
}

.plan-card h3 {
  font-size: 34px;
  margin: 0;
}

.plan-card .price {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0 2px;
  color: var(--primary);
}

.plan-card .meta {
  margin: 0 0 16px;
  color: #d2d8e2;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
  color: #eef2f8;
}

.plan-card li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.plan-main {
  border: 3px solid var(--primary);
}

.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.btn-plan {
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #111;
}

.methodology {
  padding: 72px 0;
  background: linear-gradient(120deg, #f5f7fb, #ecf2f8);
}

.method-card {
  max-width: 700px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
}

.method-card h2 {
  margin-top: 0;
}

.method-card p {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-logo {
  width: 170px;
  margin-bottom: 12px;
}

.footer h4 {
  margin: 0 0 12px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
  color: #44505d;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 20px;
  color: #6b7280;
}

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

  .features-grid,
  .category-grid,
  .courses-grid,
  .plans-grid,
  .footer-grid,
  .english-banner {
    grid-template-columns: 1fr;
  }

  .teachers-grid .teacher-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .feature-item h3 {
    font-size: 20px;
  }

  .hero-bg {
    height: 46vw;
    min-height: 240px;
  }

  .course-card-featured {
    max-width: 480px;
    margin: 0 auto;
  }

  .featured-content h4 {
    font-size: clamp(18px, 4.9vw, 23px);
  }

  .featured-list li {
    font-size: clamp(11px, 3vw, 13px);
  }

  .btn-info {
    font-size: clamp(11px, 3vw, 13px);
  }

  .teachers {
    padding: 58px 0;
  }

  .teachers-head h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .teacher-body h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .contact-cta,
  .contact-cta-overlay {
    min-height: 320px;
  }

  .contact-cta-card {
    padding: 20px 18px;
  }

  .contact-cta-card h2 {
    font-size: clamp(26px, 8vw, 37px);
  }

  .contact-cta-card h3 {
    font-size: clamp(21px, 6vw, 28px);
  }

  .contact-cta-card p {
    font-size: clamp(14px, 4vw, 17px);
  }

  .contact-cta-btn {
    width: 100%;
    font-size: clamp(14px, 4vw, 16px);
  }
}

@media (max-width: 700px) {
  .teachers-carousel {
    grid-template-columns: 1fr;
  }

  .teachers-arrow {
    display: none;
  }

  .teachers-grid .teacher-card {
    flex-basis: 100%;
  }
}

.diplomado-hero {
  position: relative;
}

.diplomado-hero .hero-bg {
  height: min(720px, 72vw);
  min-height: 520px;
}

.diplomado-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 18, 41, 0.86), rgba(8, 39, 63, 0.74));
  display: grid;
  align-items: center;
}

.diplomado-hero-content {
  color: #fff;
  text-align: center;
}

.diplomado-hero-content h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.12;
}

.diplomado-hero-content h1 span {
  display: block;
  color: #8ee7ff;
  margin-top: 10px;
}

.diplomado-hero-content p {
  margin: 16px auto 24px;
  max-width: 760px;
  color: #dae5f6;
}

.hero-chips {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-chips li {
  background: rgba(135, 225, 255, 0.18);
  border: 1px solid rgba(141, 234, 255, 0.45);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.item-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.item-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 0;
}

.item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.module-list {
  display: grid;
  gap: 12px;
}

.module-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.module-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .diplomado-hero .hero-bg {
    min-height: 430px;
    height: 82vw;
  }

  .diplomado-hero-content p {
    font-size: 15px;
  }
}

/* =====================================================================
   Landing programa.html (BIM) â€” comparte tokens con diplomados.html
   ===================================================================== */

/* ============================================================
 CSS VARIABLES
    ============================================================ */
.page-programa {
  --container-max: 1170px;
  --form-max: 900px;
  --section-pad-v: 60px;
  --section-pad-v-sm: 40px;
  --radius-md: 0.375rem;
  --ambient-shadow: 0 18px 40px rgba(15, 23, 40, 0.14);
  --display-lg: clamp(2rem, 5vw, 3.5rem);
  --headline-lg: clamp(1.5rem, 3vw, 2rem);
  --title-md: 1.125rem;
  --body-md: 0.875rem;
  --outline-ghost: rgba(30, 42, 58, 0.12);
  --surface: #ffffff;
  --surface-container-lowest: #ffffff;
  --surface-container-low: var(--bg);
  --surface-container-high: #eef1f6;
  --surface-bright: #e8ecf1;
  --on-surface: var(--text);
  --on-surface-variant: var(--muted);
  --primary-container: #e0a000;
  --on-primary: #111;
  --color-red: var(--primary);
  --color-red-dark: var(--primary-container);
  --color-white: #ffffff;
  --color-gray-input: #f0f2f5;
  --color-text-dark: var(--text);
  --color-text-muted: var(--muted);
  --color-blue-link: var(--secondary);
  --color-navy: var(--secondary);
  --color-navy-deep: #151d28;
  --color-navy-mid: #2a3a4f;
  --color-black: #0c1220;
}

/* ============================================================
 UTILITY
    ============================================================ */
.page-programa .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.page-programa .container--narrow {
  max-width: var(--form-max);
  margin: 0 auto;
  width: 100%;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.section-pad {
  padding: var(--section-pad-v) 0;
}

.section-pad-sm {
  padding: var(--section-pad-v-sm) 0;
}

/* ============================================================
 SECTION 1 â€” HEADER (Dark Navy #000321)
    ============================================================ */
#section-header {
  background-color: var(--surface-container-low);
  padding: 14px 0;
}

#section-header .header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#section-header .logo {
  height: 40px;
  width: auto;
}

/* ============================================================
 SECTION 2 â€” HERO + FORM (Black + background image)
    ============================================================ */
#section-hero {
  --on-surface: #f8fafc;
  --on-surface-variant: rgba(248, 250, 252, 0.78);
  --color-text-muted: rgba(248, 250, 252, 0.65);
  --color-text-dark: #f8fafc;
  background-color: var(--surface-container-lowest);
  background-image: url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/dIg0QquAQyNYEKNtLDdX/media/6934ef26e0f09228b3119bdb.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 70px 0;
  position: relative;
}

#section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(12, 15, 15, 0.72) 60%,
    rgba(12, 15, 15, 0.56) 100%
  );
  z-index: 0;
}

#section-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* Left column â€” copy */
.hero-copy {
  flex: 0 0 52.1%;
  max-width: 52.1%;
}

.hero-eyebrow {
  display: inline-block;
  background-color: var(--primary-container);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: var(--display-lg);
  font-weight: 700;
  line-height: 1.03;
  color: var(--on-surface);
  margin-bottom: 18px;
}

.hero-title span.highlight {
  color: var(--color-red);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(237, 238, 237, 0.86);
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-features {
  margin-bottom: 32px;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(237, 238, 237, 0.9);
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-features li .icon {
  color: var(--color-red);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badge {
  background-color: rgba(40, 45, 45, 0.75);
  color: var(--on-surface);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-badge .icon {
  margin-right: 5px;
  color: var(--color-red);
}

/* Right column â€” form card */
.hero-form-wrapper {
  flex: 0 0 47.9%;
  max-width: 47.9%;
}

.form-card {
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 32px 40px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.form-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
  text-align: center;
}

.form-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.25;
}

.form-card__subtitle {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

/* Form elements */
.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background-color: #f5f6f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  appearance: none;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 177, 0, 0.2);
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row .form-group {
  flex: 1;
}

.phone-input-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
}

.country-code-select {
  cursor: pointer;
  padding-right: 10px;
  font-size: 14px;
}

.form-submit {
  width: 100%;
  background: var(--primary);
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
  margin-top: 20px;
  text-transform: uppercase;
  box-shadow: var(--ambient-shadow);
}

.form-submit:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.form-privacy {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
}

.form-privacy a {
  color: var(--secondary);
  text-decoration: underline;
}

.post-submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 40, 0.55);
}

.post-submit-overlay.is-visible {
  display: flex;
}

.post-submit-card {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(15, 23, 40, 0.18);
}

.post-submit-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 50px);
  color: var(--secondary);
  text-align: center;
  text-transform: uppercase;
}

.post-submit-subtitle {
  margin: 0;
  color: var(--text);
  text-align: center;
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1.35;
  font-weight: 700;
}

.post-submit-step {
  margin: 24px 0 8px;
  text-align: center;
  color: #25d366;
  font-size: 52px;
  line-height: 1;
}

.post-submit-copy {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
}

.post-submit-whatsapp {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  color: #111;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.post-submit-whatsapp:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.post-submit-close {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.post-submit-close:hover {
  background: #eef1f6;
  border-color: #cfd6e0;
}

/* ============================================================
 SECTION 3 â€” RED GRADIENT (Benefits / Why)
    ============================================================ */
#section-red {
  background: linear-gradient(
    225deg,
    var(--surface) 0%,
    var(--surface-container-low) 100%
  );
  padding: 70px 0;
  position: relative;
}

#section-red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    225deg,
    rgba(2, 196, 125, 0.14) 0%,
    rgba(12, 15, 15, 0.86) 100%
  );
}

#section-red .red-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.red-image-col {
  flex: 0 0 52.1%;
  max-width: 52.1%;
  display: flex;
  justify-content: center;
}

.red-image-col img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.red-content-col {
  flex: 0 0 47.9%;
  max-width: 47.9%;
}

.red-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(237, 238, 237, 0.72);
  margin-bottom: 12px;
}

.red-title {
  font-size: var(--headline-lg);
  font-weight: 700;
  line-height: 1.15;
  color: var(--on-surface);
  margin-bottom: 24px;
}

.red-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.red-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.red-benefit__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(40, 45, 45, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}

.red-benefit__text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 3px;
}

.red-benefit__text p {
  font-size: 14px;
  color: rgba(237, 238, 237, 0.82);
  line-height: 1.45;
}

/* Logo bar at bottom of red section */
.red-logos {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.red-logos__item {
  width: calc(100% / 6);
  max-width: 100px;
  background-color: rgba(28, 32, 32, 0.92);
  border-radius: 8px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(237, 238, 237, 0.75);
  text-align: center;
  padding: 8px;
}

/* ============================================================
 SECTION 4  DARK BLUE (Modules / Features badges)
    ============================================================ */
#section-dark-blue {
  background: var(--bg);
  position: relative;
}

#section-dark-blue::before {
  display: none;
}

#section-dark-blue .db-inner {
  position: relative;
  z-index: 1;
  max-width: 93%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.db-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 14px;
}

.db-title {
  font-size: var(--headline-lg);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 12px;
}

.db-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.db-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.db-badge {
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.db-badge:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.08);
  border-color: #d7dde6;
}

.db-badge__num {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 6px;
}

.db-badge__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* Module list below badges */
.db-modules {
  margin-top: 52px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.db-modules__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 22px;
  text-align: center;
}

.db-modules__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.db-module-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--primary);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-module-item__num {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-red);
  flex-shrink: 0;
  line-height: 1;
}

.db-module-item__info h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--on-surface);
  margin: 0;
}

.db-module-item__info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
 SECTION 5 â€” WHITE (Instructor / About)
    ============================================================ */
#section-white {
  background-color: var(--surface-container-low);
  padding: 70px 0;
}

#section-white .white-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.white-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red);
  text-align: center;
  margin-bottom: 12px;
}

.white-title {
  font-size: var(--headline-lg);
  font-weight: 700;
  color: var(--on-surface);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
}

.white-desc {
  font-size: 17px;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.white-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.instructor-img-wrapper {
  display: flex;
  justify-content: center;
}

.instructor-img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  background-color: var(--surface-container-high);
}

.instructor-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--surface-bright) 0%,
    var(--surface-container-high) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 64px;
}

.instructor-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 6px;
}

.instructor-info .instructor-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instructor-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.instructor-info p:not(.instructor-role) {
  text-align: justify;
}

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.instructor-cred {
  background-color: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

/* Testimonials in white section */
.testimonials {
  margin-top: 70px;
}

.testimonials__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--on-surface);
  text-align: center;
  margin-bottom: 36px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 60px;
  line-height: 1;
  color: var(--color-red);
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  padding-top: 18px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--on-surface-variant);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 13px;
  margin-bottom: 8px;
}

/* ============================================================
 SECTION 6 â€” INCLUYE EL DIPLOMADO (Imported block)
    ============================================================ */
#section-Qdh2kigHpj {
  background: var(--bg);
  padding: 72px 20px 35px 20px;
  position: relative;
  overflow: hidden;
}

#section-Qdh2kigHpj > .inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#row-RhwoGDwds2 > .inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#col-3Rtc1qc9n4 {
  grid-column: 1;
  min-width: 0;
}

#col-3Rtc1qc9n4 > .vertical {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#heading-UI5wJ7doY5 {
  grid-column: 1 / -1;
}

#heading-UI5wJ7doY5 .heading-UI5wJ7doY5 h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--on-surface);
  text-align: center;
  margin-bottom: 20px;
}

#heading-UI5wJ7doY5 .heading-UI5wJ7doY5 strong {
  color: var(--primary);
  font-weight: 800;
}

#row-zzYhUGKHs3 > .inner,
#row-e9QtwWkC5T > .inner,
#row-SzP1GCnD_4 > .inner,
#row-kP7cRh9icX > .inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 40, 0.06);
}

#row-zzYhUGKHs3 .c-image .image-container,
#row-e9QtwWkC5T .c-image .image-container,
#row-SzP1GCnD_4 .c-image .image-container,
#row-kP7cRh9icX .c-image .image-container,
#col-lhJCBSKtTQ .c-image .image-container {
  width: 64px;
  flex: 0 0 64px;
}

#section-Qdh2kigHpj .c-sub-heading h2 {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

#section-Qdh2kigHpj .c-sub-heading h2 span {
  }

#sub-heading-a3wOVKJy2z h2 {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.72;
  margin-top: 6px;
}

#col-lhJCBSKtTQ {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#col-lhJCBSKtTQ > .vertical {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#col-lhJCBSKtTQ .c-image .image-container {
  width: min(100%, 850px);
  flex: 0 1 auto;
  margin-inline: auto;
  display: block;
  text-align: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

#col-lhJCBSKtTQ .c-image .image-container img {
  display: block;
  margin-inline: auto;
}

/* ============================================================
 SECTION 7 â€” BLACK + FORM (Bottom CTA form)
    ============================================================ */
#section-cta-form {
  --on-surface: #f8fafc;
  --on-surface-variant: rgba(248, 250, 252, 0.78);
  --color-text-muted: rgba(248, 250, 252, 0.65);
  --color-text-dark: #f8fafc;
  background-color: var(--color-black);
  background-image: url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/dIg0QquAQyNYEKNtLDdX/media/6934ef26e0f09228b3119bdb.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
}

#section-cta-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    225deg,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(12, 15, 15, 0.88) 100%
  );
}

#section-cta-form .cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.cta-copy {
  flex: 1;
}

.cta-copy__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
}

.cta-copy__title {
  font-size: 43px;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-copy__title span {
  color: var(--color-red);
}

.cta-copy__text {
  font-size: 17px;
  color: rgba(237, 238, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-copy__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-copy__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(237, 238, 237, 0.88);
}

.cta-copy__list li i {
  color: var(--color-red);
  font-size: 14px;
  flex-shrink: 0;
}

.cta-form-col {
  flex: 0 0 47.9%;
  max-width: 47.9%;
}

/* ============================================================
 SECTION 7 â€” FOOTER (Dark Navy)
    ============================================================ */
#section-footer {
  background-color: var(--surface-container-lowest);
  padding: 40px 0;
}

#section-footer .footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

#section-footer .footer-logo {
  height: 40px;
  width: auto;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-container) 100%
  );
  border: none;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(40, 45, 45, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--color-red);
  color: #ffffff;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
 WHATSAPP FLOAT BUTTON
    ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  color: #ffffff;
  font-size: 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ============================================================
 RESPONSIVE â€” TABLET (481px â€“ 1024px)
    ============================================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }
  .cta-copy__title {
    font-size: 34px;
  }
  .red-title {
    font-size: 30px;
  }
  .db-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  #heading-UI5wJ7doY5 .heading-UI5wJ7doY5 h1 {
    font-size: 34px;
  }
  #section-Qdh2kigHpj .c-sub-heading h2 {
    font-size: 19px;
  }
}

/* ============================================================
 RESPONSIVE â€” MOBILE (max 480px)
    ============================================================ */
@media (max-width: 768px) {
  .page-programa {
    --section-pad-v: 50px;
  }

  /* Header */
  #section-hero {
    background-image: url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/dIg0QquAQyNYEKNtLDdX/media/6934ef26e0f09228b3119bdb.jpg");
    padding: 40px 0 50px;
  }

  #section-hero .hero-inner {
    flex-direction: column;
    gap: 36px;
  }

  .hero-copy,
  .hero-form-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-copy .hero-eyebrow {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .hero-title,
  .hero-copy .hero-subtitle {
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
    align-items: center;
  }

  .hero-badge {
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 16px;
  }

  /* Red section */
  #section-red {
    padding: 50px 0;
  }

  #section-red .red-inner {
    flex-direction: column;
    gap: 36px;
  }

  .red-image-col,
  .red-content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .red-title {
    font-size: 26px;
  }

  /* Dark blue */
  .db-title {
    font-size: 25px;
  }
  .db-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .db-modules__grid {
    grid-template-columns: 1fr;
  }

  /* White */
  .white-title {
    font-size: 26px;
  }
  .white-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .instructor-info h3,
  .instructor-info .instructor-role {
    text-align: center;
  }
  .instructor-placeholder {
    width: 220px;
    height: 220px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA form */
  #section-cta-form .cta-inner {
    flex-direction: column;
    gap: 40px;
  }
  .cta-copy {
    text-align: center;
  }
  .cta-copy__list li {
    justify-content: center;
  }

  #section-Qdh2kigHpj {
    padding: 56px 16px;
  }

  #row-RhwoGDwds2 > .inner {
    gap: 16px;
  }

  #col-3Rtc1qc9n4 > .vertical {
    grid-template-columns: 1fr;
  }

  #heading-UI5wJ7doY5 .heading-UI5wJ7doY5 h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  #row-zzYhUGKHs3 > .inner,
  #row-e9QtwWkC5T > .inner,
  #row-SzP1GCnD_4 > .inner,
  #row-kP7cRh9icX > .inner {
    align-items: flex-start;
    padding: 14px 16px;
    gap: 12px;
  }

  #row-zzYhUGKHs3 .c-image .image-container,
  #row-e9QtwWkC5T .c-image .image-container,
  #row-SzP1GCnD_4 .c-image .image-container,
  #row-kP7cRh9icX .c-image .image-container {
    width: 52px;
    flex: 0 0 52px;
  }

  #col-lhJCBSKtTQ .c-image .image-container {
    width: 220px;
    flex: 0 0 220px;
  }

  #col-lhJCBSKtTQ,
  #col-lhJCBSKtTQ > .vertical {
    grid-column: 1;
    justify-content: center;
  }

  #section-Qdh2kigHpj .c-sub-heading h2 {
    font-size: 17px;
  }

  .cta-form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cta-copy__title {
    font-size: 28px;
  }

  /* Red logos */
  .red-logos__item {
    width: calc(33.33% - 8px);
  }

  /* Form row on mobile */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .phone-input-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  .db-badges-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 20px 32px;
  }
  #section-Qdh2kigHpj .c-sub-heading h2 {
    font-size: 16px;
  }
  #sub-heading-a3wOVKJy2z h2 {
    font-size: 12px;
  }
}
