body {
  font-family: "agenda", sans-serif !important;
}
:root {
  --white: #fff;
  --black: #000;
  --gray: #393939;
  --gray-light: #F2F2F2;

  --font-signika: "Signika", Arial, Helvetica, sans-serif;
}

/* =========================
   BASE
========================= */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-signika);
  font-size: 16px;
  color: var(--gray);
  background-color: var(--white);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================
   HERO / BANNER
========================= */

.banner-principal {
  position: relative;
  width: 100%;
  background-color: #0A2240;
}

.hero-bg {
  width: 50%;
  height: auto;
  display: block;
  margin-left: auto;   /* 🔥 Esto la mueve a la derecha */
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-eyebrow {
  color: #fff;
  background-color: #38b2fd;
  width: 180px;
  text-align: center;
  padding: 8px 10px 8px 10px;
  border-radius: 10px;
  font-size: 18px;
}
.hero-session {
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 20px;
}
.hero-title {
  color: #fff;
  margin-bottom: 30px;
}
.hero-meta {
  color: #fff;
}

/* Botón */
.btn-ipade-green-banner {
  background-color: #3f873f;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border: 2px #fff solid;
  width: 300px;
}

.btn-ipade-green-banner:hover {
  background-color: #2e6530;
  color: #fff;
}
/* Botón */
.btn-ipade-green {
  background-color: #3f873f;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border: 2px #fff solid;
  width: 300px;
}

.btn-ipade-green:hover {
  background-color: #2e6530;
  color: #fff;
}
/* =========================
    HERO / BANNER / MOBILE
============================= */
@media (max-width: 991px) {
    .banner-principal span {
        font-size: 0.95rem;
        text-align: left;
    }

}
@media (max-width: 991px) {
  .hero-logo {
    display: none;
  }
}

@media (max-width: 991px) {
  /* El contenedor ahora fluye normal */
  .banner-principal {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  /* El contenido deja de ser absoluto */
  .hero-content {
    position: relative;
    inset: unset;
    display: block;
    background-color: #0A2240;
    padding: 50px 20px 30px 20
  }
  /* La imagen se va abajo y ocupa todo */
  .hero-bg {
    content: url("https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/117b8034-c1b5-40f7-a3fc-d1ccdf215a42.png");
    order: 2;
    width: 100%;
    height: auto;
    margin: 0;
  }
  /* Ajustes tipográficos */
  .hero-session {
    font-size: 28px;
  }
  .hero-content .container,
  .hero-content .col-12 {
    text-align: center;
  }

  .hero-eyebrow {
    display: block;
    width: fit-content;     /* 🔥 Se ajusta al contenido */
    margin: 20px auto 10px auto;  /* 🔥 Lo centra horizontalmente */
    text-align: center;
  }
  .hero-title {
      font-size: 20px;
      line-height: 1.3;
    }

  /* Cada item en su propia línea */
  .hero-meta {
    font-size: 14px;
  }
  /* Ocultar los separadores | */
  .hero-meta .meta-sep {
    display: none;
    text-align: left;
  }

  .btn-ipade-green-banner {
    padding: 6px 26px;
    width: 200px;
  }
}

/* =========================
   SECCIONES GENERALES
========================= */
.evento-section {
  position: relative;
  padding-bottom: 0;
}
.sub-title-text{
  text-decoration: underline;
  color: #218ed2;
}
/* =========================
   PERFIL DEL CANDIDATO
========================= */
.mede-participan-section {
  font-family: var(--font-signika);
}

.text-fi-green {
  color: #2E7D32;
}

.stat-line {
  width: 3px;
  height: 40px;
  background-color: #43A047;
  border-radius: 2px;
  margin-top: 4px;
}

.mede-participan-section h2 {
  line-height: 1.3;
}

.mede-participan-section h3 {
  font-size: 2rem;
}

.mede-participan-section p.small {
  font-size: 0.9rem;
  color: #333;
}

/* =========================
   ¿POR QUÉ ASISTIR? + FORM
========================= */
.custom-bullets li {
  display: flex;
  align-items: flex-start; /* clave */
  gap: 10px;
}

.custom-bullets .bullet {
  color: #3f873f;     /* verde */
  font-size: 1.8rem;
  line-height: 0.8;
  flex-shrink: 0;     /* evita que se mueva */
}

.custom-bullets .bullet-text {
  line-height: 1.5;
}
.mede-asistir-section {
  font-family: var(--font-signika);
}

.mede-asistir-section ul li {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.form-box{
    overflow: visible !important;
}
#form {
  overflow: visible !important;
}
.mede-asistir-section .form-box {
  background-color: #0A2240;
}

.mede-asistir-section .form-box h3 {
  font-size: 1.5rem;
}

.mede-asistir-section .jotform-placeholder {
  background-color: #0D2818;
  border-radius: 0.75rem;
  overflow: hidden;
}
/* =========================
   AGENDA SECTION
========================= */

.agenda-section {
  font-family: var(--font-signika);
}

.agenda-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A2240;
  margin-bottom: 30px;
}

.agenda-date {
  font-weight: 400;
  color: #1b4f7a;
  margin-left: 8px;
}

.agenda-item {
  margin-bottom: 20px;
}

.agenda-hour {
  font-weight: bold;
  color: #1b4f7a;
  margin-bottom: 5px;
  font-size: 20px;
}

.agenda-text {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.agenda-section hr {
  border: none;
  border-top: 2px solid #000000;
  margin: 20px 0;
  width: 90%;
}

/* =========================
   JOTFORM RESPONSIVE FIX
========================= */

#JotFormIFrame-260190870667968 {
  width: 101%;
  min-height: 420px;   /* seguridad para desktop */
  border: none;
  /*overflow: hidden;*/
}

/* Mobile */
@media (max-width: 767px) {
  #JotFormIFrame-260190870667968 {
    min-height: 660px; /* en mobile siempre es más alto */
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =========================
   AGENDA
========================= */
@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

.bg-light-green {
  background-color: #d4f5d4;
  color: #000;
}


.light-green{
    background-color: #3f873f;
}
.btn-light-green {
    background-color: #3f873f;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light-green:hover {
    background-color: #4CAF50;
    color: #fff;
}
/* =========================
   PERFIL SECTION
========================= */

.perfil-section {
  background-color: #ffffff;
  font-family: var(--font-signika);
}

/* Títulos */
.perfil-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A4C7A;
  margin-bottom: 25px;
}

/* Texto intro */
.perfil-intro {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Lista izquierda */
.perfil-list {
  list-style: none;
  padding-left: 0;
}

.perfil-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 18px;
  line-height: 1.6;
  color: #333;
}

.perfil-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2a8bb8;
  font-size: 1.2rem;
}

