.body {
  color: #0b1220;
}

.lp-hero {
  background: #f5f6f8;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  padding: 2rem;
}

.lp-badges .badge {
  font-weight: 600;
}

.lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffffee;
  border-top: 1px solid #e9ecef;
  padding: 0.5rem 0.75rem;
  z-index: 1030;
}

.lp-sticky .btn {
  width: 100%;
}

.lp-form .form-label {
  font-weight: 600;
}

.lp-muted {
  color: #252d5d;
}

.iOS .page {
  background: url(../img/service/cont_ops.jpg) center/cover no-repeat;
}

.page {
  background: url(../img/service/cont_ops.jpg) center/cover no-repeat fixed;
}

/* Usa los colores del tema Bootstrap (tu “color de la página”) */
.lp-brand {
  color: var(--bs-body-color);
  /* texto principal del sitio */
}

.lp-brand h1 {
  color: var(--bs-body-color);
}

.lp-brand .lead {
  color: var(--bs-body-color);
  /* o usa var(--bs-emphasis-color) si prefieres más contraste */
}

.lp-brand .lp-muted,
.lp-brand .lp-muted li {
  color: var(--bs-secondary-color, #0b1220);
  /* texto atenuado del tema */
}

.lp-brand .lp-badges .badge {
  color: var(--bs-body-color);
  /* texto de las badges */
}

/* Si en el contenedor padre tenías .text-white, esto lo neutraliza: */
.section_ .lp-brand {
  color: var(--bs-body-color) !important;
}

.section_ .lp-brand * {
  color: inherit;
}

/* Ajusta aquí a tu gusto */
.section_ {
  --bg-url: url(../img/landing/slide03.webp);
  /* ajusta ruta si tu CSS está en /css/ */
  --bg-opacity: 0.05;
  /* 0 (transparente) … 1 (opaco) */
  --bg-x: 25%;
  /* 0% = extremo izquierdo, 50% = centro */
  position: relative;
  min-height: 380px;
  background-color: #f3f4f6;
  /* fallback */
}

/* La imagen con opacidad */
.section_::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: var(--bg-x) center;
  /* más hacia la izquierda */
  background-repeat: no-repeat;
  opacity: var(--bg-opacity);
  z-index: 0;
}

/* (Opcional) oscurecer un poco arriba para mejorar legibilidad */
.section_::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 52, 160, 0.25),
    rgba(10, 52, 160, 0.15)
  );
  z-index: 1;
}

/* Mantén el contenido por encima */
.section_ > * {
  position: relative;
  z-index: 2;
}

/* Opcional: ajusta el foco en móviles */
@media (max-width: 576px) {
  .section_ {
    --bg-x: 25%;
  }

  /* muestra más la zona izquierda en pantallas chicas */
}

/* ===== Hero comercial ===== */
/* .section_.hero-sell {
  background: radial-gradient(1200px 800px at 10% 10%, #0ea5e91a, transparent),
    radial-gradient(1000px 700px at 90% 20%, #22c55e1a, transparent),
    linear-gradient(180deg, #0b1220 0%, #0b1220 55%, #0b1220ee 100%);
  border-radius: 1rem;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
} */
.section_.hero-sell .lead {
  color: #fc3c22;
}

/* ===== CTAs principales ===== */
.cta-stack .btn {
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  border-radius: 0.8rem;
}
.btn-cta-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  border: 0;
}
.btn-cta-primary:hover {
  filter: brightness(1.05);
}
.btn-cta-outline {
  border: 2px solid #22c55e;
}

/* ===== Barra de confianza ===== */
.trustbar {
  background: #004996;
;
  border: 1px solid #004996;;
  border-radius: 0.8rem;
  color: #9fb6cc;
}
.trustbar .badge {
  background: #004996;;
  border: 1px solid #004996;;
}

