/* CSS Variables & Theme Configuration (Sky Light Theme) */
:root {
  /* Color Palette - Fresh Sky & Cloud Theme */
  --bg-dark: #f0f7fd; /* Soft Alice Blue / Light Sky */
  --bg-card: #ffffff; /* Cloud White */
  --bg-card-hover: #f8fafc; /* Soft slate white */
  --primary: #0b1f3f; /* Deep Navy Blue */
  --primary-light: #2563eb; /* Bright Royal Blue */
  --accent: #f97316; /* Sunset Orange */
  --accent-glow: rgba(249, 115, 22, 0.25);
  --accent-light: #fb923c;
  --text-light: #1e293b; /* Dark Slate for high contrast readability */
  --text-dark: #ffffff; /* White for dark sections */
  --text-muted: #64748b; /* Cool Gray */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --error: #ef4444;
  --error-bg: #fef2f2;
  
  /* Layout & Spacing */
  --topbar-height: 34px;
  --header-height: 56px;
  --site-header-total: calc(var(--topbar-height) + var(--header-height) + env(safe-area-inset-top, 0px));
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow: 0 10px 35px rgba(37, 99, 235, 0.06); /* Soft blue-tinted shadow */
}

/* Sistema de iconos Cuyo */
.cuyo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  color: currentColor;
}

.cuyo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cuyo-icon--sm { width: 14px; height: 14px; }
.cuyo-icon--md { width: 22px; height: 22px; }
.cuyo-icon--lg { width: 40px; height: 40px; }
.cuyo-icon--xl { width: 48px; height: 48px; }

.cuyo-icon--circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-light);
}

.cuyo-icon--circle-accent {
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
}

.cuyo-icon--invert {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  backdrop-filter: blur(4px);
}

.zone-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45em;
  height: 1.45em;
  padding: 0 4px;
  margin-right: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58em;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--primary-light);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 4px;
  flex-shrink: 0;
}

.zone-badge-course .zone-code {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}

.payment-mp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-total) + env(safe-area-inset-top, 0px));
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  min-width: 0;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

h1, h2, h3, h4, .logo-text {
  font-family: 'Outfit', sans-serif;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

/* Reusable Components */
.section-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 55px 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.05);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-block {
  width: 100%;
  padding: 14px;
}

/* Site Header — topbar + nav unificados */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0px);
  transition: var(--transition);
}

.site-topbar {
  height: var(--topbar-height);
  background: linear-gradient(90deg, #0b1f3f 0%, #1e3a8a 50%, #0b1f3f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 0.68rem;
}

.topbar-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.topbar-icon {
  margin-right: 6px;
  color: var(--accent-light);
}

.topbar-pill {
  display: none;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.35);
  transition: var(--transition);
}

.topbar-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.45);
}

.topbar-wa {
  color: #86efac;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-wa:hover {
  color: #fff;
}

.site-header,
.header {
  width: 100%;
  height: var(--header-height);
  background: rgba(240, 247, 253, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.site-header.scrolled,
.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

.logo-wrapper {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.logo-img {
  height: 38px;
  width: 38px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.logo-hide-mobile {
  display: inline;
}

.logo-accent {
  color: var(--accent);
}

/* Botón hamburguesa — solo móvil */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
  position: fixed;
  top: var(--site-header-total);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--site-header-total));
  max-height: calc(100vh - var(--site-header-total));
  flex-direction: column;
  gap: 0;
  padding: 12px 16px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1001;
  overflow-y: auto;
}

body.nav-open .nav-menu {
  display: flex;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.nav-link:hover {
  color: var(--accent);
}

.page-home .nav-link-home,
.page-curso .nav-link-curso {
  color: var(--accent);
}

.page-home .nav-link-home::before,
.page-curso .nav-link-curso::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-link::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-header-cta {
  padding: 8px 10px;
  min-width: 40px;
}

.btn-header-label {
  display: none;
}

.icon-ws {
  width: 18px;
  height: 18px;
}

/* Hero Section (Video Background 100vh with soft gradient) */
.hero-block {
  position: relative;
}

.hero-section {
  position: relative;
  height: 100svh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
  background: #0b1f3f;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.03);
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.68) contrast(1.05) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(8, 12, 20, 0.78) 0%,
    rgba(8, 12, 20, 0.02) 38%,
    rgba(8, 12, 20, 0.12) 100%
  );
  z-index: 2;
}

