@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 */
}

/* --- Testimonials --- */
.testimonials {
  max-width: 1340px;
  margin: 100px auto 100px;
  padding: 0 16px;
  text-align: center;
  scroll-margin-top: 80px; /* Offset para navbar sticky */
}
.testimonials__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 39.81px;
  leading-trim: NONE;
  line-height: 40px;
  letter-spacing: -4%;
  text-align: center;
  margin: 0 0 18px;
}
.testimonials__title span {
  color: #1ea7fd;
}
.testimonials__quote {
  position: relative;
  max-width: 820px;
  margin: 0 auto 18px;
}
.quote__text {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 35px;
  letter-spacing: -4%;
  text-align: center;
  color: #222;
  margin: 0 52px;
}
.quote__highlight {
  color: #1ea7fd;
}
.quote__mark {
  position: absolute;
  width: 96px;
  height: auto;
  opacity: 0.9;
}
.quote__mark--left {
  left: -90px;
  top: -8px;
}
.quote__mark--right {
  right: -90px;
  top: -8px;
}

.testimonials__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.author__avatar {
  width: 99px;
  height: 99px;
  border-radius: 50%;
  object-fit: cover;
}
.author__name {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 27.65px;
  leading-trim: NONE;
  line-height: 31px;
  letter-spacing: -4%;
}
.author__role {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 27.65px;
  leading-trim: NONE;
  line-height: 31px;
  letter-spacing: -4%;
  color: #606f7b;
}
.testimonials__container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Skeletons */
.skeleton {
  background: linear-gradient(90deg, #eef2f7 0%, #f6f8fb 50%, #eef2f7 100%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s ease-in-out infinite;
}
.skeleton--circle {
  border-radius: 50%;
}
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 900px) {
  .testimonials__title {
    font-size: 24px;
  }
  .quote__text {
    font-size: 18px;
  }
  .quote__mark {
    width: 72px;
    height: auto;
  }
  .author__avatar {
    width: 60px;
    height: 60px;
  }
}
.reasons__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 39.81px;
  leading-trim: NONE;
  line-height: 43px;
  letter-spacing: -4%;
  text-align: center;

  text-align: center;
  margin: 0 0 22px;
}
.reasons__title span {
  color: #1ea7fd;
}
.reasons__subtitle {
  text-align: center;
  font-size: 16px;
  color: #222;
  margin: -8px 0 22px;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.reason-card {
  background: #fff;
  border: 1.5px solid #a8d8ff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 20px;
}
.reason-card__number {
  font-size: 28px;
  font-weight: 800;
  color: #26a8ff;
  margin-bottom: 8px;
}
.reason-card__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 23.04px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: -4%;
  margin: 4px 0 10px;
}
.reason-card__subtitle {
  font-size: 12px;
  color: #1ea7fd;
  margin: -6px 0 8px;
}
.reason-card__desc {
  font-size: 16px;
  color: #394a5a;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reasons__title {
    font-size: 24px;
  }
  .reason-card__title {
    font-size: 18px;
  }
  .reason-card__number {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .countdown {
    padding: 18px;
    border-radius: 14px;
  }
  .countdown__value {
    font-size: 42px;
  }
  .countdown__stats {
    gap: 10px;
  }
  .countdown__pill {
    font-size: 12px;
    padding: 8px 10px;
    gap: 8px;
  }
}

* {
  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: var(--accent-2);
  margin-top: 63px;
}
.banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* 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 */
.layout {
  max-width: 1340px;
  margin: 100px auto;
  padding: 0 20px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 604px; /* ensancha columna derecha para que los temas ocupen 2 líneas */
  scroll-margin-top: 80px; /* Offset para navbar sticky */
}

