@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --blue-primary: #2CA3F1;
  --blue-dark: #0A2540;
  --blue-light: #F0F6FB;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --error-red: #FEF2F2;
  --error-red-text: #EF4444;
  --success-green: #F0FDF4;
  --success-green-border: #22C55E;
  --white: #FFFFFF;
}

: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;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.5;
}

img {
  max-width: 100%;
  border-style: none;
}

/* 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: 1400px;
  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);
}

/* 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;
  }
}

/* ===== Sticky Footer ===== */


.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;
}

/* Hero Section */
.hero-section {
  background: var(--blue-primary);
  background: radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--blue-primary) 0%, #1a8ad6 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-content {
  padding: 8% 5% 6%;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-top {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: #65A30D;
  font-size: 15px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dot-green {
  width: 10px;
  height: 10px;
  background-color: #65A30D;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.dot-green::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: #65A30D66;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.hero-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.light-text {
  color: rgba(255, 255, 255, 0.5);
}

.hero-desc {
  font-size: 21px;
  font-weight: 400;
  width: 75%;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.hero-info-pills {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: background-color 0.3s;
}

.pill:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.pill img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.cta-primary {
  background-color: var(--white);
  color: var(--blue-dark);
  border: none;
  border-radius: 100px;
  padding: 20px 48px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stats-bar {
  background-color: var(--blue-dark);
  padding: 40px 5%;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-stats-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  color: var(--white);
  flex: 1;
  min-width: 200px;
  padding: 10px 0;
}

.stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.invert-icon {
  width: 28px;
  height: 28px;
}

.stat-text strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.stat-text span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.stat-separator {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 30px;
}

.stats-controls-mobile {
  display: none;
}

/* Problem Section */
.problem-section {
  padding: 100px 5%;
  background-color: var(--white);
  width: 100%;
}

.problem-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.problem-text {
  flex: 1;
}

.section-tag {
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  text-align: left;
}

.problem-text h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 28px;
}

.highlight-blue {
  color: var(--blue-primary);
}

.problem-text p {
  font-size: 19px;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.mt-4 {
  margin-top: 16px;
}

.cta-secondary {
  background-color: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(44, 163, 241, 0.3);
}

.cta-secondary:hover {
  background-color: #1a8ad6;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(44, 163, 241, 0.4);
}

.problem-cards {
  flex: 1;
  background-color: #F8FAFC;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #E2E8F0;
}

.p-card {
  background-color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.p-card:hover {
  transform: translateX(5px);
}

.error-card p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 0;
  font-weight: 500;
}

.icon-x {
  color: var(--error-red-text);
  font-weight: 800;
  background-color: var(--error-red);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.success-card {
  border: 2px solid var(--success-green-border);
  background-color: var(--success-green);
  margin-top: 10px;
}

.success-card p {
  color: var(--blue-dark);
  font-size: 16px;
  margin-bottom: 0;
}

.icon-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Speakers Section */
.speakers-section {
  padding: 100px 5%;
  background-color: #F8FAFC;
  width: 100%;
}

.speakers-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.speakers-header {
  margin-bottom: 60px;
}

.speakers-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.speakers-header p {
  font-size: 19px;
  color: var(--text-gray);
  width: 60%;
  line-height: 1.4;
}

.speakers-grid {
  display: grid;
  gap: 30px;
}

.speaker-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  gap: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  align-items: flex-start;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.speaker-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue-primary);
}

.speaker-avatar {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  /* Added to keep image contained strictly within border-radius */
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.speaker-role {
  color: var(--blue-primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.speaker-desc {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.speaker-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background-color: #F0F6FB;
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  transition: background-color 0.2s;
}

/* Learn Section */
.learn-section {
  padding: 100px 5%;
  background-color: var(--white);
  width: 100%;
}

.learn-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.learn-header {
  margin-bottom: 60px;
}

.learn-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.learn-header p {
  font-size: 19px;
  color: var(--text-gray);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.learn-card {
  border: 1px solid #E2E8F0;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  transition: all 0.3s;
  background-color: var(--white);
}

.learn-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.learn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-color: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.learn-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.learn-content p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Syllabus Section Redesign */
.syllabus-section {
  padding: 50px 0 50px;
  background-color: #F8FAFC;
}

.syllabus-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.syllabus-header {
  margin-bottom: 60px;
  text-align: center;
}

.syllabus-header p {
  font-size: 19px;
  color: var(--text-gray);
  text-align: left;
}

.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.s-item {
  display: flex;
  gap: 25px;
  position: relative;
  align-items: flex-start;
}

/* Vertical line effect below the number */
.s-item::before {
  content: '';
  position: absolute;
  top: 50px;
  /* Below the number circle */
  left: 24px;
  /* Center of the number circle (48/2) */
  width: 2px;
  height: 60px;
  /* Adjust based on content height */
  background-color: #E2E8F0;
  z-index: 0;
}

/* Remove line for last items in their respective columns if desired, 
   but the image shows it for all as a style. 
   To match the image exactly, we'll keep it simple. */

.s-number {
  width: 48px;
  height: 48px;
  border: 2px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-primary);
  flex-shrink: 0;
  background: white;
  z-index: 1;
  transition: all 0.3s ease;
}

.s-item:hover .s-number {
  border-color: var(--blue-primary);
  background-color: var(--blue-primary);
  color: white;
}

.s-content {
  flex: 1;
}

.s-tag {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.s-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 15px;
}

.s-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.s-content ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.s-content li {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.s-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: bold;
}

.banner-peq {
  font-size: 53px;
}

/* Bottom CTA Banner */
.bottom-cta-banner {
  background-color: var(--blue-dark);
  border-radius: 32px;
  padding: 30px 40px;
  text-align: center;
  color: var(--white);
  width: 100%;
}

.bottom-cta-banner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.bottom-cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cta-checks {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.cta-checks span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.small-check {
  width: 20px;
  height: 20px;
}

.btn-arrow {
  width: 10px;
  height: auto;
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-primary .btn-arrow {
  filter: brightness(0);
}

.cta-primary-blue {
  background-color: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(44, 163, 241, 0.4);
}

.cta-primary-blue:hover {
  background-color: #1a8ad6;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 163, 241, 0.5);
}

.text-poliza {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 50px 0;
  background-color: var(--white);
  text-align: center;
}

.container-90 {
  width: 90%;
  max-width: 1400px;
  margin: 50px auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 20px;
  text-align: left;
}

.testimonial-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.avatar-circle {
  width: 65px;
  height: 65px;
  background-color: #E0F2FE;
  color: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  border: 2px solid var(--blue-primary);
  flex-shrink: 0;
}

.testimonial-text .quote {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-info .role {
  font-size: 14px;
  color: var(--text-light);
}

.enrollment-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.counter-avatars {
  display: flex;
}

.avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-left: -15px;
}

.avatar-small:first-child {
  margin-left: 0;
}

.s1 {
  background-color: #FFEDD5;
  color: #9A3412;
}

.s2 {
  background-color: #DBEAFE;
  color: #1E40AF;
}

.s3 {
  background-color: #D1FAE5;
  color: #065F46;
}

.s-plus {
  background-color: var(--blue-primary);
  color: var(--white);
}

.enrollment-counter p {
  font-size: 16px;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  padding: 50px 0;
  background-color: #F8FAFC;
}

/* Section Header Utilities */
.section-tag-blue {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-align: left;
  /* Default centered for Testimonials, etc. */
}

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.testimonial-card-box {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  /* space for scrollbar */
  scrollbar-width: none;
  /* Hide standard scrollbar Firefox */
  margin-top: 30px;
}

.testimonial-card-box::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

/* Redefine individual card size for slider */
.testimonial-card-box .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  /* Show exactly 3 per row on desktop */
  width: auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  height: auto;
}

@media (max-width: 900px) {
  .testimonial-card-box .testimonial-card {
    flex: 0 0 calc(50% - 10px);
    /* 2 per row tablet */
    width: auto;
  }
}

@media (max-width: 600px) {
  .testimonial-card-box .testimonial-card {
    flex: 0 0 85%;
    /* 1 per row mobile allowing peek to next */
    width: auto;
  }
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn-scroll {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.3s;
  user-select: none;
}

.btn-scroll:hover {
  opacity: 0.7;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #E2E8F0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.testimonial-dots .dot.active {
  background-color: var(--blue-primary);
  transform: scale(1.2);
}

.section-title-dark {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: left;
  /* Default centered */
}

/* Specific FAQ overrides */
.faq-section .section-tag-blue {
  text-align: left;
}

.faq-section .section-title-dark {
  text-align: left;
  max-width: 80%;
  margin-left: 0;
}


.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-icon {
  font-size: 24px;
  color: var(--blue-primary);
  transition: transform 0.3s;
  font-weight: 400;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--white);
}

.faq-answer p {
  padding: 0 30px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Dark Form Section */
.form-section-dark {
  padding: 60px 0;
  background-color: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.form-section-dark::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(44, 163, 241, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.form-flex-container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}

.form-content-left {
  flex: 1.2;
}

.form-pre-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.form-main-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
}

.highlight-blue {
  color: var(--blue-primary);
}

.form-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 45px;
  line-height: 1.6;
}

.form-benefits-list {
  list-style: none;
  padding: 0;
}

.form-benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.form-benefits-list li img {
  width: 20px;
  height: 20px;
}

.form-card-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.registration-card {
  background: var(--white);
  border-radius: 32px;
  padding: 50px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  color: var(--text-dark);
}

.card-header {
  margin-bottom: 30px;
}

.card-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.card-header p {
  font-size: 16px;
  color: var(--text-light);
}

.card-form-container {
  width: 100%;
  height: 520px;
  margin-bottom: 25px;
}

.card-form-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.card-footer {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #F1F5F9;
}

.card-footer p {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.footer-check {
  color: #10B981;
  font-weight: bold;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-desc {
    width: 90%;
  }

  .stat-separator {
    margin: 0 15px;
  }

  .form-main-title {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .problem-container {
    flex-direction: column;
    gap: 60px;
  }

  .problem-text,
  .problem-cards {
    width: 100%;
  }

  .speakers-grid,
  .learn-grid {
    grid-template-columns: 100%;
  }

  .speakers-header p {
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-stats-content {
    justify-content: center;
  }

  .stat-separator {
    display: none;
  }

  .stat-item {
    width: 45%;
    justify-content: flex-start;
  }

  /* Responsive for new sections */
  .testimonial-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-card {
    width: 90%;
    padding: 30px 20px;
  }

  .faq-accordion {
    width: 95%;
  }

  .form-flex-container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .form-card-right {
    justify-content: center;
  }

  .form-benefits-list li {
    justify-content: center;
  }

  .registration-card {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .hero-stats-content {
    flex-direction: column;
  }
}

@media (max-width: 600px) {

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .hero-content {
    padding: 15% 5% 10%;
  }

  .stat-item {
    width: 100%;
  }

  .problem-text h2,
  .speakers-header h2,
  .learn-header h2,
  .syllabus-header h2 {
    font-size: 32px;
  }

  .speaker-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .cta-checks {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .bottom-cta-banner {
    padding: 60px 20px;
  }

  .bottom-cta-banner h2 {
    font-size: 28px;
  }

  .s-item {
    gap: 20px;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .syllabus-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s-item::before {
    height: 40px;
  }

  .form-main-title {
    font-size: 36px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .registration-card {
    padding: 40px 20px;
  }

  .card-header h3 {
    font-size: 26px;
  }

  .card-form-container {
    height: 750px;
  }
}

.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;
  }
}

/* Responsive Banner */
@media (max-width: 1440px) {
  .hero-title {
    font-size: 55px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .badge-top {
    font-size: 11px;
  }

  .pill {
    font-size: 10px;
  }

  .cta-primary {
    font-size: 12px;
  }

  .banner-peq {
    font-size: 43px;
  }
}

@media (max-width: 1024px) {

  .hero-title {
    font-size: 50px;
  }

  .hero-desc {
    width: 60%;
  }

  .hero-content {
    font-size: 45px;
  }

  .badge-top {
    font-size: 9px;
  }

  .hero-desc {
    font-size: 11px;
  }

  .pill {
    padding: 5px 10px;
  }

  .pill img {
    width: 15px;
    height: auto;
  }

  .hero-info-pills {
    margin-bottom: 20px;
  }

  .cta-primary {
    padding: 15px 40px;
  }

  .hero-footer-text {
    font-size: 10px;
  }

  .banner-peq {
    font-size: 23px;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 24px;
  }

  .banner-peq {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 9px;
  }

  .badge-top {
    font-size: 7px;
  }

  .pill {
    font-size: 7px;
  }

  .cta-primary {
    font-size: 9px;
    padding: 10px 20px;
  }
}

/* Responsive Cinta negra */
@media (max-width: 1440px) {
  .stat-item {
    min-width: 10%;
  }

  .stat-text strong {
    font-size: 15px;
  }

  .stat-text span {
    font-size: 9px;
  }

  .invert-icon {
    width: 20px;
    height: 20px;
  }

  .stat-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .hero-stats-bar {
    padding: 20px 5%;
  }
}


/* Responsive Quien te enseña */

@media (max-width: 1024px) {
  .speakers-header h2 {
    font-size: 30px;
  }

  .section-tag {
    font-size: 10px;
  }

  .speaker-info h3 {
    font-size: 20px;
  }

  .speaker-role {
    font-size: 12px;
  }

  .speaker-desc {
    font-size: 10px;
  }

  .tag {
    font-size: 7px;
    padding: 5px 10px;
  }

  .speaker-avatar {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
}

/* Responsive Quien te enseña */

@media (max-width: 1024px) {

  .learn-section {
    padding: 50px 5%;
  }

  .learn-header h2 {
    font-size: 30px;
  }

  .learn-header p {
    font-size: 14px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .learn-content h3 {
    font-size: 15px;
  }

  .learn-content p {
    font-size: 12px;
  }

  .learn-icon {
    width: 20px;
    height: 20px;
  }

  .learn-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .speakers-header h2 {
    font-size: 20px;
  }
}

/* Responsive contenido */

@media (max-width: 1024px) {
  .syllabus-header p {
    font-size: 14px;
  }

  .s-tag {
    font-size: 10px;
  }

  .s-content h3 {
    font-size: 16px;
  }

  .s-content li {
    font-size: 12px;
  }

  .bottom-cta-banner h2 {
    font-size: 30px;
  }

  .bottom-cta-banner p {
    font-size: 15px;
  }

  .cta-checks span {
    font-size: 12px;
    gap: 5px;
  }

  .cta-checks {
    margin-bottom: 20px;
  }

  .cta-primary-blue {
    font-size: 13px;
    padding: 15px 30px;
  }

  .syllabus-section {
    padding: 50px 0 50px;
  }

}

/* Responsive Identificas */

@media (max-width: 1024px) {

  .problem-section {
    padding: 50px 0;
  }

  .problem-container {
    flex-direction: column;
    gap: 40px;
  }

  .problem-text h2 {
    font-size: 30px;
  }

  .problem-text p {
    font-size: 12px;
  }

  .cta-secondary {
    font-size: 10px;
    padding: 15px 30px;
    margin-top: 0px;
  }

  .error-card p,
  .success-card p {
    font-size: 10px;
  }
}

@media (max-width: 1024px) {
  .problem-section {
    width: 90%;
    margin: 0 auto;
  }

  .syllabus-container {
    width: 80%;
  }

  .container-90 {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .problem-text h2 {
    font-size: 20px;
  }

  .problem-text p {
    font-size: 10px;
  }

  .cta-secondary {
    padding: 10px 15px;
  }
}

/* Responsive Testimonios */

@media (max-width: 1440px) {
  .section-title-dark {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .testimonial-text .quote {
    font-size: 15px;
  }

  .testimonial-info .name {
    font-size: 15px;
  }

  .testimonial-info .role {
    font-size: 10px;
  }

  .enrollment-counter {
    margin-top: 20px;
  }
}

/* Responsive Dudas */

@media (max-width: 1440px) {
  .faq-header {
    width: 90%;
  }
}

@media (max-width: 1024px) {

  .faq-question,
  .faq-answer p {
    font-size: 15px;
    padding: 10px 30px;
  }

  .faq-section {
    padding: 50px 0;
  }
}

/* Responsive Formulario */

@media (max-width: 1440px) {
  .form-main-title {
    font-size: 40px;
  }

  .form-description,
  .form-benefits-list li {
    font-size: 15px;
  }

  .countdown__form {
    width: 100%;
    height: 500px;
  }

  .container-90,
  .syllabus-container {
    width: 80%;
  }
}

@media (max-width: 768px) {

  .form-description,
  .form-benefits-list li {
    font-size: 10px;
  }
}

@media (max-width: 425px) {
  .form-section-dark {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .learn-header h2 {
    font-size: 20px;
  }

  .section-title-dark {
    font-size: 20px;
  }

  .bottom-cta-banner h2 {
    font-size: 20px;
  }

  .bottom-cta-banner p {
    font-size: 10px;
  }

  .form-main-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .badge-top {
    font-size: 11px;
    margin-bottom: 25px;
  }

  .hero-pretitle {
    font-size: 14px;
  }

  .banner-peq {
    font-size: 23px;
  }

  .hero-main-container {
    padding: 80px 0 0 0;
  }

  .stat-text strong {
    font-size: 18px;
  }

  .stat-text span {
    font-size: 14px;
  }

  .pill {
    font-size: 10px;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  .hero-content {
    padding: 15% 0;
  }

  .hero-title {
    font-size: 32px;
    width: 100%;
  }

  .hero-p-tittle {
    font-size: 14px;
    width: 90%;
  }

  .hero-desc {
    font-size: 14px;
    width: 90%;
    line-height: 1.2;
  }

  /* Stats Slider Mobile */
  .hero-stats-bar {
    padding: 40px 0 !important;
    position: relative !important;
  }

  .stats-controls-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .stat-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .stat-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .stat-dot.active {
    background: #00a0e3;
    width: 12px;
    border-radius: 4px;
  }

  .stat-btn-scroll {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
  }

  #stat-btn-prev {
    left: 50px !important;
  }

  #stat-btn-next {
    right: 50px !important;
  }

  .hero-stats-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
  }

  .hero-stats-content::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    scroll-snap-align: center !important;
    padding: 20px 20px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .stat-text {
    white-space: normal !important;
  }

  .stat-separator {
    display: none !important;
  }

  .conocer-card {
    padding: 20px 15px;
  }

  .cobertura-text-column,
  .quienes-text-column,
  .form-content-left,
  .form-benefits-list {
    text-align: start;
  }

  .cta-secondary,
  .qs-btn,
  .cta-primary,
  .cta-primary-blue {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
  }

  .cobertura {
    padding: 50px 5%;
  }

  .problem-text h2,
  .speakers-header h2,
  .learn-header h2,
  .syllabus-header h2,
  .bottom-cta-banner h2,
  .section-title-dark,
  .section-title-dark,
  .form-main-title {
    font-size: 28px;
  }

  .speaker-card p,
  .learn-content h3,
  .s-content h3,
  .faq-question {
    font-size: 18px;
  }

  .section-tag,
  .problem-text p,
  .speaker-role,
  .learn-header p,
  .syllabus-header p,
  .bottom-cta-banner p,
  .section-tag-blue,
  .form-pre-title,
  .form-description,
  .form-benefits-list {
    font-size: 16px !important;
  }

  .error-card p,
  .success-card p,
  .speaker-desc,
  .learn-content p,
  .s-tag,
  .s-content li,
  .cta-checks,
  .testimonial-text .quote,
  .testimonial-info .name,
  .faq-answer p {
    font-size: 14px !important;
  }

  .tag {
    font-size: 10px;
  }

  .form-flex-container {
    padding-bottom: 70px;
  }

  .quienes-container {
    gap: 40px;
  }
}