.hero-top-badges {
  position: absolute;
  top: calc(var(--site-header-total) + 6px);
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  pointer-events: none;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  width: min(100%, 780px);
  max-width: 780px;
  margin-inline: auto;
  margin-top: auto;
  padding: 0 14px max(18px, env(safe-area-inset-bottom));
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  margin-bottom: 0;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.accent-text {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

.hero-subtitle {
  font-size: 0.72rem;
  color: #ffffff;
  opacity: 0.9;
  max-width: 280px;
  margin: 0 auto 12px auto;
  line-height: 1.35;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.hero-section .btn-lg {
  padding: 9px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  flex: none;
  max-width: none;
  min-width: 160px;
}

.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.hero-scroll-hint:hover {
  color: #fff;
  transform: translateY(2px);
}

.hero-scroll-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  font-size: 1rem;
  line-height: 1;
  animation: heroScrollBounce 1.8s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(5px); opacity: 1; }
}

.icon-arrow {
  width: 13px;
  height: 13px;
  transition: var(--transition);
}

.btn-primary:hover .icon-arrow {
  transform: translateX(5px);
}

/* Stats del hero — banda blanca en móvil, sobre video en desktop */
.hero-stats-band {
  position: relative;
  z-index: 4;
  background: #fff;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.hero-stats-band-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 14px;
}

.quick-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
  max-width: 100%;
}

.hero-stat {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-stat strong {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.hero-stat-sep {
  color: rgba(37, 99, 235, 0.28);
  font-weight: 700;
  user-select: none;
}

/* Hero video — cover total en móvil (video 9:16, sin franja inferior) */
@media (max-width: 767px) {
  .hero-section {
    height: 100svh;
    min-height: 100dvh;
  }

  .hero-video-wrapper {
    bottom: -3px;
    height: calc(100% + 6px);
  }

  .hero-video {
    transform: translate(-50%, -50%) scale(1.08);
    object-position: center center;
  }
}

/* Trust Banner */
.trust-banner {
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
  border-bottom: none;
  padding: 12px 0 10px;
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: none;
}

.banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}

.trust-text {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.35;
  max-width: 100%;
  text-align: center;
}

.zone-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.zone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border: 1px solid rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 5px 4px;
  border-radius: 50px;
  text-align: center;
  white-space: nowrap;
  min-width: 0;
}

.zone-badge-course {
  grid-column: 1 / -1;
  max-width: none;
  justify-self: stretch;
  width: 100%;
  padding: 6px 10px;
  font-size: 0.68rem;
}

/* La Experiencia - Editorial Light Layout */
.experience-section {
  background: var(--bg-dark);
}

.experience-section .section-container {
  padding: 36px 10px;
}

.experience-section .section-header {
  margin-bottom: 20px;
}

/* Barra de progreso del salto paso a paso */
.experience-progress-wrap {
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.experience-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.experience-progress-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.experience-step-counter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
}

.experience-step-counter em {
  font-style: normal;
  font-size: 1.2rem;
}

.experience-progress-track {
  height: 6px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.experience-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 100%);
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animación pasos experiencia */
.step-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.step-reveal.is-active {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.12);
}

.step-reveal.is-active .step-dot {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2);
  transform: scale(1.25);
}

.step-reveal.is-active .step-badge {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.step-reveal.is-visible .timeline-img {
  animation: stepImgReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes stepImgReveal {
  from { transform: scale(1.08); filter: brightness(0.85); }
  to { transform: scale(1); filter: brightness(1); }
}

.experience-timeline.is-progressing::before {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent) var(--timeline-progress, 55%), rgba(37, 99, 235, 0.15) var(--timeline-progress, 55%));
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
  padding-left: 28px;
}

/* Línea vertical conectora paso a paso */
.experience-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent) 55%, var(--primary-light) 100%);
  border-radius: 3px;
  opacity: 0.35;
}

.timeline-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: var(--radius-md);
  overflow: visible;
  transition: var(--transition);
  box-shadow: var(--shadow);
  padding: 0;
  align-items: stretch;
  position: relative;
  margin-bottom: 14px;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Flecha conectora entre pasos */
.timeline-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -22px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary-light);
  opacity: 0.5;
  z-index: 2;
}

.timeline-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.12);
}

/* Marcador en la línea de tiempo */
.timeline-rail {
  position: absolute;
  left: -28px;
  top: 14px;
  width: 20px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--primary-light);
  flex-shrink: 0;
}

.step-dot-accent {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 0 12px var(--accent-glow);
}

.timeline-media {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
  aspect-ratio: 16 / 10;
}

/* Badge de paso visible sobre la foto */
.step-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  background: var(--primary-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  letter-spacing: -0.5px;
}

.step-badge-accent {
  background: var(--accent);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.timeline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-row:hover .timeline-img {
  transform: scale(1.03);
}

.timeline-content {
  padding: 12px 14px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  flex: 1;
}

/* Outline oversized number in background (Sky Light outline) */
.step-number-bg {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.06;
  right: 8px;
  bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-light);
  pointer-events: none;
  z-index: 1;
}

.text-accent-bg {
  -webkit-text-stroke: 1.5px var(--accent) !important;
  opacity: 0.08 !important;
}

.step-label {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 1px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.step-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.step-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

/* Enfoque de rostros en Paso 1 */
.timeline-row:nth-child(1) .timeline-img {
  object-position: center top;
}

/* Highlight Action Step */
.highlight-row {
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.08);
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 115, 22, 0.02) 100%);
}

.highlight-row:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.12);
}