/* Columna izquierda */
.lead {
  min-width: 430px;
  max-width: 517px;
}
.lead__title {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  /* margin: 0 0 14px; */
}
.lead__rolling {
  display: inline-block;
  margin-top: -6px;
}
.lead__rolling-number {
  font-weight: 700;
  margin-right: 6px;
}
.lead__rolling-word {
  display: inline-block;
  font-weight: 700;
}
@keyframes leadRollingSwap {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-70%);
    opacity: 0;
  }
  60% {
    transform: translateY(70%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.lead__word--rolling {
  animation: leadRollingSwap 480ms ease;
}
.accent {
  color: var(--accent);
}
.lead__desc {
  margin: 20px 0 20px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.lead__separator {
  display: inline-block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--brand-blue);
  margin: 10px 0 12px;
}
.lead__cert {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 22.16px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);

  &.amarillo {
    background: #ffce00;
  }
  &.azul {
    background: var(--accent);
  }
}

.btn_inscribete {
  width: 230px;
  height: 49px;
  border-radius: 64px;
  color: black;
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 18.05px;
  line-height: 23.21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Columna derecha – speakers */
.speakers {
  display: grid;
  scroll-margin-top: 80px; /* Offset para navbar sticky */
  width: 100%;
  height: auto;
  min-width: 0;
  max-width: 604px;
  gap: 8px;
}
.speaker-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: start;
}
.speaker-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.speaker-card__media {
  height: 199px;
  display: block;
  overflow: hidden;
}
.speaker-card__media img {
  width: 220px;
  height: 199px;
}

.speaker-card__name {
  margin: 0 0 6px;
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 23.04px;
  line-height: 25px;
}
.speaker-card__topic {
  margin: 0 0 10px;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 20px;
  /* Mostrar texto completo. Sin clamp, se ajusta por ancho de columna */
  display: block;
}
.session {
  margin: 0;
  font-weight: 600;
  color: var(--accent);
}
.session__info {
}

/* 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: 900px) {
  .layout {
    grid-template-columns: 1fr 360px; /* aún dos columnas, más compactas */
  }
  .speaker-card {
    grid-template-columns: 160px 1fr;
  }
  .speaker-card__media {
    height: 180px;
  }
  .speaker-card__media img {
    width: 160px;
    height: 180px;
  }
}

@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 */
  }
  .speakers {
    max-width: 100%;
    padding: 20px;
  }
  .lead {
    min-width: auto;
  }
  .speaker-card {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .speaker-card__media {
    width: 100%;
    height: auto; /* permite que la imagen defina la altura */
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
  }
  .speaker-card__media img {
    width: 100%;
    max-width: 320px; /* más pequeña en móvil */
    height: auto;
    object-fit: contain; /* se ve completa sin recortar */
    display: block;
    margin: 0 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;
  }
}

/* Sección: El Desafío */
.challenge__content {
  max-width: 680px;
}
.challenge {
  max-width: 1340px;
  margin: 30px auto;
}
.challenge__inner {
  display: grid;
  grid-template-columns: 1fr 360px; /* texto izquierda, arte derecha */
  align-items: center;
  gap: 28px;
  padding-bottom: 100px;
  border-bottom: 1px solid #c8c5c5;
}
.challenge__eyebrow {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 22px;
}
.challenge__title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.15;
  color: #000;
}
.challenge__desc {
  margin: 0;
  max-width: 680px;
  opacity: 0.85;
}
.challenge__art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.challenge__badge {
  display: grid;
  place-items: center;
}
.challenge__badge--blue {
  grid-column: 2;
  grid-row: 1;
}
.challenge__badge--orange {
  grid-column: 1;
  grid-row: 2;
}
.challenge__badge img {
  width: 100%;
  height: auto;
}

/* Countdown section */
.countdown {
  max-width: 1340px;
  margin: 100px auto;
  background: #f2f6fb;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto 480px; /* separador central como columna auto */
  gap: 24px;
  align-items: center;
}

/* Variante con formulario (rediseño) */
.countdown--signup {
  background: #ffffff;
  border: 1px solid #86c5ff; /* contorno azul suave como el diseño */
  border-radius: 16px;
  padding: 24px;
}

.countdown__figure {
  display: flex;
  justify-content: center;
}
.countdown__figure img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.countdown__form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.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 */
.countdown__divider {
  width: 1px;
  background: #86c5ff;
  opacity: 0.8;
  align-self: stretch;
  justify-self: center;
  border-radius: 1px;
}
.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; /* espacio para que luego se inserten campos */
}
.countdown__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center; /* centramos números y pill en la columna izquierda */
}
.countdown__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 50px; /* ligeramente más compacto */
  justify-items: center;
  margin: 0;
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__value {
  font-size: 100px; /* números un poquito más grandes */
  line-height: 1;
  color: var(--brand-blue);
  font-weight: 500;
  font-family: "Plus Jakarta Sans", "Open Sans", system-ui, sans-serif;
  margin-bottom: 4px;
  display: inline-block;
  font-variant-numeric: tabular-nums; /* evita saltos de ancho */
}
.countdown__label {
  margin-top: 4px;
  font-size: 11px; /* etiquetas ligeramente más pequeñas */
  letter-spacing: 0.8px;
  opacity: 0.7;
  text-align: center;
}

