@import url("https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* Boceto SUMMIT 2025 – estilos base (skeleton) */
:root {
  --brand-blue: #1bbcfb;
  --brand-dark: #0f2436;
  --accent: #00aaf8;
  --accent-2: #ffb100;
  --brand-purple: #9c27b0;
  --purple-soft: #f7eefb;
  --bg-soft: #eef6ff;
  --card-1: #ffb84d;
  --card-2: #9be2ff;
}
.text_azul {
  color: var(--brand-blue);
}

/* --- Reasons (¿Por qué asistir?) --- */
.reasons {
  padding: 20px 24px;
  scroll-margin-top: 80px;
  background-color: #e9f3ff99;
}

.reasons__container {
  max-width: 1340px;
  margin: 40px auto 20px;
  padding: 0 16px;
  scroll-margin-top: 80px; /* Offset para navbar sticky */
}

/* ------------------------ Banner ---------------------- */
/* Contenedor principal */
.banner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Contenido del banner */
.banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;    /* arriba */
  justify-content: center;    /* centrado horizontal */
  gap: 90px;                  /* espacio entre columnas */
  margin: 0;
  padding: 40px 60px;         /* respiración general */
}

/* Columna izquierda */
.left {
  display: flex;
  flex-direction: column;
  width: 720px;               /* ancho visual del bloque izquierdo */
  height: auto;
}

/* Encabezado superior (botón + fecha/hora) */
.content-top {
  display: flex;
  align-items: center;
  gap: 120px;                  /* separa botón y fecha */
  margin-bottom: 8px;
}

.left-top p {
  margin: 0;
  color: #ffffff;
}

.horario {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  width: 300px;
}

/* Separadores */
.separadorV {
  border: 1px solid #ffffff;
  height: 200px;
  margin: 0;
  margin-right: 28px;         /* espacio entre línea y texto */
}

.separadorH {
  border: 1px solid #ffffff;
  margin-top: 12px;
  width: 760px;
  transform: translateX(-72px);
}

/* Jerarquía de títulos */
.t1 {
  font-size: 26px;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 4px;
}

.t2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-top: 2px;
}

.t3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  color: #00aaf8 !important;
  margin-top: 2px;
}

/* Botones */
.btn-small {
  background: #003787;
  color: #ffffff;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  width: 300px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.left-bottom {
  display: flex;
  justify-content: flex-start;  
}

.btn-primary {
  background-color: #ffffff !important;
  color: #003787;
  font-size: 16px;
  font-weight: 800 !important;
  border-radius: 20px !important;
  cursor: pointer;
  text-transform: uppercase;
  width: 274px !important;
  height: 42px;
}

/* Columna derecha (logo) */
.right {
  display: flex;
  flex-direction: column;
  align-items: center;          /* equilibrio con la izquierda */
}

.right-logo {
  width: 600px;               /* proporción del arte respecto al texto */
  max-width: 100%;
}

/* Z-index */
.banner-content,
.left,
.right {
  position: relative;
  z-index: 10;
}

.btn-primary,
.btn-small {
  position: relative;
  z-index: 30;
}

/* Hovers */
.btn-primary:hover,
.btn-small:hover {
  background-color: #003787 !important;
  color: #ffffff !important;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1890px) {
  .banner-content {
    justify-content: center;
    gap: 70px;
    padding: 40px 40px;
  }
  .right {
    width: 560px;
  }
  .right-logo {
    width: 520px;
  }
  .left {
    width: 700px;
  }
  .separadorH {
    transform: translateX(-78px) !important;
  }
}

@media (max-width: 1400px) {
  .banner-content {
    gap: 60px;
    padding: 36px 32px;
  }
  .left, .right {
    width: auto;
  }
  .right-logo {
    width: 440px;
  }
}

@media (max-width: 1300px) {
  .separadorH, .separadorV {
    display: none;            /* arte simplificado en pantallas medianas */
  }
}

@media (max-width: 1200px) {
  .right {
    display: none;
  }
}