/* Promo Ticket Box */
.promo-box {
  background: linear-gradient(90deg, #ffffff 0%, #f0f7fd 100%);
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 800px;
  margin: 40px auto 0 auto;
  box-shadow: var(--shadow);
}

.promo-icon-box {
  background: rgba(249, 115, 22, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.promo-icon-box .cuyo-icon {
  color: var(--accent);
}

.promo-text-box {
  flex: 1;
}

.promo-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.promo-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reels Section — tira visual auto-scroll */
.reels-section {
  background: #040810;
  border-top: none;
  border-bottom: none;
  padding: 0;
  overflow: hidden;
}

.reels-marquee {
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reels-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: reels-marquee 52s linear infinite;
  will-change: transform;
}

.reels-track:hover {
  animation-play-state: paused;
}

@keyframes reels-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reel-card {
  width: 210px;
  height: 360px;
  flex-shrink: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.reel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-video {
  filter: saturate(1.15) contrast(1.05);
}

.reel-photo {
  animation: reel-photo-pan 14s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.05);
}

@keyframes reel-photo-pan {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .reels-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    padding: 0 16px;
    scrollbar-width: none;
  }

  .reels-track::-webkit-scrollbar {
    display: none;
  }

  .reel-photo {
    animation: none;
  }
}

/* Video full-bleed — punta a punta en móvil */
.cinema-video-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #000;
  overflow: hidden;
  line-height: 0;
}

.cinema-video {
  width: 100%;
  height: 72vh;
  min-height: 420px;
  max-height: 820px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.12) contrast(1.04);
}

@media (min-width: 768px) {
  .cinema-video {
    height: 56vh;
    min-height: 360px;
    max-height: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-video-section {
    display: none;
  }
}

/* Extras Section */
.extras-section {
  background: var(--bg-dark);
}

.extras-container {
  padding: 40px 12px;
}

.extras-header {
  margin-bottom: 22px;
}

.extras-header .section-title {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.extras-header .section-description {
  font-size: 0.88rem;
}

.extras-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.extra-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.extra-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.12);
}

.extra-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 168px;
  flex-shrink: 0;
  background: var(--primary);
  overflow: hidden;
}

.extra-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.extra-card:hover .extra-img {
  transform: scale(1.06);
}

.extra-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 800;
  color: var(--primary-light);
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  border: none;
  backdrop-filter: blur(4px);
}

.extra-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 2;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.extra-body {
  flex: 1;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.extra-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.25;
}

.extra-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.highlight-extra {
  border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 115, 22, 0.03) 100%);
}

.highlight-extra .extra-badge {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.95);
}

.price-disclaimer {
  text-align: center;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Tira de medios de pago — full bleed */
.payment-strip {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(90deg, #ffffff 0%, #f0f7fd 50%, #ffffff 100%);
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
}

.payment-strip-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px;
}

.extras-footer-cta {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 36px;
}

.payment-box {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.payment-header {
  text-align: center;
}

.payment-mp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #009ee3 0%, #007eb5 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 4px 14px rgba(0, 158, 227, 0.25);
}

.payment-mp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-tagline {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .payment-strip {
    margin-top: 28px;
  }

  .payment-strip-inner {
    padding: 22px 24px;
  }

  .payment-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }

  .payment-header {
    text-align: left;
    flex-shrink: 0;
    min-width: 160px;
  }

  .payment-tagline {
    font-size: 0.88rem;
    margin-top: 6px;
    color: var(--primary);
    font-weight: 700;
  }

  .payment-brands {
    flex: 1;
    justify-content: center;
    gap: 8px;
  }

  .pay-brand {
    min-width: 78px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .payment-options {
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-top: none;
    border-left: 1px dashed rgba(37, 99, 235, 0.2);
    padding-top: 0;
    padding-left: 24px;
  }

  .payment-option {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .extras-footer-cta .ws-consult-btn {
    max-width: 400px;
    width: 100%;
  }
}

.payment-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.pay-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.pay-visa {
  background: #1a1f71;
  color: #fff;
}

.pay-master {
  background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%);
  color: #fff;
}

.pay-amex {
  background: #006fcf;
  color: #fff;
}

.pay-naranja {
  background: #ff6600;
  color: #fff;
}

.pay-cabal {
  background: #003da5;
  color: #fff;
}

.pay-mp {
  background: #009ee3;
  color: #fff;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px dashed rgba(37, 99, 235, 0.15);
}

.payment-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
  padding: 5px 12px;
  border-radius: 50px;
}

.ws-consult-btn {
  width: 100%;
  max-width: 100%;
}

/* Curso de Paracaidismo Section */
.course-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}

/* Teaser en página principal */
.course-teaser {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7fd 100%);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  padding: 0;
}

.course-teaser .section-container {
  padding-top: 18px;
  padding-bottom: 32px;
}

.course-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.course-teaser-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}

.course-teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-teaser-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 31, 63, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 50px;
}