/* Animación de rolling para cambio de dígitos */
.countdown__value--rolling {
  animation: countdown-roll-in 400ms ease-out;
}
/* Animación por dígito */
.countdown__digit {
  display: inline-block;
  color: inherit;
}
/* Asegurar color azul en los dígitos frente a reglas globales de newStyle.css */
.countdown__value .countdown__digit,
.countdown__value span {
  color: var(--brand-blue);
}
.countdown__digit--rolling {
  animation: countdown-roll-in 400ms ease-out;
}
@keyframes countdown-roll-in {
  0% {
    transform: translateY(-0.6em);
    opacity: 0.2;
    filter: blur(2px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.countdown__cta {
  grid-column: 1 / -1;
  display: grid;
  place-items: center; /* centramos la pill bajo los números */
  margin-top: 12px;
  justify-content: center;
}
.countdown__pill {
  background: #093a86;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px; /* un poco más grande para mejor legibilidad */
  display: inline-flex;
  gap: 14px;
  font-size: 16px; /* texto ligeramente más pequeño */
  width: auto;
  max-width: 100%;
  justify-content: center;
  flex-wrap: nowrap; /* evitar salto de línea en desktop */
  white-space: nowrap; /* mantener todo en una sola línea */
}
/* Evitar que reglas globales (newStyle.css) coloreen de gris los textos internos */
.countdown__pill span,
.countdown__pill a,
.countdown__pill strong {
  color: #fff;
}
.countdown__pill .dot {
  opacity: 0.5;
}

/* Columna derecha: arte del cohete */
.countdown__art {
  display: flex;
  align-items: flex-end; /* alinea base del cohete con la parte baja del contenedor */
  justify-content: flex-end; /* empuja el arte hacia la derecha */
  margin-right: 40px;
}
.countdown__art img {
  width: 100%;
  max-width: 360px; /* cohete más pequeño */
  height: auto;
}

@media (max-width: 900px) {
  .challenge__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .challenge__art {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    justify-items: center;
    gap: 14px;
  }
  /* Reset de posiciones para que no generen columnas implícitas */
  .challenge__badge--blue {
    grid-column: 1;
    grid-row: 1;
  }
  .challenge__badge--orange {
    grid-column: 2;
    grid-row: 1;
  }
  .challenge__badge {
    width: clamp(120px, 42vw, 150px);
    height: clamp(120px, 42vw, 150px);
  }
  .countdown {
    grid-template-columns: 1fr; /* apilar en una columna */
    gap: 16px;
    height: 1180px;
  }
  .countdown__inner {
    grid-template-columns: 1fr;
  }
  .countdown__divider {
    display: none; /* ocultar separador en pantallas pequeñas */
  }
  .signup-form {
    max-width: 100%;
  }
  .countdown__cta {
    justify-content: center;
  }
  .countdown {
    padding: 0 22px;
    margin: 0 30px;
  }
  .countdown__stats {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    gap: 12px;
  }
  .countdown__value {
    font-size: 48px;
  }
  .countdown__label {
    font-size: 11px;
  }
  .countdown__pill {
    font-size: 12px;
    padding: 8px 12px;
    gap: 10px;
    flex-wrap: wrap; /* en pantallas pequeñas permitimos el salto */
  }
  .countdown__art {
    justify-content: inherit;
    margin-right: 0;
  }
  .countdown__art img {
    max-width: 300px;
  }
}

/* ==========================
   Sección: Dos sesiones magistrales
   ========================== */
.sessions {
  padding: 100px 24px;
  scroll-margin-top: 80px; /* Offset para navbar sticky */
  background-color: #e9f3ff99;
}
.sessions__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.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);
}
.sessions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.session-card {
  display: flex;
  flex-direction: column;
  /* background: #fff; */
  border-radius: 14px;
  padding: 22px 22px 26px;
  height: 100%;
  min-height: 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: #70c100;
}
.session-card__text--orange {
  color: #ffaa00;
}
.session-card__label--orange {
  background: #ffaa00;
}
.session-card__label--green {
  background: #70c100;
}
.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-style: Regular;
  font-size: 18px;
  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 {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 27px;
}
.session-card__bullets li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  margin: 6px 0;
}
.session-card__bullets li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: none;
  background-image: url("../img/checkamarillo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 4px;
}

/* Variante: bullets con check verde */
.session-card__bullets.session-card__bullets--green li::before {
  background-image: url("../img/checkverde.svg");
}
.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: 8px 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;
}

/* Colores de números según el tema */
.session-card__list-title--orange > li::before {
  color: #ffaa00;
}

.session-card__list-title--green > li::before {
  color: #70c100;
}
.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: #70c100;
}
.session-card__list-title--orange {
  color: #ffaa00;
}
.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: #ffaa00;
}

.session-card__list-title--green
  .session-accordion__button
  .session-card__list-title {
  color: #70c100;
}

.session-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-blue);
  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;
}

/* ===== BONUS SECTION ===== */
.bonus {
  padding: 100px 24px;
  scroll-margin-top: 80px; /* Offset para navbar sticky */
}

.bonus__inner {
  max-width: 1340px;
  margin: 0 auto;
}

.bonus__title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
}

.bonus__title .accent-blue {
  color: var(--brand-blue);
}

.bonus__card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8f4fd;
}