/* Stats derecha */
.perfil-stats {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-line {
  width: 4px;
  height: 60px;
  background-color: #6bbad9;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #0D2818;
}

.stat-text {
  font-size: 1rem;
  color: #333;
  max-width: 180px;
}
/* =========================
   FOOTER
========================= */
.footer {
  padding: clamp(2.3rem, 1.8rem + 0.8vw, 2.8rem) 0;
  background-color: #0A2240;
}

.bg-fi-green {
  background-color: #3f873f;
}

footer a {
  color: #fff !important;
  text-decoration: none;
}

footer a:hover {
  color: #d4f5d4 !important;
}

footer i {
  color: #fff !important;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

footer i:hover {
  color: #d4f5d4 !important;
}

/* =========================
   MODAL VIDEO
========================= */

#videoModal .btn-close {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  filter: invert(1);
  opacity: 1;
}

#videoModal .btn-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .bottom-accent-line {
    width: 220px;
  }
}
@media (max-width: 575px) {
  .bottom-accent-line {
    width: 180px;
    height: 4px;
  }
}

@media (min-width: 992px) {
  p {
    font-size: 1.1rem; /* ajusta el tamaño a tu gusto */
    line-height: 1.7; /* opcional, se ve más elegante */
  }
.mede-asistir-section ul li {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}