.course-teaser-content .section-title.text-left {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.course-teaser-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.course-teaser-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.course-teaser-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.course-teaser-points .cuyo-icon {
  color: var(--primary-light);
}

.course-teaser-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-teaser-actions .btn-lg {
  width: 100%;
}

.course-faq-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.course-faq-link:hover {
  text-decoration: underline;
}

/* Página dedicada del curso */
.page-curso .course-section {
  padding-top: 0;
}

/* Bandas de sección — curso */
.course-band {
  padding: 28px 0;
  background: #fff;
}

.page-curso .course-band > .section-container {
  padding: 0 16px;
}

.page-curso .course-band-quote > .section-container {
  padding: 0 16px;
}

.course-band-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}

.course-band-quote {
  padding: 22px 0;
  background: linear-gradient(135deg, #0b1f3f 0%, #1e3a5f 100%);
}

.course-section-head {
  text-align: center;
  margin-bottom: 18px;
}

.course-section-head .course-eyebrow {
  margin-bottom: 10px;
}

.course-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.course-section-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

/* Nav sticky curso */
.course-page-nav {
  position: sticky;
  top: var(--site-header-total);
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.course-page-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.course-page-nav-inner::-webkit-scrollbar {
  display: none;
}

.course-page-nav-link {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.course-page-nav-link:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

.course-page-nav-link.is-active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

/* Pull quote */
.course-pull-quote {
  margin: 0;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.course-pull-quote p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.course-pull-quote footer {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
}

/* Stats integrados al resumen */
.course-stats-integrated {
  margin-top: 18px;
  margin-bottom: 0;
}

/* Ubicación editorial */
.course-location-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.course-location-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.course-location-media {
  overflow: hidden;
  min-height: 220px;
}

.course-location-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
}

/* Journey layout 2 col */
.course-journey-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.course-phase-sidebar {
  display: none;
}

.course-journey-main {
  min-width: 0;
}

/* Video shell — max width desktop */
.course-video-shell {
  width: 100%;
  background: #000;
}

/* Pricing split */
.course-pricing-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.course-pricing-info .course-pricing-note {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.course-pricing-info .course-payment-methods {
  margin-bottom: 0;
}

.course-pricing-cta .course-consult-box {
  margin-bottom: 16px;
}

.course-pricing-cta .course-cta-wrap {
  max-width: none;
}

.course-pricing-cta .course-cta-wrap .btn-lg {
  width: 100%;
  max-width: none;
}

/* Bienvenida curso (PDF) */
.course-welcome {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 20px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.course-welcome-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.course-welcome-quote {
  margin: 0;
}

.course-welcome-quote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 10px;
}

.course-welcome-quote footer {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  font-style: normal;
}

.course-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.course-pillar {
  padding: 18px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.course-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.18);
}

.course-pillar.accent-pillar {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, #fff 100%);
  border-color: rgba(249, 115, 22, 0.2);
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-light);
  margin-bottom: 8px;
}

.course-pillar h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.course-pillar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.course-modalidad {
  margin-bottom: 28px;
  text-align: center;
}

.course-modalidad-text {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.course-journey-section {
  margin-bottom: 40px;
  padding: 24px 0;
}

.course-journey-head {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.course-journey-progress {
  height: 4px;
  max-width: 400px;
  margin: 16px auto 0;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.course-journey-progress-fill {
  display: block;
  height: 100%;
  width: 12.5%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* Timeline vertical — 8 niveles expandibles */
.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  padding: 8px 4px 0 36px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-light) 0%, #60a5fa 35%, var(--accent) 100%);
  border-radius: 3px;
  opacity: 0.85;
}

.journey-step {
  position: relative;
  margin-bottom: 10px;
}

.journey-step-trigger {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 16px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.journey-step-trigger:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.journey-step.is-open .journey-step-trigger {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.14);
}

.journey-step-marker {
  position: absolute;
  left: -36px;
  top: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.journey-step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary-light);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.journey-step.is-open .journey-step-dot {
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
}

.journey-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.journey-step-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.journey-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.journey-step-phase {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 8px;
  border-radius: 50px;
}

.journey-step-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.journey-step-jumps {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.35;
}

.journey-step-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary-light);
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
  line-height: 1;
  margin-top: 2px;
}

.journey-step.is-open .journey-step-toggle {
  transform: rotate(45deg);
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
}

.journey-step-panel {
  margin: 0 0 4px 0;
  padding: 0 16px 16px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -6px;
  animation: journeyPanelIn 0.35s ease;
}

.journey-step-panel[hidden] {
  display: none;
}

.journey-step.is-open .journey-step-trigger {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom-color: transparent;
}

.journey-step-panel p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 3px solid rgba(37, 99, 235, 0.2);
}

.journey-step-panel p:last-child {
  margin-bottom: 0;
}

.journey-step-panel .course-level-list {
  margin: 8px 0 0 12px;
  padding-left: 16px;
}

@keyframes journeyPanelIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Niveles destacados */
.journey-step-hot .journey-step-phase {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}

.journey-step-hot.is-open .journey-step-trigger {
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.06) 0%, var(--bg-card) 100%);
}

.journey-step-milestone .journey-step-dot {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.journey-step-milestone .journey-step-phase {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08));
  color: #c2410c;
}