/* 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: #70c100;
}
.session-card__note--orange {
  border-color: #ffaa00;
}

.bonus__header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e8f4fd;
}

.bonus__label {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent));
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bonus__card-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--brand-dark);
}

.bonus__speaker {
  margin-top: 12px;
}

.bonus__speaker-name {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 27.65px;
  leading-trim: NONE;
  line-height: 31px;
  letter-spacing: -4%;
  text-align: center;

  margin: 0 0 4px 0;
  color: var(--brand-dark);
}

.bonus__speaker-role {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
  color: #981a9e;
}

.bonus__content {
  margin-top: 16px;
}

.bonus__learn-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 14px 0;
  color: var(--brand-purple);
}

.bonus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.bonus__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 0;
}

.bonus__checkmark {
  /* Usar ícono morado en lugar del carácter */
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("../img/checkmorado.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Ocultar el carácter ✓ sin afectar accesibilidad visual */
  color: transparent;
  font-size: 0;
  line-height: 16px;
}

.bonus__list-item span:last-child {
  flex: 1;
  line-height: 1.6;
  color: var(--brand-dark);
}

/* 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: 100px 24px 100px;
  background-color: #e9f3ff99;
}

/* ==========================
   Rediseño: Bonus Extra (Curso extra)
   ========================== */
.accent-purple {
  color: var(--brand-purple);
}
.bonus__title {
  font-size: 24px;
  margin: 0 0 18px 0;
}
.bonus__card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: center;
  padding: 80px;
  border: 2px solid rgba(156, 39, 176, 0.35);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-soft) 100%);
}
.bonus__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bonus__icon-placeholder {
  width: 101px;
  height: 96px;
  border-radius: 16px;
  background: var(--brand-purple);
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.25);
}
.bonus__eyebrow {
  color: var(--brand-purple);
  font-weight: 700;
  font-style: Bold;
  font-size: 33.18px;
  line-height: 39px;
}
.bonus__card-title {
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0 6px 0;
}
.bonus__meta {
  color: black;
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 25px;
}
.bonus__speaker-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bonus__speaker-bg {
  width: 280px;
  height: 200px;
  border-radius: 28px;
  background: var(--brand-purple);
}
.bonus__speaker-photo {
  width: 240px;
  height: auto;
  object-fit: cover;
}
.bonus__speaker-caption {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .bonus__card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bonus__speaker-bg {
    width: 100%;
    max-width: 320px;
  }
}
.leaders__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.leaders__title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 39.81px;
  leading-trim: NONE;
  line-height: 43px;
  letter-spacing: -4%;
  text-align: center;
  margin: 0 0 24px;
}
.leaders__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.leader-card {
  background: transparent;
  border-radius: 16px;
  padding: 8px;
}
.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 {
  height: auto;
  flex: 0 0 auto;
}
.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;
  leading-trim: NONE;
  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: auto;
  /* display: flex;
  align-items: flex-start; */
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 22px;
  letter-spacing: 0%;
}
.session-card__profile {
  display: flex;
  flex-direction: column;
  padding: 20px;
  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%,
    rgba(255, 244, 221, 0.5) 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%,
    rgba(112, 193, 0, 0.1) 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: 27.65px;
  leading-trim: NONE;
  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: 16px;
  leading-trim: NONE;
  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: 23.04px;
  leading-trim: NONE;
  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;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: -4%;
}
.session-card__profile-highlight {
  margin: 10px 0 6px;
}
.session-card__xp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  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/checkverde.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.session-card__xp-list li.--green::before {
  color: #70c100;
}
.session-card__xp-list li.--orange::before {
  /* Usar check amarillo para las listas de experiencia de la sesión naranja */
  background-image: url("../img/checkamarillo.svg");
}

@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;
  }
}

/* ===== ALLIES SECTION ===== */
.allies {
  padding: 0 0 84px;
  text-align: center;
  margin-top: 90px;
}

.allies__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header part with gray background */
.allies__header {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: -30px auto 0;
  position: relative;
}

.allies__title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.2;
}

.allies__title--accent {
  color: #00a8ff;
}

.allies__subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* CTA Section */
.allies__cta {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: -30px auto 0;
  position: relative;
}

.allies__cta-content {
  flex: 1;
  text-align: left;
  margin-right: 40px;
}

.allies__cta-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.allies__cta-title--accent {
  color: #00a8ff;
}

.allies__cta-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

.allies__cta-button {
  background-color: #00a8ff;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.allies__cta-button:hover {
  background-color: #0088cc;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .allies {
    padding: 0 0 11b0px;
  }
  .allies__title {
    font-size: 32px;
  }

  .allies__subtitle {
    font-size: 16px;
  }

  .allies__cta,
  .allies__header {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    margin: -20px 20px 0;
  }

  .allies__cta-content {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .allies__cta-title {
    font-size: 24px;
  }

  .allies__cta-text {
    font-size: 14px;
  }
}

/* ===== 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;
  leading-trim: NONE;
  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;
  leading-trim: NONE;
  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;
  }
}