/* ===== Cards oferta ===== */
.card-offer .card-header {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.card-offer .card-body p {
  min-height: 70px;
}

/* ===== Ruta académica ===== */
.route .badge {
  font-size: 0.95rem;
}
.route .arrow {
  opacity: 0.7;
}

/* ===== FAQ compacto ===== */
.accordion-button {
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background: #eef7ff;
  color: #0b5ed7;
}

/* Pequenas utilidades */
.text-gradient {
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shadow-soft {
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.18);
}

/* Opcional: refinar tamaños del H1 en hero sin afectar el resto */
.section_.hero-sell .h2 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
}

/* Badges más legibles sobre fondos oscuros */
.section_.hero-sell .lp-badges .badge.text-bg-light {
  background: #004996 !important;
  color: #fff !important;
}
/* === Fix HERO CTAs === */
.cta-stack .btn-cta-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e) !important;
  color: #fff !important;
  border: 0 !important;
}
.cta-stack .btn-cta-outline {
  border: 2px solid #22c55e !important;
  color: #22c55e !important;
  background: transparent !important;
}
.cta-stack .btn-cta-outline:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* === Fix textos HERO (legibilidad) === */
.section_.hero-sell .lp-brand h1,
.section_.hero-sell .lp-brand .lead,
.section_.hero-sell .lp-brand li {
  color: #ffffff !important;
}
.section_.hero-sell .lp-badges .badge {
  background: #ffffffdd !important;
  color: #0b1220 !important;
  font-weight: 600;
}
.section_.hero-sell .trustbar {
  background: rgba(0, 0, 0, 0.6) !important;
  border-color: transparent;
}
.section_.hero-sell .trustbar .badge {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #cfe8ff !important;
}

.lp-muted {
  list-style: disc !important; /* activa viñeta tipo círculo */
  padding-left: 1.2rem; /* margen para que no se encimen */
}

.lp-muted li {
  margin-bottom: 0.4rem; /* espacio entre ítems */
}
/* Ajuste de simetría para hero */
.section_.hero-sell .lp-brand,
.section_.hero-sell .col-lg-5 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 992px) {
  .section_.hero-sell .lp-brand {
    padding-left: 2rem;
    padding-right: 3rem; /* aire extra hacia el form */
  }
  .section_.hero-sell .col-lg-5 {
    padding-left: 3rem; /* aire extra hacia el texto */
    padding-right: 2rem; /* aire contra borde derecho */
  }
}
/* Paso 2 oculto por defecto si no usas Bootstrap Collapse */
#moreFields.collapse {
  display: none;
}
#moreFields.collapse.show {
  display: block;
}

/* Lista meta dentro de cada tarjeta */
.offer-meta {
  list-style: none;
  padding-left: 0;
}
.offer-meta li {
  margin-bottom: 0.25rem;
}
.offer-meta strong {
  color: #0b1220;
}