.journey-step-final .journey-step-phase {
  background: linear-gradient(135deg, var(--primary-light), #1d4ed8);
  color: #fff;
}

.journey-step-final.is-open .journey-step-trigger {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.06) 0%, var(--bg-card) 100%);
}

.journey-step-final.is-open .journey-step-dot {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
}

.course-page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--site-header-total);
  overflow: hidden;
}

.course-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.course-page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.course-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 20, 0.92) 0%, rgba(8, 12, 20, 0.35) 60%, rgba(8, 12, 20, 0.5) 100%);
}

.course-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 16px 32px;
  color: #fff;
}

.course-back-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.course-back-link:hover {
  color: var(--accent-light);
}

.footer-back {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.course-page-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #fff;
}

.course-page-lead {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.course-page-lead strong {
  color: var(--accent-light);
}

.nav-link-active {
  color: var(--accent) !important;
}

.nav-link-active::after {
  width: 100% !important;
}

.course-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-tag-course {
  display: inline-block;
  margin-top: 0;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.8px;
}

.course-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
  align-items: stretch;
}

.course-intro-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.course-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.course-intro-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 31, 63, 0.88);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  backdrop-filter: blur(6px);
}

.course-intro-badge-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.course-intro-badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-intro-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-intro-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.course-intro-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.course-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.course-stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.course-stat-card.accent-stat {
  border-color: rgba(249, 115, 22, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 115, 22, 0.04) 100%);
}

.course-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.accent-stat .course-stat-num {
  color: var(--accent);
  font-size: 1.15rem;
}

.course-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
  display: block;
}

.course-location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.course-location-icon {
  display: none;
}

.course-location-body {
  padding: 20px 18px;
}

.course-location-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.course-location-text,
.course-location-address {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.course-location-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-location-editorial .course-location-body {
  padding: 24px 22px;
}

.course-location-editorial .course-location-img {
  height: 100%;
  min-height: 240px;
  object-position: center center;
}

/* Phase sidebar (desktop) */
.course-phase-sidebar-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 16px;
}

.course-phase-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-phase-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-light);
}

.course-phase-num {
  grid-row: 1 / 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--primary-light);
  align-self: center;
}

.course-phase-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
}

.course-phase-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.course-phase-item-hot {
  border-left-color: var(--accent);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), #fff);
}

.course-phase-item-milestone {
  border-left-color: var(--accent);
}

.course-phase-item-final {
  border-left-color: var(--primary-light);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), #fff);
}

.course-journey-progress-sidebar {
  max-width: none;
  margin: 16px 0 0;
  display: none;
}

.course-journey-progress-mobile {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .course-journey-progress-mobile {
    display: none;
  }

  .course-journey-progress-sidebar {
    display: block;
  }
}

.course-levels-header {
  margin-bottom: 18px;
}

.course-subtitle {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.course-levels-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.course-levels-accordion {
  margin-bottom: 32px;
}

.course-level-item .faq-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.level-badge-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #1d4ed8 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
}

.highlight-level .level-badge-num {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.course-level-item:hover .level-badge-num,
.course-level-item.active .level-badge-num {
  transform: scale(1.12) rotate(-6deg);
}

.level-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  min-width: 0;
}

.level-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.level-jumps {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
  align-self: flex-start;
}

.highlight-level .level-jumps {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
}

.level-jumps-key {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
}

.level-jumps-milestone {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.14);
}

.level-jumps-final {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light) 0%, #1d4ed8 100%);
}

.course-level-item .faq-content {
  padding-left: 74px;
}

/* Beneficios del curso */
.course-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.course-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.course-benefits li:hover {
  transform: translateX(6px);
  border-color: rgba(249, 115, 22, 0.3);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-light);
}

.benefit-icon svg,
.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.course-benefits strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.course-benefits p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.highlight-level {
  border-color: rgba(249, 115, 22, 0.25);
}

.highlight-level.active {
  border-color: var(--accent);
}

.course-level-list {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.course-pricing-block {
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.course-pricing-header {
  margin-bottom: 18px;
  text-align: center;
}

.course-pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.course-consult-box {
  text-align: center;
  background: linear-gradient(135deg, #0b1f3f 0%, #1e3a5f 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  margin-bottom: 20px;
}

.course-consult-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.course-consult-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1.1;
  margin-bottom: 10px;
}

.course-consult-detail {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

.course-pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.course-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  background: #fff;
}

.course-price-row:last-child {
  border-bottom: none;
}

.course-price-row-base {
  background: rgba(37, 99, 235, 0.03);
}

.course-price-total {
  background: linear-gradient(90deg, #0b1f3f 0%, #1e3a5f 100%);
  color: #fff;
  border-top: 2px solid var(--accent);
}

.course-price-total .course-price-label,
.course-price-total .course-price-value {
  color: #ffffff !important;
  font-weight: 800;
}

.course-price-total .course-price-value {
  color: var(--accent-light) !important;
  font-size: 1.05rem;
}

.course-price-label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.35;
  flex: 1;
}

.course-price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.course-pricing-block strong {
  color: var(--primary);
}

.course-payment-methods {
  text-align: center;
  margin-bottom: 20px;
}

.course-payment-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.course-payment-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.course-payment-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
}

.course-cta-wrap {
  display: flex;
  justify-content: center;
}

.course-cta-wrap .btn-lg {
  width: 100%;
  max-width: 360px;
}

.course-visual-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.course-visual-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.course-visual-strip img:hover {
  transform: scale(1.05);
}

/* Videos embebidos — página curso */
.course-video-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.course-video-wrap-end {
  margin-bottom: 0;
}

.course-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.1) contrast(1.04);
}