@media (max-width: 1000px) {
  .banner {
    height: auto;
    padding: 40px 0;
  }

  .banner-content {
    justify-content: center;
    gap: 0;
    padding: 32px 24px;
  }

  .left {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .content-top {
    flex-direction: column;
    gap: 10px;
  }

  .horario {
    justify-content: center !important;
    font-size: 14px;
  }

  .separadorH,
  .separadorV {
    display: none;
  }

  .left-bottom {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .t1 {
    font-size: 20px;
  }

  .t2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .t3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .btn-small {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .btn-primary {
    width: 100% !important;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .banner-content {
    padding: 24px 16px;
  }

  .t1 {
    font-size: 18px;
  }

  .t2 {
    font-size: 26px;
  }

  .t3 {
    font-size: 20px;
  }

  .horario {
    font-size: 13px;
  }
}


/* ---------------- HOVERS ---------------- */
.btn-primary:hover,
.btn-small:hover {
  background-color: #003787 !important;
  color: white !important;
}

/*----------------------------------------------------------------*/

* {
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
html,
body {
  min-height: 100%;
}
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--brand-dark);
  background: #ffffff;
  min-height: 100vh;
}

/* Banner superior (imagen)*/
.banner {
  width: 100%;
  background: #004EA6;
  margin-top: 63px;
}

/* Hero SUMMIT */
.hero {
  background: var(--bg-soft);
  border-left: 0.6rem solid #cfe8ff;
}
.hero__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 28px 20px;
}
.hero__title {
  margin: 0;
  font-size: 42px;
  letter-spacing: 0.5px;
  color: var(--brand-blue);
}
.hero__subtitle {
  margin: 4px 0 0;
  font-size: 18px;
  opacity: 0.8;
}

/* -------------------------Layout principal ---------------------------------*/
/* Contenedor principal */
.layout {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 40px;
  align-items: start;
}

/* Columna derecha: titular */
.lead {
  text-align: left;
}

.lead__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lead__desc {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.lead__separator {
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--brand-blue);
  margin: 20px 0;
}

.btn_inscribete {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 64px;
  border: 2px solid var(--brand-blue);
  background: #fff;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn_inscribete:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* Columna izquierda: speakers */
.speakers {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.speaker-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 20px;
}

.speaker-card__media img {
  width: 250px;
  height: auto;
  border-radius: 8px;
}

.speaker-card__body {
  flex: 1;
}

.speaker-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.speaker-card__topic {
  font-size: 16px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr; /* apilar en una columna */
    text-align: center;
  }
  .lead {
    text-align: center;
  }
  .speakers {
    align-items: center;
  }
  .speaker-card {
    flex-direction: column;
    text-align: center;
  }
  .speaker-card__media img {
    width: 140px;
  }
}

/* ----------------------------------------------------------------------------------------- */
.session {
  margin: 0;
  font-weight: 600;
  color: var(--accent);
}

/* Sesión — layout con icono y partes */
.session {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 400;
}
.session .session__icon,
.session-icon {
  /* compatibilidad temporal si existe en HTML */
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}
.session .session__label {
  color: var(--brand-blue);
  font-family: Open Sans;
  font-style: normal;
  font-size: 20px;
  line-height: 18px;
}
.session .session__date {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 20px;
}
.session .session__sep {
  margin: 0 6px 0 4px;
  color: #111;
  font-weight: 700;
}
.session .session__time {
  color: #111;
  font-weight: 700;
  font-size: 20px;
}

/* Footer */
.footer {
  max-width: 1340px;
  margin: 30px auto 40px;
  padding: 0 20px;
  opacity: 0.6;
}

/* Responsivo: ajustes progresivos */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr 420px; /* acorta la columna derecha */
  }
}

@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr; /* apilar en una columna */
    gap: 24px;
    margin: 24px auto;
    padding: 0 12px; /* reduce espacio blanco lateral */
  }
  
  .lead {
    min-width: auto;
  }
}