/* Precio teaser */
.price-teaser {
  font-size: 0.95rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

/* Alineación consistente en cards altas */
.card-offer .btn {
  width: 100%;
}

/* ===== Oferta académica con look del HERO ===== */
.offer-sell {
  /* Fondo oscuro con degradé suave como el hero */
  background: linear-gradient(135deg, #0f2b46 0%, #0d1f35 100%) !important;
  border: 0 !important;
  border-radius: 1rem;
  overflow: hidden;
}
.offer-sell > .card-body {
  background: transparent;
}

/* Tipos en el wrapper (mejor legibilidad) */
.offer-sell h2,
.offer-sell h5 {
  color: #ffffff;
}
.offer-sell p,
.offer-sell .text-muted {
  color: #ffffffcc !important;
}

/* Tarjetas internas: efecto "glass" sobre fondo oscuro */
.offer-sell .card-offer {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #fff;
  backdrop-filter: blur(6px);
}
.offer-sell .card-offer .card-body {
  background: transparent;
}

/* Headers tintados por estado (verde / amarillo integrador) */
.offer-sell .card-offer .card-header.bg-success {
  background: rgba(34, 197, 94, 0.28) !important;
  color: #eafff2 !important;
}
.offer-sell .card-offer.border-success {
  border-color: rgba(34, 197, 94, 0.38) !important;
}
.offer-sell .card-offer .card-header.bg-warning {
  background: rgba(250, 204, 21, 0.3) !important;
  color: #1f2937 !important;
}
.offer-sell .card-offer.border-warning {
  border-color: rgba(250, 204, 21, 0.4) !important;
}

/* Badges estilo hero (blancas con texto oscuro) */
.badge-contrast {
  background: #ffffffdd !important;
  color: #0b1220 !important;
  font-weight: 600;
  border-radius: 999px;
}

/* Meta de cada programa (listado) */
.offer-sell .offer-meta {
  list-style: none;
  padding-left: 0;
}
.offer-sell .offer-meta li {
  margin-bottom: 0.25rem;
}
.offer-sell .offer-meta strong {
  color: #ffffff;
}

/* Precio "desde" con misma lógica cromática del hero */
.offer-sell .price-teaser {
  font-size: 0.95rem;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #eafff2;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

/* CTAs reutilizando el estilo del HERO */
.offer-sell .btn-cta-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e) !important;
  color: #fff !important;
  border: 0 !important;
}
.offer-sell .btn-cta-outline {
  border: 2px solid #22c55e !important;
  color: #22c55e !important;
  background: transparent !important;
}
.offer-sell .btn-cta-outline:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Ruta académica: chips tipo "ghost" sobre oscuro */
.offer-sell .route .badge.text-bg-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.offer-sell .route .badge.text-bg-success {
  background: rgba(34, 197, 94, 0.3) !important;
  color: #fff !important;
}

/* Respiro lateral para que no quede pegado a bordes del wrapper */
.offer-sell .row {
  margin-left: 0;
  margin-right: 0;
}
.offer-sell .card-body > .row,
.offer-sell .card-body > h2,
.offer-sell .card-body > p,
.offer-sell .card-body > hr,
.offer-sell .text-center {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 992px) {
  .offer-sell .card-body > .row,
  .offer-sell .card-body > h2,
  .offer-sell .card-body > p,
  .offer-sell .card-body > hr,
  .offer-sell .text-center {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


/*===  === === === === === === === === === === 
 Oferta académica con el mismo look del HERO
=== === === === === === === === === === === */
.offer-contrast {
  background: rgba(38, 45, 93) !important;
  border: 0 !important;
  border-radius: 1rem;
  overflow: hidden;
}
.offer-contrast > .card-body {
  background: transparent;
}

/* Tipografía y legibilidad */
.offer-contrast h2,
.offer-contrast h5 {
  color: #fff;
}
.offer-contrast p,
.offer-contrast .text-muted {
  color: #ffffffcc !important;
}

/* Tarjetas internas: alto contraste tipo "glass" */
.offer-contrast .card-offer {
  background: rgba(7, 16, 28, 0.55) !important; /* fondo oscuro translúcido */
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.offer-contrast .card-offer .card-body {
  background: transparent;
}

/* Headers de tarjeta con tintes (verde y amarillo integrador) */
.offer-contrast .card-offer .card-header.bg-success {
  background: rgba(34, 197, 94, 0.28) !important;
  color: #eafff2 !important;
}
.offer-contrast .card-offer.border-success {
  border-color: rgba(34, 197, 94, 0.38) !important;
}

.offer-contrast .card-offer .card-header.bg-warning {
  background: rgba(250, 204, 21, 0.3) !important;
  color: #1f2937 !important;
}
.offer-contrast .card-offer.border-warning {
  border-color: rgba(250, 204, 21, 0.4) !important;
}

/* Badges blancas como en el hero */
.badge-contrast {
  background: #ffffffdd !important;
  color: #0b1220 !important;
  font-weight: 600;
  border-radius: 999px;
}

/* Metadatos y precio "desde" con contraste */
.offer-contrast .offer-meta {
  list-style: none;
  padding-left: 0;
}
.offer-contrast .offer-meta li {
  margin-bottom: 0.25rem;
}
.offer-contrast .offer-meta strong {
  color: #fff;
}

.offer-contrast .price-teaser {
  font-size: 0.95rem;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #eafff2;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

/* CTAs iguales al hero */
.offer-contrast .btn-cta-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e) !important;
  color: #fff !important;
  border: 0 !important;
}
.offer-contrast .btn-cta-outline {
  border: 2px solid #22c55e !important;
  color: #22c55e !important;
  background: transparent !important;
}
.offer-contrast .btn-cta-outline:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Ruta académica (chips ghost sobre oscuro) */
.offer-contrast .route .badge.text-bg-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.offer-contrast .route .badge.text-bg-success {
  background: rgba(34, 197, 94, 0.3) !important;
  color: #fff !important;
}

/* Respiro lateral interno del wrapper */
.offer-contrast .card-body > .row,
.offer-contrast .card-body > h2,
.offer-contrast .card-body > p,
.offer-contrast .card-body > hr,
.offer-contrast .text-center {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 992px) {
  .offer-contrast .card-body > .row,
  .offer-contrast .card-body > h2,
  .offer-contrast .card-body > p,
  .offer-contrast .card-body > hr,
  .offer-contrast .text-center {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Accesibilidad: enfoque visible en oscuro */
.offer-contrast .btn:focus,
.offer-contrast a:focus,
.offer-contrast button:focus {
  outline: 3px solid rgba(14, 165, 233, 0.65);
  outline-offset: 2px;
}


/* === === === === === === === === === === 
      Mapeo de colores por programa
  Header con alto contraste, anillo/borde 
       y hover con el mismo acent
=== === === === === === === === === === */
.offer-contrast .card-offer .card-header {
  color: #0b1220 !important; /* texto oscuro para accesibilidad */
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* D1 */
.offer-contrast .card-offer.offer-d1 {
  border-color: #fdda34 !important;
  box-shadow: 0 8px 22px rgba(253, 218, 52, 0.18);
}
.offer-contrast .card-offer.offer-d1 .card-header {
  background: #fdda34 !important;
}
.offer-contrast .card-offer.offer-d1:hover {
  border-color: #fdda34 !important;
}

/* D2 */
.offer-contrast .card-offer.offer-d2 {
  border-color: #f7c139 !important;
  box-shadow: 0 8px 22px rgba(247, 193, 57, 0.18);
}
.offer-contrast .card-offer.offer-d2 .card-header {
  background: #f7c139 !important;
}
.offer-contrast .card-offer.offer-d2:hover {
  border-color: #f7c139 !important;
}

/* D3 */
.offer-contrast .card-offer.offer-d3 {
  border-color: #fbb52b !important;
  box-shadow: 0 8px 22px rgba(251, 181, 43, 0.18);
}
.offer-contrast .card-offer.offer-d3 .card-header {
  background: #fbb52b !important;
}
.offer-contrast .card-offer.offer-d3:hover {
  border-color: #fbb52b !important;
}

/* D4 */
.offer-contrast .card-offer.offer-d4 {
  border-color: #fa9025 !important;
  box-shadow: 0 8px 22px rgba(250, 144, 37, 0.2);
}
.offer-contrast .card-offer.offer-d4 .card-header {
  background: #fa9025 !important;
}
.offer-contrast .card-offer.offer-d4:hover {
  border-color: #fa9025 !important;
}

/* TSU (mismo color que D4) */
.offer-contrast .card-offer.offer-tsu {
  border-color: #fa9025 !important;
  box-shadow: 0 8px 22px rgba(250, 144, 37, 0.2);
}
.offer-contrast .card-offer.offer-tsu .card-header {
  background: #fa9025 !important;
}
.offer-contrast .card-offer.offer-tsu:hover {
  border-color: #fa9025 !important;
}

/* Opcional: acentuar el “desde” con el color del programa */
.offer-contrast .card-offer.offer-d1 .price-teaser {
  background: rgba(253, 218, 52, 0.16);
  border-color: #fdda34;
}
.offer-contrast .card-offer.offer-d2 .price-teaser {
  background: rgba(247, 193, 57, 0.16);
  border-color: #f7c139;
}
.offer-contrast .card-offer.offer-d3 .price-teaser {
  background: rgba(251, 181, 43, 0.16);
  border-color: #fbb52b;
}
.offer-contrast .card-offer.offer-d4 .price-teaser,
.offer-contrast .card-offer.offer-tsu .price-teaser {
  background: rgba(250, 144, 37, 0.18);
  border-color: #fa9025;
}

/* Chips de la ruta con alto contraste y colores por programa */
.offer-contrast .route .route-chip {
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

/* Flechas con mejor legibilidad sobre fondo oscuro */
.offer-contrast .route .route-arrow {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
}

/* Mapas de color */
.offer-contrast .route .route-d1 {
  background: #fdda34 !important;
  border-color: #e0c12a !important;
  color: #0b1220 !important;
}
.offer-contrast .route .route-d2 {
  background: #f7c139 !important;
  border-color: #dba72f !important;
  color: #0b1220 !important;
}
.offer-contrast .route .route-d3 {
  background: #fbb52b !important;
  border-color: #de9e25 !important;
  color: #0b1220 !important;
}
.offer-contrast .route .route-d4 {
  background: #fa9025 !important;
  border-color: #e4811f !important;
  color: #0b1220 !important;
}
.offer-contrast .route .route-tsu {
  background: #fa9025 !important; /* mismo color que D4 */
  border-color: #e4811f !important;
  color: #0b1220 !important;
}

/* Hover/focus accesible */
.offer-contrast .route .route-chip:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}
.offer-contrast .route .route-chip:focus {
  outline: 3px solid rgba(14, 165, 233, 0.65);
  outline-offset: 2px;
}

/* Badge RVOE grande para TSU */
.badge-rvoe {
  background: #ffffff !important;
  color: #004996 !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
/* Ribbon/header TSU (usa color de programa #fa9025) */
.modal-tsu .tsu-ribbon {
  background: #fa9025;
  color: #0b1220; /* contraste alto sobre naranja */
  border-bottom: 0;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.modal-tsu .tsu-ribbon .modal-title {
  font-weight: 800;
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
}

/* Sidebar clara con sombra sutil */
.modal-tsu .tsu-sidebar {
  background: #f9f9f9;
  border-radius: 0.8rem;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.modal-tsu .tsu-hero-img {
  max-height: 260px;
  object-fit: contain;
}

/* Badge RVOE grande */
.badge-rvoe {
  background: #ffffff !important;
  color: #0b1220 !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Listas con viñeta personalizada y buen interlineado */
.modal-tsu .tsu-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.modal-tsu .tsu-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}
.modal-tsu .tsu-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #0ea5e9; /* azul del hero para coherencia */
}

/* Metadatos compactos */
.modal-tsu .tsu-meta li {
  line-height: 1.5;
}

/* Botones del hero dentro del modal */
.modal-tsu .btn-cta-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e) !important;
  color: #fff !important;
  border: 0 !important;
}
.modal-tsu .btn-cta-outline {
  border: 2px solid #22c55e !important;
  color: #22c55e !important;
  background: transparent !important;
}
.modal-tsu .btn-cta-outline:hover {
  background: #22c55e !important;
  color: #fff !important;
}


/* === === === === === === === === === === 
  MODAL TSU: look hero + acento #fa9025
=== === === === === === === === === === */
.modal-tsu .modal-content {
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.modal-tsu .modal-header.tsu-ribbon {
  background: #fa9025; /* color TSU */
  color: #0b1220;
  border: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.modal-tsu .tsu-ribbon .modal-title {
  font-weight: 800;
  font-size: clamp(1.1rem, 1vw + 1rem, 1.6rem);
}
.modal-tsu .btn-close {
  filter: invert(1);
  opacity: 0.85;
} /* X visible sobre naranja */

/* Sidebar claro con contraste y aro a la imagen con gradiente hero */
.modal-tsu .tsu-sidebar {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.modal-tsu .tsu-hero-img {
  max-height: 260px;
  object-fit: contain;
  border-radius: 999px;
  padding: 4px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #0ea5e9, #22c55e) border-box; /* aro hero */
  border: 3px solid transparent;
}

/* Badge RVOE grande */
.badge-rvoe {
  background: #ffffff !important;
  color: #0b1220 !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Listas del contenido con bullets legibles y buen interlineado */
.modal-tsu .tsu-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.modal-tsu .tsu-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
}
.modal-tsu .tsu-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #0ea5e9;
}

/* Metadatos compactos de la barra lateral */
.modal-tsu .tsu-meta li {
  line-height: 1.5;
}

/* CTAs del hero dentro del modal */
.modal-tsu .btn-cta-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e) !important;
  color: #fff !important;
  border: 0 !important;
}
.modal-tsu .btn-cta-outline {
  border: 2px solid #22c55e !important;
  color: #22c55e !important;
  background: transparent !important;
}
.modal-tsu .btn-cta-outline:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Precio “desde” usando color TSU */
.modal-tsu .price-teaser {
  background: rgba(250, 144, 37, 0.1);
  border: 1px solid #fa9025;
  color: #1f2937;
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border-radius: 0.6rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .modal-tsu .modal-dialog {
    margin: 0.5rem;
  }
  .modal-tsu .tsu-hero-img {
    max-height: 200px;
  }
}


/* === === === === === === === === === === 
Prueba social: alto contraste como el hero
=== === === === === === === === === === */
.proof-contrast {
  background: rgba(38, 45, 93) !important;
  border-radius: 1rem;
}

/* Video con borde “hero” */
.proof-video {
  border: 3px solid transparent;
  background: linear-gradient(#0d1f35, #0d1f35) padding-box,
    linear-gradient(45deg, #0ea5e9, #22c55e) border-box;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Testimonial cards estilo glass */
.t-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  color: #fff;
  backdrop-filter: blur(6px);
  border-radius: 0.9rem;
}
.t-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.t-stars {
  letter-spacing: 0.15rem;
  color: #ffd166;
  font-size: 0.9rem;
}

/* KPIs */
.kpi {
  text-align: center;
  color: #fff;
}
.kpi-num {
  font-weight: 1000;
  line-height: 2;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kpi-label {
  font-size: 0.9rem;
  color: #cfe8ff;
}

/* Logos en blanco sobre oscuro */
.logo-strip img {
  height: 28px;
  filter: brightness(0) invert(1) opacity(0.85);
}
@media (min-width: 992px) {
  .logo-strip img {
    height: 32px;
  }
}

/* === Testimonios: texto 100% blanco (excepto estrellas) === */
.t-card,
.t-card .card-body,
.t-card h6,
.t-card p,
.t-card .small,
.t-card .badge {
  color: #ffffff !important;
}
.t-card .text-white-50 {
  color: #ffffff !important;
  opacity: 1 !important; /* anula el 50% */
}
/* Mantén las estrellas en dorado */
.t-card .t-stars {
  color: #ffd166 !important;
}

/* Si usas la badge blanca de rol/empresa, respeta su contraste */
.t-card .badge-contrast {
  background: #ffffff !important;
  color: #0b1220 !important;
}

/* === KPIs: proporción y centrado vertical === */
.proof-band {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.proof-band .row.g-3 {
  align-items: center;
}

/* Cada KPI ocupa la misma altura y centra su contenido */
.kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}
@media (min-width: 992px) {
  .kpi {
    min-height: 110px;
  }
}

/* Tamaño y separación del número/etiqueta */
.kpi-num {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.kpi-label {
  font-size: 0.95rem;
  line-height: 1.2;
}

.section_.hero-sell {
  background: rgba(38, 45, 93) !important; /* color único */
}
.section_.hero-sell::before {
  content: none !important; /* apaga la imagen/overlay del :before */
}


/* Modales de Diplomados heredan el look del modal TSU */
.modal-diploma .modal-content{ border-radius:12px; box-shadow:0 18px 50px rgba(0,0,0,.35); }
.modal-diploma .btn-close{ opacity:.85; }
.modal-diploma .tsu-sidebar{ background:#f9f9f9; border-radius:12px; padding:20px; box-shadow:0 6px 16px rgba(0,0,0,.06); }
.modal-diploma .tsu-hero-img{
  max-height:260px; object-fit:contain; border-radius:999px; padding:4px;
  background: linear-gradient(#fff,#fff) padding-box,
              linear-gradient(45deg,#0ea5e9,#22c55e) border-box;
  border:3px solid transparent;
}
.modal-diploma .tsu-list{ list-style:none; padding-left:0; line-height:1.6; margin-bottom:1rem; }
.modal-diploma .tsu-list li{ position:relative; padding-left:1.2rem; margin-bottom:.35rem; }
.modal-diploma .tsu-list li::before{ content:"•"; position:absolute; left:0; top:0; font-weight:900; color:#0ea5e9; }
.modal-diploma .tsu-meta li{ line-height:1.5; }

/* Ribbons por programa */
.dip-ribbon{ color:#0b1220; border:0; border-top-left-radius:12px; border-top-right-radius:12px; }
.dip-ribbon.d1{ background:#fdda34; }
.dip-ribbon.d2{ background:#f7c139; }
.dip-ribbon.d3{ background:#fbb52b; }
.dip-ribbon.d4{ background:#fa9025; } /* integrador */

.badge[data-bs-toggle="modal"]{ cursor: pointer; }
.badge[data-bs-toggle="modal"]:hover{ filter: brightness(0.95); }

.kpi-num.percent::after { content: "%"; margin-left: 2px; }


/* Píldoras blancas */
.metric-cap{
  height: 92px;
  background:#fff;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(13,27,68,.25);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:.5rem;
}
.metric-cap i{ font-size: 1.75rem; color:#1fbfa1; } /* icono */

/* KPIs grandes */
.metric .kpi-num{
  font-weight: 800; line-height:1;
  font-size: 2.4rem;
  background: linear-gradient(180deg,#3bd1ff,#23d4a6);
  -webkit-background-clip:text; color:transparent;
}
.metric .kpi-label{ color:#cdd4ff; font-size:.95rem; }

@media (min-width: 992px){
  .metric .kpi-num{ font-size: 2.8rem; }
}
.metric{ transition: transform .2s ease, box-shadow .2s ease; }
.metric:hover{ transform: translateY(-2px); }


.badge.text-bg-light {
  background: #004996 !important;
  color: #fff !important;
}

/* Mostrar SIEMPRE el checkbox dentro del form de leads */
.lp-form .form-check { display:flex; align-items:center; gap:.5rem; }
.lp-form .form-check-input{
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  position: static !important;
  opacity: 1 !important;
  width: 1.1rem; height: 1.1rem; margin: 0;
}




/* Solo en el form: oculta el clon del plugin */
/* ——— FORM ETTA: deja SOLO el select nativo y oculta cualquier clon ——— */

/* 1) Fuerza que el <select> nativo se vea (aunque el plugin lo oculte) */
#leadForm select#program,
#leadForm select[name="program"]{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  -webkit-appearance:menulist !important;
  appearance:auto !important;
}

/* Si le pusieron el atributo hidden, igual muéstralo */
#leadForm select#program[hidden],
#leadForm select[name="program"][hidden]{ 
  display:block !important;
}

/* 2) Oculta TODOS los clones/skins del plugin dentro del form */
#leadForm .custom-select-container,
#leadForm .customSelect,
#leadForm [role="combobox"],
#leadForm .nice-select,
#leadForm .choices,
#leadForm .select2,
#leadForm .select2-container{
  display:none !important;
}

/* 3) Por si el plugin dejó DOS <select> nativos, oculta los extra */
#leadForm .mb-2 select + select{ 
  display:none !important; 
}


/* Form ETTA: select con flecha Bootstrap (sin flecha nativa) */
#leadForm select#program,
#leadForm select[name="program"]{
  -webkit-appearance: none !important;
  appearance: none !important;            /* oculta flecha nativa */
  background-image: var(--bs-form-select-bg-img) !important; /* caret de BS */
  padding-right: 2.25rem !important;      /* espacio para la flecha */
  display:block !important; visibility:visible !important; opacity:1 !important;
}

/* CSS VIÑETAS */
.list-bullets{
  list-style: disc !important;
  padding-left: 1.25rem !important;
}
.list-bullets li{ margin: .25rem 0; }