.course-video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 36px 16px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .course-video-wrap {
    aspect-ratio: 21 / 9;
    max-height: 520px;
  }

  .course-video-caption {
    font-size: 0.82rem;
    padding-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .course-video-wrap {
    display: none;
  }
}

/* Requisitos Section */
.requirements-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 99, 235, 0.05);
  border-bottom: 1px solid rgba(37, 99, 235, 0.05);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
}

.req-info-box {
  display: flex;
  flex-direction: column;
}

.req-list {
  list-style: none;
  margin-top: 22px;
}

.req-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
}

.req-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
  border-radius: 50%;
}

.req-bullet svg {
  width: 12px;
  height: 12px;
}

/* Interactive Calculator Card */
.req-calc-card {
  background: var(--bg-dark);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.calc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.calc-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
  outline: none;
}

/* Calculator Result Box */
.calc-result-box {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid #cbd5e1;
  text-align: center;
  margin-top: 15px;
  animation: slideIn 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.calc-result-box.is-success {
  background: var(--success-bg);
  border-color: var(--success);
}

.calc-result-box.is-success .result-title {
  color: #065f46;
}

.calc-result-box.is-success .result-text {
  color: #047857;
}

.calc-result-box.is-error {
  background: var(--error-bg);
  border-color: var(--error);
}

.calc-result-box.is-error .result-title {
  color: #991b1b;
}

.calc-result-box.is-error .result-text {
  color: #b91c1c;
}

.calc-result-box.is-error .btn-outline {
  border-color: var(--error);
  color: #991b1b;
}

.calc-result-box.is-error .btn-outline:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #7f1d1d;
}

.result-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.result-icon-svg {
  width: 24px;
  height: 24px;
}

.result-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.result-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.result-cta-wrapper {
  margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-dark);
  padding-bottom: 40px;
}

/* Compact Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 30, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-zoom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-zoom-icon svg {
  width: 22px;
  height: 22px;
}

.gallery-item:hover .gallery-img,
.gallery-item:focus .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-hover-overlay,
.gallery-item:focus .gallery-hover-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon,
.gallery-item:focus .gallery-zoom-icon {
  transform: scale(1);
}

/* Lightbox Styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 23, 47, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2010;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2rem;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* FAQs Section */
.faqs-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
}

.faqs-accordion {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-dark);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px;
  color: var(--primary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  outline: none;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 20px 20px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(37, 99, 235, 0.05);
}

/* Final CTA Banner */
.final-cta-section {
  position: relative;
  padding: 75px 0;
  text-align: center;
  background: var(--primary);
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.22) 0%, rgba(8, 12, 20, 0.6) 100%);
  z-index: 1;
}