/* Evita desplazamiento horizontal por desbordes en móviles */
html,
body {
  overflow-x: hidden;
}
/* Ajustes específicos para pantallas muy pequeñas (<= 375px) */
@media (max-width: 375px) {
  .layout {
    padding: 0 10px; /* reduce el margen lateral */
  }
  .lead {
    max-width: 100%;
    width: 100%;
  }
  .lead__title {
    font-size: 34px;
    line-height: 38px;
    overflow-wrap: break-word; /* permite cortar palabras largas si es necesario */
    hyphens: auto; /* activa guionado automático en español */
  }
  .lead__desc {
    font-size: 14px;
    line-height: 18px;
  }
  .btn_inscribete {
    width: 100%; /* ocupa el ancho disponible sin desbordar */
    max-width: 320px; /* límite cómodo para móviles muy pequeños */
  }
}
/* Franja azul superior con menú integrado */
.topbar {
  width: 100%;
  background: var(--brand-blue);
  position: fixed; /* mantener fija en la parte superior en todo momento */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.topbar__container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* para posicionar el menú móvil absoluto */
}
.topbar img {
  height: 48px;
  width: auto;
}
/* Menu dentro del topbar: hereda clases del navbar */
.topbar .navbar__menu {
  gap: 16px;
}
.topbar .navbar__link {
  color: #fff;
}
.topbar .navbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.topbar .navbar__link--cta {
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.topbar .navbar__toggle-icon {
  background: #fff;
}

/* ===== NAVBAR / MENU DE NAVEGACION ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  position: relative;
}

.navbar__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar__item {
  margin: 0;
}

.navbar__link {
  display: inline-block;
  padding: 10px 16px;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.navbar__link:hover {
  color: var(--brand-blue);
  background: rgba(27, 188, 251, 0.08);
}

.navbar__link--cta {
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(27, 188, 251, 0.2);
}

.navbar__link--cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(27, 188, 251, 0.3);
}

/* Compensación de la barra fija en la parte superior */
body {
  padding-top: 64px; /* altura mínima del topbar */
}

/* Botón toggle para móvil */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar__toggle-icon {
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive: Menú móvil */
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .topbar .navbar__link {
    color: black;
  }

  .topbar .navbar__link:hover {
  color: var(--brand-blue);
}

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .navbar__menu[aria-expanded="true"] {
    max-height: 500px;
    opacity: 1;
    pointer-events: all;
  }

  .navbar__item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar__item:last-child {
    border-bottom: none;
  }

  .navbar__link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 0;
  }

  .navbar__link--cta {
    margin-top: 8px;
    border-radius: 8px;
    text-align: center;
  }

  /* Animación del icono hamburguesa */
  .navbar__toggle[aria-expanded="true"] .navbar__toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .navbar__toggle[aria-expanded="true"] .navbar__toggle-icon:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle[aria-expanded="true"] .navbar__toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 480px) {
  .navbar__container {
    padding: 0 16px;
  }

  .navbar__link {
    font-size: 14px;
    padding: 12px 14px;
  }
}

.title_form {
  font-family: Open Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -4%;
  text-align: center;
}
/* Separador vertical entre columnas */

.signup-form {
  width: 100%;
  max-width: 480px;
  background: #f8fbff; /* fondo suave para el bloque del formulario */
  border: 1px solid #dbeafe; /* borde claro */
  border-radius: 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 2px 8px rgba(9, 58, 134, 0.06);
}
.signup-form__title {
  margin: 0 0 12px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-blue);
}
.signup-form__body {
  min-height: 120px; 
}

/*---------------------------------------------------------------------------------*/

.countdown--signup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.countdown__form {
    width: 600px;
    height: 500px;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.title_form {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #00a0e3;
}

.countdown__form iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {

    .countdown__form {
        width: 90%;
        height: 500px;       
        padding: 20px;
    }

    .countdown__form iframe {
        height: 700px;
    }

    .title_form {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .countdown__form {
        width: 100%;
        padding: 15px;
        border-radius: 12px;
    }

    .countdown__form iframe {
        height: 650px;
    }

    .title_form {
        font-size: 22px;
    }
}

/* ==========================
   Sección: Dos sesiones magistrales
   ========================== */

.sessions__inner {
  max-width: 1200px;      /* ancho controlado */
  margin: 0 auto;         /* centrado */
  background-color: #e9f3ff99; /* mismo color del fondo */
  border-radius: 24px;
  padding: 60px 60px;
}

.sessions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}


.sessions {
  padding: 10px 24px;
  scroll-margin-top: 80px; /* Offset para navbar sticky */
}
.sessions__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 39.81px;
  line-height: 43px;
  text-align: center;
  margin-bottom: 28px;
}
.sessions__title .accent-blue {
  color: var(--brand-blue);
}
.session-card {
  display: flex;
  flex-direction: column;
  /* background: #fff; */
  border-radius: 14px;
  padding: 22px 22px 26px;
  height: 100%;
  min-height: 0;
  background: transparent;
  padding: 0;
}
.session-card__label {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  margin-bottom: 12px;
  color: white;
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 18.13px;
  line-height: 19.67px;
  letter-spacing: -4%;
}
.session-card__text--green {
  color: #003787;
}
.session-card__text--orange {
  color: #007BFF;
}
.session-card__label--orange {
  background: #007BFF;
}
.session-card__label--green {
  background: #003787;
}
.session-card__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 33.18px;
  line-height: 39px;
  margin: 4px 0 6px;
}
.session-card__subtitle {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 6px;
}
.session-card__meta {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}