.final-cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-section .btn-primary {
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Site Footer — unificado */
.site-footer {
  position: relative;
  background: #050a14;
  color: #94a3b8;
  overflow: hidden;
}

.site-footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 36px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo-img {
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-certs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-cert {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 4px 10px;
  border-radius: 50px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-nav,
.footer-zones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-light);
}

.footer-zones strong {
  color: #e2e8f0;
}

.footer-meta {
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.footer-meta a {
  color: var(--accent-light);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.footer-wa-btn {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.site-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.site-footer-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 22px;
  font-size: 0.72rem;
  text-align: center;
}

.site-footer-bar-inner strong {
  color: #fff;
}

/* Footer legacy (compat) */
.footer-section {
  background: #070e1b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0 0 0;
  color: #cbd5e1;
}

.footer-section .footer-title {
  color: #ffffff;
}

.footer-section .footer-logo {
  color: #ffffff;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 320px;
}

.social-links {
  display: flex;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.icon-social {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 22px 0;
  background: #040810;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 16px;
}

.copyright {
  font-size: 0.75rem;
  color: #64748b;
}

.accreditations {
  font-size: 0.72rem;
  color: #64748b;
}

.accreditations strong {
  color: #ffffff;
  font-weight: 700;
}

.zone-badge-course {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.zone-badge-course:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Barra promo curso */
.course-promo-bar {
  background: linear-gradient(90deg, #0b1f3f 0%, #1e3a5f 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.25);
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
  padding: 12px 16px;
}

.course-promo-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.course-promo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  min-width: 0;
}

.course-promo-eyebrow {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.course-promo-copy strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
}

.course-promo-copy span:last-child {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.course-promo-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-d1.visible { transition-delay: 0.1s; }
.reveal-d2.visible { transition-delay: 0.2s; }
.reveal-d3.visible { transition-delay: 0.3s; }

/* Stagger de niveles del curso */
.course-levels-accordion .course-level-item.visible {
  transition-delay: calc(var(--stagger, 0) * 0.08s);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .step-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .course-welcome-icon {
    animation: none;
  }
}

/* CTA pulse */
.cta-pulse {
  animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 6px 20px var(--accent-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5), 0 0 0 8px rgba(249, 115, 22, 0.08);
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-pulse {
    animation: none;
  }
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Floating animation for cloud feel */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.ripple {
  position: relative;
  overflow: hidden;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 380px;
  }

  .hero-section .btn-lg {
    font-size: 0.82rem;
    max-width: 180px;
  }

  .reel-card {
    width: 240px;
    height: 400px;
  }

  .reels-track {
    gap: 12px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-container {
    padding: 70px 24px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }

  /* Header desktop */
  .logo-hide-mobile {
    display: inline;
  }

  .logo-img {
    height: 44px;
    width: 44px;
    margin-right: 10px;
  }

  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 24px;
    padding: 0;
    height: auto;
    max-height: none;
    background: transparent;
    backdrop-filter: none;
    overflow: visible;
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: none;
  }

  .nav-link:hover {
    color: var(--primary);
  }

  .nav-link::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .page-home .nav-link-home,
  .page-curso .nav-link-curso {
    color: var(--primary);
  }

  .page-home .nav-link-home::before,
  .page-curso .nav-link-curso::before {
    display: none;
  }

  .page-home .nav-link-home::after,
  .page-curso .nav-link-curso::after {
    width: 100%;
  }

  .topbar-pill {
    display: inline-flex;
  }

  .site-topbar-inner {
    font-size: 0.72rem;
    padding: 0 24px;
  }

  .btn-header-label {
    display: inline;
  }

  .btn-header-cta {
    padding: 8px 18px;
    min-width: auto;
  }

  .icon-ws {
    width: 16px;
    height: 16px;
  }

  .header.scrolled {
    height: 65px;
  }
  
@media (min-width: 768px) {
  .hero-block {
    min-height: 100vh;
  }

  .banner-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 16px;
  }

  .trust-text {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    max-width: none;
  }

  .zone-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: none;
    max-width: none;
    width: auto;
    gap: 8px;
  }

  .zone-badge {
    padding: 5px 14px;
    font-size: 0.78rem;
  }

  .zone-badge-course {
    grid-column: auto;
    max-width: none;
    width: auto;
    justify-self: auto;
  }

  .zone-tags .zone-badge:nth-child(3) {
    grid-column: auto;
    width: auto;
    justify-self: auto;
  }

  .zone-badge {
    padding: 5px 14px;
    font-size: 0.78rem;
  }

  .zone-code {
    min-width: 1.6em;
    height: 1.6em;
    margin-right: 6px;
    font-size: 0.65em;
  }

  .hero-section {
    height: 100vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
  }

  .hero-video-wrapper {
    inset: 0;
    height: 100%;
    min-height: 100%;
  }

  .hero-video {
    object-position: center center;
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(0.62) contrast(1.02);
  }

  .hero-content-container {
    position: relative;
    margin-top: auto;
    padding: 0 16px 54px;
    width: min(100%, 820px);
    max-width: 820px;
  }

  .hero-stats-band {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
  }

  .hero-stats-band-inner {
    padding: 0 16px;
    pointer-events: auto;
  }

  .hero-stat {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-stat strong {
    color: #fff;
  }

  .hero-stat-sep {
    color: rgba(255, 255, 255, 0.45);
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 12, 20, 0.72) 0%, rgba(8, 12, 20, 0.04) 45%, rgba(8, 12, 20, 0.15) 100%);
  }

  .hero-top-badges {
    top: calc(var(--site-header-total) + 10px);
    gap: 8px;
  }

  .hero-tag {
    font-size: 0.68rem;
    padding: 4px 12px;
    letter-spacing: 2px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 560px;
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .hero-scroll-hint {
    margin-top: 10px;
  }

  .hero-cta-group {
    margin-bottom: 10px;
  }

  .hero-section .btn-lg {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  .icon-arrow {
    width: 14px;
    height: 14px;
  }
  
  .quick-stats-bar {
    flex-wrap: nowrap;
    gap: 14px;
  }

  .hero-stat {
    font-size: 0.82rem;
  }
  
  /* Experiencia — mismo layout compacto que móvil, centrado en desktop */
  .experience-section .section-container {
    padding-top: 48px;
    padding-bottom: 48px;
    max-width: 680px;
  }

  .experience-section .section-header {
    margin-bottom: 24px;
  }

  .experience-timeline {
    gap: 0;
    padding-left: 28px;
    margin-bottom: 24px;
  }

  .experience-timeline::before {
    display: block;
  }

  .timeline-rail {
    display: flex;
  }

  .timeline-row:not(:last-child)::after {
    display: block;
  }
  
  .timeline-row {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: visible;
  }

  .timeline-row:nth-child(even) {
    grid-template-columns: none;
  }

  .timeline-row:nth-child(even) .timeline-media {
    order: 0;
  }
  
  .timeline-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .step-badge {
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .timeline-content {
    padding: 14px 16px 16px;
  }
  
  .step-number-bg {
    font-size: 4.5rem;
    right: 8px;
    bottom: 0;
    -webkit-text-stroke: 1.5px var(--primary-light);
  }
  
  .step-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .step-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  
  .step-text {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .promo-box {
    margin-top: 24px;
    padding: 20px;
  }
  
  /* Extras */
  .extras-container {
    padding: 70px 24px;
  }

  .extras-header {
    margin-bottom: 28px;
  }

  .extras-header .section-title {
    font-size: 2.4rem;
  }

  .extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .extra-card {
    flex-direction: column;
  }

  .extra-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  .extra-body {
    padding: 16px 18px 18px;
  }

  .extra-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .extra-desc {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .extra-badge {
    font-size: 0.58rem;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
  }

  .extra-icon {
    font-size: 1.35rem;
    bottom: 10px;
    right: 10px;
  }

  .ws-consult-btn {
    max-width: 360px;
  }

  /* Curso */
  .course-band {
    padding: 52px 0;
  }

  .course-band-quote {
    padding: 36px 0;
  }

  .course-section-head {
    margin-bottom: 24px;
  }

  .course-section-title {
    font-size: 2rem;
  }

  .course-page-hero {
    min-height: 420px;
  }

  .course-page-hero-content {
    text-align: left;
    max-width: 1140px;
  }

  .course-page-title {
    font-size: 2.8rem;
    max-width: 640px;
  }

  .course-page-lead {
    max-width: 520px;
  }

  .course-page-nav-inner {
    justify-content: center;
    overflow-x: visible;
  }

  .course-page-nav-link {
    font-size: 0.78rem;
    padding: 9px 18px;
  }

  .course-intro-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    margin-bottom: 0;
  }

  .course-intro-media {
    aspect-ratio: 3 / 4;
    min-height: 420px;
  }

  .course-intro-img {
    object-position: center 28%;
  }

  .course-stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 0;
  }

  .course-location-editorial {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
  }

  .course-location-editorial .course-location-body {
    padding: 36px 32px;
  }

  .course-location-editorial .course-location-media {
    min-height: 100%;
  }

  .course-location-editorial .course-location-img {
    min-height: 100%;
    height: 100%;
  }

  .course-video-shell {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
    background: transparent;
  }

  .course-video-shell .course-video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .course-journey-layout {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .course-phase-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--site-header-total) + 56px);
  }

  .course-pricing-split {
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: stretch;
  }

  .course-pricing-cta {
    position: sticky;
    top: calc(var(--site-header-total) + 56px);
  }

  .course-location-card {
    grid-template-columns: 1fr 280px;
  }

  .course-location-img {
    height: 100%;
    min-height: 220px;
  }

  .course-pricing-block {
    padding: 32px 36px;
  }

  .course-price-label {
    font-size: 0.88rem;
  }

  .course-price-value {
    font-size: 1rem;
  }

  .course-visual-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .course-visual-strip img {
    height: 280px;
  }

  .course-teaser .section-container {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .course-teaser-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
  }

  .course-teaser-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .course-teaser-actions .btn-lg {
    width: auto;
    flex: 1;
    min-width: 180px;
  }

  .level-name {
    font-size: 1.05rem;
  }

  .level-jumps {
    font-size: 0.78rem;
  }

  .level-badge-num {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .course-level-item .faq-content {
    padding-left: 84px;
  }

  .course-benefits li {
    padding: 16px 20px;
  }

  .hero-tag-course {
    font-size: 0.68rem;
    margin-bottom: 12px;
  }
  
  /* Requirements */
  .requirements-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .gallery-item {
    border-radius: var(--radius-sm);
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: 2fr 1.1fr 1.1fr;
    gap: 50px;
  }

  .site-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-top: 56px;
  }

  .site-footer-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-wa-btn {
    width: auto;
  }

  .course-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .journey-timeline {
    max-width: 720px;
    padding-left: 44px;
  }

  .journey-timeline::before {
    left: 19px;
  }

  .journey-step-marker {
    left: -44px;
  }

  .journey-step-trigger {
    padding: 18px 20px;
  }

  .journey-step-title {
    font-size: 1.05rem;
  }
  
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .experience-section .section-container {
    max-width: 720px;
  }

  .course-journey-layout {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }

  .journey-timeline {
    max-width: none;
  }

  .course-pricing-split {
    grid-template-columns: 1fr 420px;
  }

  .reel-card {
    height: 480px;
  }
}

/* =============================================================================
   Reglas 0000 — crédito DpEstudio (02) + WhatsApp flotante (07)
   ============================================================================= */

.footer-credit {
  margin: 4px 0 0;
  opacity: 0.55;
  font-size: 0.68rem;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover {
  opacity: 1;
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right, 0px));
  bottom: max(22px, calc(22px + env(safe-area-inset-bottom, 0px)));
  z-index: 2500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: auto;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: translateZ(0) translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.whatsapp-float:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(24px, calc(20px + env(safe-area-inset-bottom, 0px)));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}