.session-card__bullets_claro {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  line-height: 27px;
}

.session-card__bullets_claro li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  margin: 6px 0;
}

.session-card__bullets_claro li::before {
  content: "";
  display: inline-block; /* importante */
  width: 16px;
  height: 16px;
  background-image: url("../img/Check-oscuro.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 4px;
}

.session-card__bullets_oscuro {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 27px;
}

.session-card__bullets_oscuro li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  margin: 6px 0;
}

.session-card__bullets_oscuro li::before {
  content: "";
  display: inline-block; /* importante */
  width: 16px;
  height: 16px;
  background-image: url("../img/Check-azul.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 4px;
}

.session-card__desc {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 14px;
  padding-bottom: 15px;
}
.session-card__learn {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 23.04px;
  line-height: 25px;
  margin: 0px 0 10px;
}
.session-card__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: accordion-counter;
}
.session-card__list > li {
  margin-bottom: 14px;
  counter-increment: accordion-counter;
  position: relative;
}
.session-card__list > li::before {
  content: counter(accordion-counter) ".";
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: 700;
  width: 24px;
  line-height: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.session-card__profile-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.session-card__profile,
.session-card__profile-info,
.session-card__profile-content {
    overflow: visible;
    flex-wrap: wrap;
}

@media (max-width: 1039px) {

    .leaders__grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .leader-card {
        max-width: 700px;
        margin: 0 auto;
    }

    .session-card__profile {
        flex-direction: column;
        gap: 20px;
        align-items: center !important;
    }

    .session-card__profile-info {
        flex-direction: column;
        text-align: center;
    }

    .session-card__profile-content {
        text-align: center;
    }

    .session-card__xp-list {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        text-align: left; 
    }
}

@media (max-width: 900px) {

    .leaders__grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .leader-card {
        transform: scale(0.95);
        transform-origin: top center;
    }

    .session-card__profile-photo img {
        max-width: 250px;
    }

    .session-card__profile-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 750px) {

    .leader-card {
        transform: scale(0.88);
    }

    .session-card__profile-photo img {
        max-width: 220px;
    }

    .session-card__profile-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {

    .leader-card {
        transform: scale(1); 
        width: 100%;
    }

    .session-card__profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .session-card__profile-info {
        flex-direction: column;
        align-items: center;
    }

    .session-card__profile-photo img {
        max-width: 180px;
    }

    .session-card__profile-content {
        text-align: center;
        font-size: 0.95rem;
    }

    .session-card__xp-list {
        text-align: left; 
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 450px) {

    .session-card__profile-photo img {
        max-width: 150px;
    }

    .session-card__profile-title {
        font-size: 1.1rem;
    }

    .session-card__profile-subtitle {
        font-size: 0.85rem;
    }

    .session-card__xp-list li {
        font-size: 0.85rem;
    }
}

/*----------------------------------------------------------------*/

/* Colores de números según el tema */
.session-card__list-title--orange > li::before {
  color: #007BFF;
}

.session-card__list-title--green > li::before {
  color: #003787;
}
.session-card__list-title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 20px;
}
.session-card__list-title--green {
  color: #003787;
}
.session-card__list-title--orange {
  color: #007BFF;
}
.session-card__list-title--orange ul,
.session-card__list-title--green ul {
  color: black;
}
.session-card__list ul {
  margin: 6px 0 0 18px;
}
.session-card__list ul li {
  margin: 4px 0;
  opacity: 0.9;
}

/* ===== ACCORDION STYLES ===== */
.session-accordion__item {
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.session-accordion__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0 12px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  position: relative;
  min-height: 24px;
}

.session-accordion__button:hover {
  opacity: 0.8;
}

.session-accordion__button .session-card__list-title {
  flex: 1;
  margin: 0;
  padding-right: 16px;
  line-height: 24px;
  display: inline-block;
}

/* Mantener colores de los títulos según el tema */
.session-card__list-title--orange
  .session-accordion__button
  .session-card__list-title,
.session-accordion__button .session-card__list-title {
  color: inherit;
}

.session-card__list-title--orange
  .session-accordion__button
  .session-card__list-title {
  color: #007BFF;
}

.session-card__list-title--green
  .session-accordion__button
  .session-card__list-title {
  color: #003787;
}

.session-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.session-accordion__button[aria-expanded="true"] .session-accordion__icon {
  transform: rotate(45deg);
}

.session-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.session-accordion__button[aria-expanded="true"] + .session-accordion__content {
  max-height: 1000px;
  padding: 0 0 12px 0;
}

.session-accordion__content ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.session-accordion__content ul li {
  margin: 4px 0;
  opacity: 0.9;
}


/* Mensaje destacado dentro de la tarjeta de sesión */
.session-card__note {
  margin: 12px 0 18px;
  padding: 16px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  background: linear-gradient(180deg, #f0f6f2 0%, #eef6f0 100%);
  border: 2px solid #d6ead6;
}
.session-card__note--green {
  border-color: #003787;
}
.session-card__note--orange {
  border-color: #007BFF;
}

/* Responsive sesiones */
@media (max-width: 900px) {
  .sessions {
    padding: 10px 18px;
  }
  .sessions__title {
    font-size: 24px;
  }
  .sessions__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bonus {
    padding: 40px 18px;
  }

  .bonus__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .bonus__card {
    padding: 24px !important;
  }

  .bonus__eyebrow-row {
    flex-direction: column;
  }

  .testimonials__author {
    flex-direction: column;
  }

  .bonus__card-title {
    font-size: 22px;
  }

  .session-card {
    padding: 18px;
  }
  .session-card__title {
    font-size: 20px;
  }
  .session-card__subtitle {
    font-size: 13px;
  }
  .session-card__desc {
    font-size: 12.5px;
  }
  .challenge__inner {
    padding-bottom: 80px;
  }
}

/* ==========================
   Sección: Líderes (Expertos)
   ========================== */
.leaders {
  padding: 0px 24px 0px;
}

.leaders__inner {
  max-width: 800px;          /* mismo ancho que sesiones */
  margin: 0 auto;             /* centrado */
  border-radius: 24px;
  padding: 0px 60px;
}

.leaders__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.leaders__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 39.81px;
  line-height: 43px;
  letter-spacing: -4%;
  text-align: center;
  margin: 70px 0 0px;
}

.leader-card {
  background: transparent;
  border-radius: 16px;
  padding: 8px;
}

.leader-card {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.leader-card--green .session-card__profile__sesion2,
.leader-card--orange .session-card__profile__sesion1 {
  border-radius: 16px;
}

@media (max-width: 900px) {
  .leaders__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .leaders__title {
    font-size: 24px;
  }
}

/* Perfil dentro de tarjeta */
.session-card__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.session-card__left { 
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
} 

.session-card__right { 
  display: flex; 
  flex-direction: column; 
  gap: 16px;
}

.session-card__left {
  position: relative;
  padding-right: 40px;
}

.session-card__left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 370px;
  background-color: #a2c8f0; /* azul brand */
  border-radius: 2px;
}

.session-card__right {
  padding-left: 40px;
}

@media (max-width: 768px) { 
  .session-card__content { 
    grid-template-columns: 1fr; /* una sola columna */ 
  } 
  .session-card__right { 
    margin-top: 20px; 
  } 
}

@media (max-width: 900px) {
  .sessions__inner {
    padding: 32px 24px;
  }

  .session-card__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .session-card__right {
    margin-top: 10px;
  }
}

@media (max-width: 900px) {
  .session-card__content {
    grid-template-columns: 1fr;
  }

  .session-card__left {
    padding-right: 0;
  }

  .session-card__left::after {
    display: none;
  }

  .session-card__right {
    padding-left: 0;
  }
}

.session-card__profile-info {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.session-card__profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 0;
}

/* Estructura para alinear secciones del perfil */
.session-card__profile-content > .session-card__profile-text:first-of-type {
  min-height: 50px;
  margin: 0 0 16px 0;
}

.session-card__profile-highlight {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;

  min-height: 24px;
  display: flex;
  align-items: center;
}

/* Sección Respaldo Profesional - altura fija para alinear */
.session-card__profile-content
  > .session-card__profile-highlight:first-of-type {
  margin: 0 0 6px 0;
}

.session-card__profile-content
  > .session-card__profile-highlight:first-of-type
  + .session-card__xp-list {
  min-height: 240px;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Sección Respaldo Académico - altura fija y alineada */
/* Asegurar que el título "Respaldo Académico:" esté exactamente a la misma altura */
/* Altura total hasta aquí: 50px (texto) + 16px (margen) + 24px (título) + 6px (margen) + 240px (lista) + 20px (margen) = 356px */
.session-card__profile-content
  > .session-card__profile-highlight:nth-of-type(2) {
  margin: 0 0 6px 0;
}

.session-card__profile-content
  > .session-card__profile-highlight:nth-of-type(2)
  + .session-card__xp-list {
  /*min-height: 180px;*/
  /*margin: 0 0 20px 0;*/
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Sección "Su especialidad" - altura fija */
.session-card__profile-content > .session-card__profile-text:last-of-type {
  min-height: 70px;
  margin-top: 20px;
  /* display: flex;
  align-items: flex-start; */
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
}
.session-card__profile {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  align-items: start;
  flex: 1;
  min-height: 0;
}
.session-card__profile__sesion1 {
  border-radius: 15px;
  /* border: 1px solid rgba(254, 172, 8, 0); */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #d3e8ff 100%
  );
}
.session-card__profile__sesion2 {
  border-radius: 15px;
  /* border: 1px solid rgba(112, 193, 0, 0); */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #d3e8ff 100%
  );
}
.session-card__profile-photo {
  place-items: center;
  overflow: hidden;
}
.session-card__profile-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.session-card__profile-title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -4%;
  margin: 0 0 4px;
}
.session-card__profile-subtitle {
  width: 90%;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0%;

  margin: 0 0 10px;
}
.session-card__profile-text {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -4%;

  margin: 10px 0;
}
.text-comunidad-activa {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 23.04px;
  line-height: 25px;
  letter-spacing: -4%;
}
.session-card__profile-highlight {
  margin: 20px 0 6px;
}
.session-card__xp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  height: 145px;
}
.session-card__xp-list li {
  position: relative;
  padding-left: 24px;
  margin: 6px 0;
}
.session-card__xp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("../img/Check-oscuro.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.session-card__xp-list li.--green::before {
  color: #003787;
}
.session-card__xp-list li.--orange::before {
  /* Usar check amarillo para las listas de experiencia de la sesión naranja */
  background-image: url("../img/Check-azul.svg");
}

@media (max-width: 1249px){
  .session-card__xp-list {
    margin-bottom: 15px;
  }
}

@media (max-width: 1035px){
  .session-card__xp-list {
    margin-bottom: 15px;
  }
}

@media (max-width: 900px) {
  .session-card__profile {
    grid-template-columns: 1fr;
  }
  .session-card__profile-photo {
    height: auto;
  }
  .session-card__profile-title {
    font-size: 16px;
  }
  .session-card__content {
    height: initial;
  }
  .session-card__profile-info {
    flex-direction: column;
  }
  .quote__mark {
    display: none;
  }
  .navbar {
    display: none;
  }
  .session-card__xp-list {
    height: initial;
  }
}

@media (max-width: 900px) {
  .leaders__inner {
    padding: 32px 24px;
  }

  .leaders__title {
    font-size: 24px;
  }

  .session-card__profile {
    padding: 24px;
  }
}


/* ===== Sticky Footer ===== */
body {
  padding-bottom: 64px; /* espacio para footer fijo */
}

.site-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  z-index: 1000;
}

.site-footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.4;
}

.container-banner {
  max-width: 1400px;
  margin: 0 auto;
  background: white;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 160px;
  gap: 0;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

/* Fila superior */
.box1 {
  grid-column: 1 / 2;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.box2 {
  grid-column: 3 / 4;
  background: #2c3e7f;
}

.box3 {
  grid-column: 4 / 5;
  background: #00a0e3;
}

.box4 {
  grid-column: 5 / 6;
  background: #87ceeb;
}

.box5 {
  grid-column: 6 / 7;
  background: linear-gradient(135deg, #ff9500 0%, #ffa500 100%);
}

.box6 {
  grid-column: 7 / 8;
  background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
}

.box7 {
  grid-column: 8 / 10;
  background: linear-gradient(135deg, #00a0e3 0%, #0288d1 100%);
}

/* Fila inferior */
.box8 {
  grid-column: 1 / 2;
  background: #00a0e3;
}

.box9 {
  grid-column: 2 / 3;
  background: linear-gradient(135deg, #ff9500 0%, #ffa500 100%);
}

.box10 {
  grid-column: 3 / 4;
  background: #2c3e7f;
}

.box11 {
  grid-column: 4 / 5;
  background: #00a0e3;
}

.box12 {
  grid-column: 5 / 8;
  background: white;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.box13 {
  grid-column: 8 / 10;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Iconos placeholder */
.icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* Contenido del texto */
.text-content h1 {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}

.text-content .blue {
  color: #00a0e3;
}

.text-content .black {
  color: #000;
}

.text-content p {
  color: #333;
  font-size: 1.1em;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .box1 {
    grid-column: 1 / 2;
  }
  .box2 {
    grid-column: 3 / 4;
  }
  .box3 {
    grid-column: 4 / 5;
  }
  .box4 {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .box5 {
    grid-column: 2 / 3;
    grid-row: 2;
  }
  .box6 {
    grid-column: 3 / 4;
    grid-row: 2;
  }
  .box7 {
    grid-column: 4 / 5;
    grid-row: 2;
  }
  .box8 {
    grid-column: 1 / 2;
    grid-row: 3;
  }
  .box9 {
    grid-column: 2 / 3;
    grid-row: 3;
  }
  .box10 {
    grid-column: 3 / 4;
    grid-row: 3;
  }
  .box11 {
    grid-column: 4 / 5;
    grid-row: 3;
  }
  .box12 {
    grid-column: 1 / 5;
    grid-row: 4;
  }
  .box13 {
    grid-column: 1 / 5;
    grid-row: 5;
  }
}

@media (max-width: 768px) {
  .text-content h1 {
    font-size: 2em;
  }

  .text-content p {
    font-size: 0.9em;
  }
}

/* ==========================
   Sección: Respaldo ContaPyme
   ========================== */
.backing {
  padding: 100px 24px;
  background: #ffffff;
}
.backing__inner {
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}
.backing__title {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 39px;
  line-height: 38px;
  margin: 0 0 8px;
}
.backing__title .accent-blue {
  color: var(--brand-blue);
}
.backing__subtitle {
  font-size: 16px;
  color: #5c6b7a;
  margin: 0 0 24px;
}
.backing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.backing-card {
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  color: #fff;
}
.backing-card--light {
  background: #00acfc; /* azul claro */
}
.backing-card--blue {
  background: #007fe7; /* azul vivo */
}
.backing-card--dark {
  background: #0f3880; /* azul oscuro */
}
.backing-card__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backing-card__icon img {
  max-width: 143px;
  height: 129px;
}
.backing-card__headline {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 23.04px;
  line-height: 25px;
  letter-spacing: -4%;
  text-align: center;
  margin: 6px 0 4px;
}
.backing-card__desc {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
  opacity: 0.9;
  text-align: center;
}

@media (max-width: 900px) {
  .backing {
    padding: 30px 18px;
  }
  .backing__title {
    font-size: 24px;
  }
  .backing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================
   Sección: Éxito al Azar (CTA)
   ========================== */
.success-cta {
  padding: 100px 24px;
}
.success-cta__inner {
  max-width: 1340px;
  margin: 0 auto;
  background: #073b7b; /* azul profundo */
  border-radius: 18px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
}
.success-cta__icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #ffaa00; /* bloque naranja detrás del ícono */
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-cta__icon img {
  width: 48px;
  height: auto;
}
.success-cta__title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 6px 0;
}
.success-cta__title .accent {
  color: var(--accent);
}
.success-cta__desc {
  color: #e8f1ff;
  margin: 0;
  line-height: 1.6;
}
.success-cta__button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .success-cta__inner {
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .success-cta {
    padding: 18px 12px;
  }
  .success-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
  .success-cta__icon {
    margin: 0 auto;
  }
  .success-cta__button {
    justify-self: center;
  }
}
