/* ==========================================================================
   ECOTET AVIATION - COMPLETE STYLESHEET
   Scroll-Driven Zoom & Programs Presentation
   ========================================================================== */

/* --- Root Design Tokens --- */
:root {
  --color-primary: #E31B23;
  --color-primary-glow: rgba(227, 27, 35, 0.55);
  --color-primary-dark: #C01219;
  --color-primary-gradient: linear-gradient(135deg, #FF2430 0%, #D60C17 100%);
  
  --color-bg-dark: #0F0C0B;
  --color-cabin-warm: #1D1714;
  --color-surface-glass: rgba(20, 16, 14, 0.75);
  --color-border-glass: rgba(255, 255, 255, 0.12);
  
  --color-sky-light: #F0F4F8;
  --color-sky-white: #FFFFFF;
  --color-text-dark: #1E293B;
  --color-text-muted-dark: #64748B;
  
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.85);
  --color-text-muted: rgba(255, 255, 255, 0.6);
  
  --font-main: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.15rem 3.5rem;
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.9) 0%, rgba(12, 9, 8, 0.4) 60%, rgba(12, 9, 8, 0) 100%);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(15, 12, 11, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 3.5rem;
  border-bottom: 1px solid var(--color-border-glass);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.header-container-v2 {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

/* Left: Navigation Menu */
.main-nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-main);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.1px;
  padding: 0.5rem 0.2rem;
  position: relative;
  display: inline-block;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 99px;
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

/* Center: Brand Logo */
.header-center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-link:hover {
  transform: scale(1.035);
}

.brand-logo-img {
  height: clamp(70px, 4.8vw, 88px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.65));
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease, transform 0.35s ease;
}

.site-header.scrolled .brand-logo-img {
  height: clamp(52px, 3.6vw, 64px);
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.8));
}

/* Right: Contact Information */
.header-contact-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.header-contact-link:hover {
  color: #FFFFFF;
}

.header-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.header-contact-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  user-select: none;
}

/* --- Mobile Menu Toggle --- */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 6px auto;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-toggle-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   SCROLL-DRIVEN ZOOM SYSTEM (ZOOM VINCULADO AL SCROLL)
   ========================================================================== */
.hero-scroll-container {
  position: relative;
  height: 200vh; /* Original majestic, unhurried zoom travel */
  background-color: #FAF8F5;
}

.hero-sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--color-bg-dark);
}

/* Scale target */
.hero-zoom-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 48%; /* Centered around the window glass */
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}

/* Video & Fallback Image Container */
.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Vignette overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0) 55%,
    rgba(14, 11, 10, 0.45) 85%,
    rgba(10, 8, 7, 0.75) 100%
  );
}

/* Warm ambient sunrise glow */
.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(70vw, 550px);
  height: min(70vw, 550px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 45, 0.16) 0%, rgba(255, 180, 80, 0.05) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* White Focal Point (Sun/Horizon beacon inside the airplane window) */
.hero-white-focal {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.white-focal-core {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 24px 10px rgba(255, 255, 255, 1), 0 0 60px 25px rgba(255, 245, 220, 0.95);
}

.white-focal-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 235, 0.6) 40%, transparent 75%);
  filter: blur(10px);
}

.white-focal-flare {
  position: absolute;
  width: 360px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 50%, transparent 100%);
  filter: blur(1px);
  transform: rotate(-18deg);
  opacity: 0.75;
}

/* White Transition Portal blooming to full white (#FAF8F5) */
.hero-white-portal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 48%, #FAF8F5 0%, #FAF8F5 55%, rgba(250, 248, 245, 0.96) 80%, #FAF8F5 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  will-change: opacity;
}

/* ==========================================================================
   HERO FLANKING HEADLINES ("Tu futuro" [WINDOW] "Despega Aquí")
   ========================================================================== */
.hero-flanking-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(2.5rem, 6.2vw, 8rem);
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

/* Left Column: Tu futuro + Description + Red Bar + Subtext */
.hero-col-left {
  max-width: clamp(340px, 28vw, 460px);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  margin-top: -2.5vh;
}

/* Right Column: Despega Aquí */
.hero-col-right {
  max-width: clamp(280px, 25vw, 420px);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-top: -2.5vh;
}

.hero-split-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.8px;
  color: #FFFFFF;
  margin: 0 0 1.25rem 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
}

.hero-split-lead {
  font-family: var(--font-main);
  font-size: clamp(1.02rem, 1.22vw, 1.22rem);
  font-weight: 500;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.15px;
  margin: 0;
  max-width: 380px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-split-divider {
  width: 44px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin: 1.3rem 0 1.1rem 0;
  box-shadow: 0 0 12px var(--color-primary-glow);
}

.hero-split-sub {
  font-family: var(--font-main);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  font-weight: 400;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 340px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Hero UI overlay (CTA & scroll hint) - fades out on scroll */
.hero-ui-overlay {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(24px, 4.5vh, 44px);
  will-change: opacity, transform;
}

/* CTA Container & Dual Button Group */
.hero-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.85rem;
}

.hero-cta-dual-group {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Pill Button: "Reserva tu asiento" */
.btn-reserve-pill,
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-gradient);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.92rem 2.4rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  letter-spacing: -0.2px;
  box-shadow: 
    0 8px 24px var(--color-primary-glow),
    0 2px 8px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-reserve-pill::before,
.btn-reserve::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-22deg);
  transition: 0.6s ease;
}

.btn-reserve-pill:hover::before,
.btn-reserve:hover::before {
  left: 120%;
}

.btn-reserve-pill:hover,
.btn-reserve:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 14px 34px rgba(227, 27, 35, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.btn-reserve-pill:active,
.btn-reserve:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 
    0 4px 14px var(--color-primary-glow),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Circular Arrow Sibling Button */
.btn-reserve-circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-spring);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-reserve-circle-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-reserve-circle-arrow:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

.btn-reserve-circle-arrow:hover svg {
  transform: translateX(3px);
}

.btn-reserve-circle-arrow:active {
  transform: translateY(0) scale(0.98);
}

/* Scroll Down Hint */
.scroll-hint-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: floatHint 2.4s ease-in-out infinite;
}

.scroll-mouse-icon {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.scroll-wheel-dot {
  width: 3px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 2px;
  animation: scrollWheelAnim 1.8s ease-in-out infinite;
}

@keyframes scrollWheelAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes floatHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ==========================================================================
   GLOBAL SITE CONTAINERS
   ========================================================================== */
.site-container,
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ==========================================================================
   SECTION 2: PROGRAMA TCP SHOWCASE ("Tu vocación tiene destino")
   ========================================================================== */
.section-tcp-showcase {
  position: relative;
  background-color: #FAF8F5;
  color: #0E1726;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  z-index: 10;
  margin-top: -100vh; /* Perfectly connects at the end of the zoom at the top of the viewport */
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
  will-change: opacity;
}

.tcp-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tcp-banner-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.tcp-banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #FAF8F5 0%,
    #FAF8F5 28%,
    rgba(250, 248, 245, 0.94) 34%,
    rgba(250, 248, 245, 0.5) 40%,
    rgba(250, 248, 245, 0.1) 45%,
    rgba(250, 248, 245, 0) 48%
  );
}

.tcp-container-relative {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3rem, 5.5vh, 4.5rem);
  padding-bottom: clamp(3rem, 5.5vh, 4.5rem);
}

.tcp-content-col {
  max-width: 440px;
}

.section-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}

.badge-red-line {
  width: 34px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.section-badge-label {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #0E1726;
  text-transform: uppercase;
}

.tcp-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.2px;
  color: #0B1320;
  margin-bottom: 2.2rem;
}

.tcp-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 2.4rem;
}

.tcp-feature-icon-wrap {
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  padding-top: 2px;
}

.tcp-plane-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.tcp-feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0B1320;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.tcp-feature-desc {
  font-family: var(--font-main);
  font-size: 0.98rem;
  color: #556271;
  line-height: 1.45;
}

.btn-tcp-action {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.35rem 0.85rem 2.2rem;
  border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.35);
  transition: var(--transition-spring);
}

.btn-tcp-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 26px rgba(227, 27, 35, 0.6);
  color: #FFFFFF;
}

.btn-action-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-tcp-action:hover .btn-action-arrow-circle {
  transform: translateX(3px);
  border-color: #FFFFFF;
}

.btn-action-arrow-circle svg {
  width: 15px;
  height: 15px;
  stroke: #FFFFFF;
}

/* ==========================================================================
   SECTION 3: EXPERIENCIAS ("Vive la experiencia ECOTET")
   ========================================================================== */
.section-experiences {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(5rem, 8vh, 7.5rem) 0;
  z-index: 10;
}

.experiences-header {
  margin-bottom: 3.5rem;
}

.experiences-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.6rem;
  color: #FFFFFF;
}

.experiences-subtitle {
  font-family: var(--font-main);
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.section-experiences .experience-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-experiences .experience-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.exp-media-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 2.85;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  background: #0D2238;
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.experience-card:hover .exp-img {
  transform: scale(1.05);
}

.exp-tag-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 23, 38, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.exp-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.exp-red-dash {
  width: 18px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.exp-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #FFFFFF;
}

.exp-desc {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.48;
}

/* ==========================================================================
   SECTION 4: PILARES ("Una formación que te impulsa")
   ========================================================================== */
.section-pillars {
  position: relative;
  background-color: #F8F6F4;
  color: #0E1726;
  padding: clamp(5rem, 8vh, 6.8rem) 0 4.2rem;
  z-index: 10;
}

.pillars-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.pillars-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: #0E1726;
  margin-bottom: 0.6rem;
}

.pillars-subtitle {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: #5B6B7C;
  max-width: 650px;
  margin: 0 auto;
}

.pillars-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
}

.pillar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(227, 27, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.pillar-icon {
  width: 30px;
  height: 30px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #0E1726;
  margin-bottom: 0.55rem;
}

.pillar-desc {
  font-family: var(--font-main);
  font-size: 0.96rem;
  color: #5B6B7C;
  line-height: 1.5;
}

.pillar-divider {
  width: 1px;
  background-color: rgba(14, 23, 38, 0.12);
  margin: 1rem 0;
}

/* ==========================================================================
   SECTION 5: FULL CABIN CREW PANORAMIC BANNER
   ========================================================================== */
.section-crew-panoramic {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #071524;
  z-index: 10;
}

.crew-panoramic-wrapper {
  width: 100%;
  height: clamp(440px, 56vw, 660px);
  position: relative;
}

.crew-panoramic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  display: block;
}

.crew-panoramic-gradient-top,
.crew-panoramic-gradient-bottom {
  display: none;
}

/* ==========================================================================
   SECTION 6: 3-STEP ROADMAP ("Tu próximo destino comienza aquí")
   ========================================================================== */
.section-roadmap {
  position: relative;
  padding: clamp(5.5rem, 9vh, 7.5rem) 0;
  background-color: #061320;
  overflow: hidden;
  color: #FFFFFF;
  z-index: 10;
}

.roadmap-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.roadmap-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.45;
}

.roadmap-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #061320 0%, #061320 40%, rgba(6, 19, 32, 0.85) 65%, rgba(6, 19, 32, 0.4) 100%);
}

.roadmap-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: center;
}

.roadmap-red-bar {
  width: 32px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.roadmap-heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.roadmap-sub {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.roadmap-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  box-shadow: 0 0 16px var(--color-primary-glow);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.45rem;
}

.step-desc {
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 7: LEAD CAPTURE & BOOKING ("Reserva tu asiento")
   ========================================================================== */
.section-lead-capture {
  position: relative;
  padding: clamp(5.5rem, 9vh, 7.5rem) 0;
  background-color: #0B1928;
  overflow: hidden;
  z-index: 10;
}

.lead-capture-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lead-capture-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.lead-capture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 34, 0.85) 0%, rgba(8, 20, 34, 0.45) 50%, rgba(8, 20, 34, 0.65) 100%);
}

.lead-capture-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.lead-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lead-hero-sub {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lead-red-bar {
  width: 44px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--color-primary-glow);
}

.lead-form-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: clamp(1.8rem, 3.2vw, 2.5rem);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.4);
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}

.lead-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0E1726;
  margin-bottom: 1.4rem;
}

.input-icon-group {
  position: relative;
  margin-bottom: 1rem;
}

.field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.field-icon svg {
  width: 18px;
  height: 18px;
}

.form-input-styled {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.85rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #0E1726;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-styled:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.15);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1.1rem 0 1.4rem;
  font-size: 0.84rem;
  color: #64748B;
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.link-privacy {
  color: #0E1726;
  text-decoration: underline;
  font-weight: 500;
}

.btn-lead-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--color-primary-gradient);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.95rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--color-primary-glow);
  transition: var(--transition-spring);
}

.btn-lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227, 27, 35, 0.65);
}

.btn-submit-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit-arrow-circle svg {
  width: 14px;
  height: 14px;
}

.lead-success-msg {
  text-align: center;
  padding: 2rem 1rem;
}

.success-check-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

/* ==========================================================================
   SECTION 8: FOOTER
   ========================================================================== */
.site-footer {
  background-color: #050C14;
  color: #FFFFFF;
  padding: clamp(3.5rem, 6vw, 4.8rem) 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 20;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.3fr 0.85fr 1.2fr;
  gap: clamp(2rem, 3.8vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 4.5vw, 3.8rem);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 1.2rem 0 1.3rem;
  max-width: 320px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  display: block;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-link-item:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-link-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Sedes List */
.footer-sedes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-sede-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sede-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(227, 27, 35, 0.12);
  border: 1px solid rgba(227, 27, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.sede-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.sede-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sede-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
}

.sede-address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Nav Links */
.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-nav-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Socials Grid */
.footer-social-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.footer-socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.social-icon-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.social-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227, 27, 35, 0.35);
}

/* Footer Bottom Bar */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-socials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Floating WhatsApp Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

/* Sky Airplane Silhouette Decor */
.sky-airplane-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: min(50vw, 440px);
  pointer-events: none;
  opacity: 0.95;
  z-index: 1;
}

.airplane-header-img {
  width: 100%;
  height: auto;
  display: block;
}

.programs-container {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.programs-header-wrap {
  margin-bottom: 2rem;
}

.programs-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #1A1F2C;
}

.programs-main-title .highlight-red {
  color: var(--color-primary);
  display: inline-block;
}

/* Programs Grid: 2 Cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

/* Program Card Container */
.program-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 1.25rem 1.25rem 2rem;
  box-shadow: 
    0 12px 35px -8px rgba(15, 23, 42, 0.08),
    0 4px 12px -2px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: flex;
  flex-direction: column;
  transition: var(--transition-spring);
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 24px 50px -12px rgba(227, 27, 35, 0.16),
    0 8px 24px -4px rgba(15, 23, 42, 0.06);
  border-color: rgba(227, 27, 35, 0.25);
}

/* Card Image Wrap */
.card-media-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #F1F5F9;
  aspect-ratio: 1 / 1.18;
  margin-bottom: 1.5rem;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.program-card:hover .card-img {
  transform: scale(1.03);
}

/* Card Body Content */
.card-body {
  padding: 0 0.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-program-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted-dark);
  margin-bottom: 0.1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #0F172A;
  margin-bottom: 0.9rem;
}

/* Semester Badge (Red pill) */
.card-badge-wrap {
  margin-bottom: 1.35rem;
}

.semester-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 18px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Features List */
.card-features-list {
  margin-bottom: 0.9rem;
}

.feature-headline {
  font-size: 0.96rem;
  color: #1E293B;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.feature-headline strong {
  font-weight: 800;
  color: #0F172A;
}

.feature-subitem {
  font-size: 0.96rem;
  color: #334155;
  margin-bottom: 0.2rem;
}

.card-description {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 1.6rem;
}

.card-description strong {
  color: #334155;
  font-weight: 700;
}

/* Bottom 3 Highlights with Icons */
.card-highlights {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1.2rem;
  margin-top: auto;
  border-top: 1px solid #E2E8F0;
  margin-bottom: 1.6rem;
}

.highlight-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

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

.program-card:hover .icon-circle {
  transform: scale(1.08);
}

.highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.2;
}

.highlight-divider {
  width: 1px;
  height: 32px;
  background-color: #E2E8F0;
  margin-top: 8px;
}

/* Card Action Button */
.btn-card-action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-card-action:hover {
  background: var(--color-primary);
  box-shadow: 0 8px 20px var(--color-primary-glow);
}

.btn-action-arrow {
  transition: transform 0.25s ease;
}

.btn-card-action:hover .btn-action-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   AUDIO & AMBIANCE CONTROLS (Corner Widget)
   ========================================================================== */
.cabin-audio-ctrl {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 14, 12, 0.65);
  border: 1px solid var(--color-border-glass);
  padding: 8px 14px;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cabin-audio-ctrl:hover {
  background: rgba(28, 22, 19, 0.85);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.audio-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.audio-icon-wrap svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sound-bars {
  display: none;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-bars.active {
  display: inline-flex;
}

.sound-bars span {
  display: inline-block;
  width: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
  animation: soundBarAnim 1s ease-in-out infinite alternate;
}

.sound-bars span:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.sound-bars span:nth-child(2) { height: 11px; animation-delay: 0.3s; }
.sound-bars span:nth-child(3) { height: 7px; animation-delay: 0.2s; }

@keyframes soundBarAnim {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

/* ==========================================================================
   RESERVATION MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 5, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(23, 18, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 2.4rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(227, 27, 35, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition-spring);
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--color-text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(227, 27, 35, 0.2);
  color: #FFFFFF;
}

.modal-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(227, 27, 35, 0.15);
  color: #FF5A63;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.form-input,
.form-select {
  background: rgba(14, 11, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.98rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.25);
  background: rgba(18, 14, 13, 0.95);
}

.form-select option {
  background: #1A1412;
  color: #FFFFFF;
}

.btn-submit-booking {
  margin-top: 0.6rem;
  background: var(--color-primary-gradient);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--color-primary-glow);
  transition: var(--transition-spring);
}

.btn-submit-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 27, 35, 0.7);
}

.form-success-state {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 992px) {
  .site-header {
    padding: 1.4rem 2rem;
  }
  
  .site-header.scrolled {
    padding: 1rem 2rem;
  }
  
  .brand-logo-img {
    height: 56px;
  }
  
  .mobile-toggle-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: rgba(18, 14, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--color-border-glass);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 1.8rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  }
  
  .nav-menu.is-open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.35rem;
  }

  .header-container-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-contact-right {
    display: none;
  }

  .hero-flanking-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 7rem 1.5rem 0;
    pointer-events: none;
  }

  .hero-col-left,
  .hero-col-right {
    max-width: 520px;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .hero-split-title {
    font-size: clamp(2.3rem, 5.2vw, 3.4rem);
    margin-bottom: 0.75rem;
  }

  .hero-split-lead {
    font-size: 1rem;
    max-width: 440px;
  }

  .hero-split-divider {
    margin: 0.75rem auto;
  }

  .hero-split-sub {
    font-size: 0.88rem;
    max-width: 420px;
  }

  .hero-col-right {
    margin-top: 0.4rem;
  }

  /* Section 2: TCP Showcase */
  .section-tcp-showcase {
    margin-top: -12vh;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .tcp-banner-bg {
    position: relative;
    height: 380px;
    width: 100%;
  }

  .tcp-banner-fade {
    background: linear-gradient(180deg, transparent 20%, #FAF8F5 100%);
  }

  .tcp-container-relative {
    padding-top: 1rem;
    padding-bottom: 3.5rem;
  }

  .tcp-content-col {
    max-width: 100%;
  }

  /* Section 3: Experiencias */
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Section 4: Pilares */
  .pillars-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .pillar-divider {
    width: 60px;
    height: 1px;
    margin: 0.5rem auto;
  }

  /* Section 6: Roadmap */
  .roadmap-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .roadmap-red-bar {
    margin: 0 auto 1rem;
  }

  .roadmap-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  /* Section 7: Lead Capture */
  .lead-capture-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .lead-red-bar {
    margin: 0 auto;
  }

  .lead-form-card {
    margin: 0 auto;
  }

  /* Section 8: Footer */
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
  }

  .footer-meta-col {
    border-left: none;
    padding-left: 0;
    align-items: center;
  }

  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 1.1rem 1.25rem;
  }
  
  .site-header.scrolled {
    padding: 0.85rem 1.25rem;
  }
  
  .brand-logo-img {
    height: 46px;
  }

  .hero-flanking-content {
    padding-top: 5.5rem;
  }

  .hero-split-title {
    font-size: clamp(1.85rem, 6.8vw, 2.5rem);
    letter-spacing: -1px;
  }

  .hero-split-lead {
    font-size: 0.92rem;
  }

  .hero-split-sub {
    font-size: 0.82rem;
  }

  .hero-cta-dual-group {
    width: 100%;
    justify-content: center;
  }

  .btn-reserve-pill {
    padding: 0.85rem 1.5rem;
    font-size: 0.94rem;
  }

  .btn-reserve-circle-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-ui-overlay {
    margin-bottom: 24px;
    padding: 0 1rem;
  }
  
  .cabin-audio-ctrl {
    display: none;
  }

  /* Section 2 */
  .section-tcp-showcase {
    margin-top: -6vh;
    padding: 3.5rem 0;
    border-radius: 28px 28px 0 0;
  }

  .tcp-main-heading {
    font-size: 2.2rem;
  }

  .tcp-feature-box {
    margin-bottom: 1.8rem;
  }

  /* Section 3 */
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Section 5 */
  .crew-panoramic-wrapper {
    height: 320px;
  }

  /* Section 6 */
  .roadmap-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  /* Section 7 */
  .lead-form-card {
    padding: 1.6rem 1.2rem;
    border-radius: 22px;
  }

  .lead-hero-title {
    font-size: 2.3rem;
  }

  /* Section 8 */
  .footer-nav-list {
    gap: 0.9rem 1.2rem;
  }

  .floating-whatsapp-btn {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   INTERNAL PAGE: AUXILIAR DE VUELO (TCP) - NEW COMPREHENSIVE LAYOUT
   ========================================================================== */

/* --- Internal Header --- */
.internal-header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #EEF2F6;
  padding: 0.95rem 3.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  z-index: 100;
}

.internal-header.scrolled {
  background: #FFFFFF;
  padding: 0.8rem 3.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.header-container-internal {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.internal-logo-img {
  height: clamp(52px, 3.8vw, 68px);
  width: auto;
  display: block;
}

.internal-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.6rem;
}

.internal-nav-link {
  color: #334155;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0.2rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-arrow {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

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

.internal-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 99px;
}

/* --- Navigation Red CTA Button: "Inscríbete" --- */
.nav-item-cta {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}

.btn-nav-inscribete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary, #E31B23);
  background: var(--color-primary-gradient, linear-gradient(135deg, #FF2430 0%, #D60C17 100%));
  color: #FFFFFF !important;
  font-family: var(--font-main, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.58rem 1.45rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  cursor: pointer;
}

.btn-nav-inscribete::after {
  display: none !important;
}

.btn-nav-inscribete:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(227, 27, 35, 0.55);
  background: #C01219;
  color: #FFFFFF !important;
}

.btn-nav-inscribete:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(227, 27, 35, 0.4);
}

/* --- Section 2: Hero Section (V2 Split) --- */
.program-hero-v2 {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  min-height: clamp(520px, 60vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 4rem;
}

.program-hero-v2-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.program-hero-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 84% 20%;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 18%, black 42%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 18%, black 42%);
}

.program-hero-v2-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.program-hero-v2-content {
  max-width: 620px;
}

.hero-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.4rem;
}

.eyebrow-red-bar {
  width: 28px;
  height: 3.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

.eyebrow-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.hero-v2-subtitle {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-v2-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227, 27, 35, 0.65);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
}

.btn-hero-primary:hover .btn-arrow,
.btn-hero-secondary:hover .btn-arrow,
.btn-submit-lead:hover .btn-arrow,
.btn-curriculum-outline:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Section 3: Floating Meta Pills Bar --- */
.section-floating-meta {
  position: relative;
  z-index: 10;
  margin-top: -3.8rem;
  margin-bottom: 2.5rem;
}

.floating-meta-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #EEF2F6;
  padding: 1.8rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.floating-meta-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-right: 1px solid #F1F5F9;
  padding-right: 1.2rem;
}

.floating-meta-item:last-child {
  border-right: none;
  padding-right: 0;
}

.floating-meta-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.floating-meta-text {
  display: flex;
  flex-direction: column;
}

.floating-meta-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0E1726;
  display: block;
  margin-bottom: 2px;
}

.floating-meta-sub {
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: #64748B;
}

.floating-meta-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: color 0.2s ease;
}

.floating-meta-item a:hover .floating-meta-title {
  color: var(--color-primary, #D32F2F);
}

/* --- Section 4: "La aviación se aprende viviéndola" --- */
.section-experiences-cards {
  padding: 3.5rem 0 5.5rem;
  background: #FFFFFF;
}

.section-title-wrap {
  margin-bottom: 2.8rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.eyebrow-text-red {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.section-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.6rem;
  letter-spacing: -0.8px;
}

.section-sub-heading {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: #556271;
}

.experiences-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.experiences-photo-grid .experience-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #EEF2F6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.experiences-photo-grid .experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.experience-card-img-wrap {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.experience-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.experience-card:hover .experience-card-img {
  transform: scale(1.05);
}

.experience-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.experience-card-tag {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.experience-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}

.experience-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.4rem;
}

.experience-card-desc {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #5B6B7C;
  line-height: 1.45;
}

/* --- Section 5: "Un plan de estudios para ir más lejos." --- */
.section-curriculum-levels {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.curriculum-bg-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.curriculum-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.45;
}

.curriculum-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #071524 0%, #071524 35%, rgba(7, 21, 36, 0.8) 65%, transparent 100%);
}

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

.title-wrap-white .section-main-heading {
  color: #FFFFFF;
}

.title-wrap-white .section-sub-heading {
  color: rgba(255, 255, 255, 0.75);
}

.curriculum-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.level-column-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.level-column-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.level-badge-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px var(--color-primary-glow);
  flex-shrink: 0;
}

.level-badge-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.level-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.level-items-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.level-item-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level-item-icon svg {
  width: 20px;
  height: 20px;
}

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

.btn-curriculum-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
}

.btn-curriculum-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.45);
  transform: translateY(-2px);
}

/* --- Section 6: "Prepárate para cuidar, servir y conectar." --- */
.section-care-serve {
  background: #FFFFFF;
  padding: 5.5rem 0;
}

.care-serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.care-serve-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.care-serve-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.care-serve-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0E1726;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
}

.care-serve-lead {
  font-family: var(--font-main);
  font-size: 1.12rem;
  color: #556271;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.care-serve-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.care-serve-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0E1726;
}

.care-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.care-check-icon svg {
  width: 14px;
  height: 14px;
  stroke: #FFFFFF;
  stroke-width: 3;
}

/* --- Section 7: "Tu próximo paso empieza aquí." --- */
.section-next-steps {
  background: #F8FAFC;
  padding: 5.5rem 0;
}

.next-steps-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #EEF2F6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.next-steps-divider {
  background: #E2E8F0;
  width: 1px;
  height: 100%;
}

.next-steps-col-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 2rem;
}

.requirements-icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.requirements-icon-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #334155;
}

.req-icon {
  width: 32px;
  height: 32px;
  color: #64748B;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.admission-process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admission-process-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #334155;
}

.process-num-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

/* --- Section 8: FAQ ("Resolvemos tus dudas.") --- */
.section-faq-dark {
  background-color: #061320;
  padding: 5.5rem 0;
  color: #FFFFFF;
}

.faq-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 0.6rem;
  letter-spacing: -0.8px;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-card.is-open {
  border-color: rgba(227, 27, 35, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.6rem;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-toggle-icon {
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: transform 0.25s ease;
  font-weight: 300;
}

.faq-card.is-open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 1.6rem 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --- Section 9: Lead Capture ("El siguiente vuelo...") --- */
.section-lead-sunset {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #071524;
}

.lead-sunset-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lead-sunset-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.lead-sunset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 32, 0.94) 0%, rgba(6, 19, 32, 0.75) 50%, rgba(6, 19, 32, 0.88) 100%);
}

.lead-sunset-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lead-sunset-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.lead-sunset-sub {
  font-family: var(--font-main);
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.lead-sunset-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  color: #0E1726;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 1.5rem;
  text-align: center;
}

.input-with-icon {
  position: relative;
  margin-bottom: 1rem;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon svg {
  width: 18px;
  height: 18px;
}

.form-control-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  background: #F8FAFC;
  color: #0E1726;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control-input:focus {
  border-color: var(--color-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.15);
}

.checkbox-privacy-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.4rem;
  font-size: 0.84rem;
  color: #64748B;
}

.privacy-link {
  color: #0E1726;
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit-lead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit-lead:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227, 27, 35, 0.65);
}

.lead-success-msg {
  text-align: center;
  padding: 1.5rem 0;
}

.success-check-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 0.8rem;
}

.lead-success-msg h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.3rem;
}

.lead-success-msg p {
  color: #64748B;
  font-size: 0.92rem;
}

/* --- Internal Page Responsive --- */
@media (max-width: 1240px) and (min-width: 993px) {
  .internal-header {
    padding: 0.8rem 1.5rem;
  }
  .header-container-internal {
    gap: 1rem;
  }
  .internal-nav-list {
    gap: 1.1rem;
  }
  .internal-nav-link {
    font-size: 0.88rem;
    padding: 0.4rem 0.1rem;
  }
  .btn-nav-inscribete {
    padding: 0.5rem 1.15rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 992px) {
  .internal-header {
    padding: 0.85rem 1.5rem;
  }

  .header-container-internal {
    justify-content: space-between;
  }

  .internal-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: #FFFFFF;
    flex-direction: column;
    padding: 4rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
  }

  .internal-nav.is-open {
    right: 0;
  }

  .internal-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .internal-nav-link {
    font-size: 1.2rem;
    color: #0E1726;
  }

  .nav-item-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.8rem;
  }

  .nav-item-cta .btn-nav-inscribete {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1.05rem;
    text-align: center;
  }

  .mobile-toggle-btn {
    display: block;
  }

  .mobile-toggle-btn .hamburger-line {
    background-color: #0E1726;
  }

  .program-hero-v2-bg {
    width: 100%;
    opacity: 0.3;
  }

  .program-hero-v2-img {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .floating-meta-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .floating-meta-item:nth-child(2) {
    border-right: none;
  }

  .experiences-photo-grid {
    grid-template-columns: 1fr;
  }

  .curriculum-levels-grid {
    grid-template-columns: 1fr;
  }

  .care-serve-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .next-steps-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.8rem;
    gap: 2.5rem;
  }

  .next-steps-divider {
    display: none;
  }

  .faq-dark-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lead-sunset-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .program-hero-v2 {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-v2-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
  }

  .floating-meta-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .floating-meta-item {
    border-right: none;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 1rem;
    padding-right: 0;
  }

  .floating-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   QUIÉNES SOMOS - DEDICATED PAGE STYLES
   ========================================================================== */
.about-hero {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(7.5rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  min-height: clamp(540px, 68vh, 680px);
  display: flex;
  align-items: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 17, 30, 0.96) 0%,
    rgba(6, 17, 30, 0.88) 45%,
    rgba(6, 17, 30, 0.45) 75%,
    rgba(6, 17, 30, 0.25) 100%
  );
}

.about-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-hero-content {
  max-width: 680px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #FFFFFF;
  margin: 1.2rem 0 1.25rem;
}

.about-hero-title .highlight-red {
  color: var(--color-primary);
  display: inline-block;
}

.about-hero-subtitle {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 580px;
}

.about-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Section: Nuestra Identidad */
.section-identity {
  position: relative;
  background-color: #FFFFFF;
  color: #0E1726;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.identity-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: #0E1726;
  margin: 0.8rem 0 1.5rem;
}

.identity-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #4A5568;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

.identity-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

.identity-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

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

.pillar-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0E1726;
  margin-bottom: 0.25rem;
}

.pillar-item-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.45;
}

.identity-photo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  background: #F8FAFC;
  aspect-ratio: 4 / 5.2;
}

.identity-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section: Lo que nos mueve (Misión y Horizonte) */
.section-mission-vision {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(5rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.mission-vision-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mission-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mission-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 17, 30, 0.94) 0%, rgba(6, 17, 30, 0.86) 60%, rgba(6, 17, 30, 0.92) 100%);
}

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

.mission-cards-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: clamp(2.5rem, 4.5vw, 3.8rem);
}

.mission-split-divider {
  width: 1px;
  height: 100%;
  min-height: 120px;
  background: rgba(255, 255, 255, 0.12);
}

.mission-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mission-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.15);
  border: 1.5px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

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

.mission-box-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
}

.mission-box-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* Section: Principios que nos guían (Valores) */
.section-values {
  background-color: #FAF8F5;
  color: #0E1726;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.values-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #0E1726;
  margin: 0.8rem 0 2.8rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.2vw, 2rem);
}

.value-card {
  background: #FFFFFF;
  border: 1px solid #E8EEF5;
  border-radius: 20px;
  padding: 2rem 1.6rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.value-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(211, 47, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.value-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.value-card-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #0E1726;
  margin-bottom: 0.5rem;
}

.value-card-desc {
  font-size: 0.92rem;
  color: #5B6B7C;
  line-height: 1.5;
}

/* Section: El aprendizaje cobra vida */
.section-learning-experiences {
  background-color: #FFFFFF;
  color: #0E1726;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.learning-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #0E1726;
  margin: 0.8rem 0 2.8rem;
}

.learning-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.learning-photo-card {
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #EEF2F6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.learning-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.learning-card-media {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  background: #0D2238;
}

.learning-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.learning-photo-card:hover .learning-card-img {
  transform: scale(1.05);
}

.learning-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
}

.learning-card-content {
  padding: 1.5rem 1.6rem 1.8rem;
}

.learning-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1726;
  margin-bottom: 0.4rem;
}

.learning-card-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.45;
}

/* Section: Compromiso con una formación responsable */
.section-commitment {
  background-color: #FAF8F5;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.commitment-card-wrapper {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #EEF2F6;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.commitment-text-col {
  padding: clamp(2.5rem, 5vw, 4.5rem);
}

.commitment-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: #0E1726;
  margin: 0.8rem 0 1.25rem;
}

.commitment-desc {
  color: #4A5568;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-commitment-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.6rem;
  border: 1.5px solid #0E1726;
  border-radius: 9999px;
  color: #0E1726;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-commitment-outline:hover {
  background: #0E1726;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.commitment-media-col {
  height: 100%;
  min-height: 380px;
}

.commitment-window-frame {
  width: 100%;
  height: 100%;
}

.commitment-window-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsiveness for Quiénes Somos */
@media (max-width: 992px) {
  .identity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .identity-photo-card {
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }
  .mission-cards-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mission-split-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learning-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-card-wrapper {
    grid-template-columns: 1fr;
  }
  .commitment-media-col {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .identity-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .learning-cards-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ========================================================================
   DITCHING - DEDICATED PAGE STYLES
   ======================================================================== */

.ditching-page {
  background-color: #FFFFFF;
  color: #1A202C;
}

/* Red Accent Dashes */
.section-red-dash {
  display: block;
  width: 38px;
  height: 3.5px;
  background-color: #D32F2F;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.cta-red-dash {
  display: block;
  width: 38px;
  height: 3.5px;
  background-color: #D32F2F;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.section-accent-header {
  margin-bottom: 1.5rem;
}

.section-main-heading {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #071524;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0;
}

/* Dropdown Menu Styles (Dark Navy per reference mockup) */
.nav-item-has-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #08192C;
  min-width: 260px;
  max-width: 295px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  border-radius: 6px;
  padding: 1.15rem 1.35rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  border-top: 3px solid #D32F2F;
}

.nav-item-has-dropdown:hover .nav-dropdown-menu,
.nav-item-has-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.dropdown-item-active,
.nav-dropdown-menu li a.dropdown-highlight-red {
  color: #D32F2F;
  transform: translateX(4px);
}

/* Mobile drawer dropdown support */
@media (max-width: 992px) {
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #08192C;
    box-shadow: none;
    border-radius: 8px;
    border-top: none;
    border-left: 3px solid #D32F2F;
    margin: 0.5rem 0 0.8rem 1rem;
    padding: 0.8rem 1.2rem;
    width: auto;
    max-width: none;
  }
}

/* ------------------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------------------ */
.ditching-hero {
  position: relative;
  min-height: 560px;
  padding: 140px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #071524;
}

.ditching-hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ditching-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 21, 36, 0.97) 0%,
    rgba(7, 21, 36, 0.9) 45%,
    rgba(7, 21, 36, 0.35) 75%,
    rgba(7, 21, 36, 0.1) 100%
  );
  z-index: 2;
}

.ditching-hero-container {
  position: relative;
  z-index: 3;
}

.ditching-hero-content {
  max-width: 580px;
  color: #FFFFFF;
}

.ditching-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-tag-text {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.hero-tag-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background-color: #D32F2F;
  border-radius: 2px;
}

.ditching-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 1rem 0;
}

.ditching-hero-title-sub {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-top: 0.5rem;
}

.ditching-hero-lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 400;
}

.ditching-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.btn-ditching-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  background-color: #D32F2F;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid #D32F2F;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ditching-primary:hover {
  background-color: #B71C1C;
  border-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45);
}

.btn-ditching-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ditching-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.ditching-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.location-icon {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

/* ------------------------------------------------------------------------
   Section 2: Prepararse también es aprender a actuar
   ------------------------------------------------------------------------ */
.section-ditching-actuar {
  padding: 5.5rem 0;
  background-color: #FFFFFF;
}

.ditching-actuar-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.actuar-paragraph {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4A5568;
  margin-bottom: 1.5rem;
}

.actuar-paragraph strong {
  color: #071524;
  font-weight: 700;
}

.actuar-image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.actuar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.actuar-image-card:hover .actuar-photo {
  transform: scale(1.03);
}

/* ------------------------------------------------------------------------
   Section 3: Habilidades que se entrenan (Dark Card)
   ------------------------------------------------------------------------ */
.section-ditching-skills {
  padding: 2rem 0 5.5rem;
  background-color: #FFFFFF;
}

.ditching-skills-wrapper {
  background-color: #071524;
  border-radius: 24px;
  padding: 3.5rem 3rem 4rem;
  box-shadow: 0 24px 50px rgba(7, 21, 36, 0.18);
  position: relative;
  overflow: hidden;
}

.skills-card-header {
  margin-bottom: 3rem;
}

.skills-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.025em;
}

.ditching-skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ditching-skill-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 1.25rem;
}

.ditching-skill-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.skill-icon-wrap {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  color: #D32F2F;
}

.skill-icon-wrap svg {
  width: 44px;
  height: 44px;
  stroke: #D32F2F;
}

.skill-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.skill-col-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ------------------------------------------------------------------------
   Section 4: Vive la práctica de cerca (Video Player)
   ------------------------------------------------------------------------ */
.section-ditching-video {
  padding: 5.5rem 0;
  background-color: #FAF9F6;
}

.ditching-video-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 4rem;
  align-items: center;
}

.video-subtext {
  font-size: 1.15rem;
  color: #556987;
  margin: 0;
  font-weight: 400;
}

.video-player-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  background: #000000;
  aspect-ratio: 16 / 9;
}

.video-native {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.video-player-card.is-playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

.big-play-trigger {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: playPulse 2.4s infinite;
}

.big-play-trigger:hover {
  transform: scale(1.1);
  background: #FFFFFF;
}

.play-icon-svg {
  width: 32px;
  height: 32px;
  color: #D32F2F;
  margin-left: 4px;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.45);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(211, 47, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
  }
}

.video-control-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-player-card:hover .video-control-bar,
.video-player-card.is-playing:hover .video-control-bar {
  opacity: 1;
}

.btn-ctrl-play,
.btn-ctrl-vol,
.btn-ctrl-fs {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-ctrl-play:hover,
.btn-ctrl-vol:hover,
.btn-ctrl-fs:hover {
  color: #D32F2F;
  transform: scale(1.1);
}

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

.video-progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.video-progress-fill {
  height: 100%;
  background: #D32F2F;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ------------------------------------------------------------------------
   Section 5: Cada práctica deja un aprendizaje (Photo Grid)
   ------------------------------------------------------------------------ */
.section-ditching-learning {
  padding: 5.5rem 0;
  background-color: #FAF9F6;
}

.learning-header {
  margin-bottom: 2.5rem;
}

.ditching-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ditching-gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 2.75;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  background-color: #E2E8F0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ditching-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(7, 21, 36, 0.14);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ditching-gallery-card:hover .gallery-card-img {
  transform: scale(1.07);
}

.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(7, 21, 36, 0.95) 0%, rgba(7, 21, 36, 0.6) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.gallery-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.gallery-zoom-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(7, 21, 36, 0.3);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.ditching-gallery-card:hover .gallery-zoom-btn {
  background: #D32F2F;
  border-color: #D32F2F;
  transform: scale(1.1);
}

.ditching-gallery-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 2.75rem;
}

.btn-ditching-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 2.25rem;
  border-radius: 999px;
  border: 1.5px solid #071524;
  background: transparent;
  color: #071524;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ditching-gallery-more:hover {
  background: #071524;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 21, 36, 0.15);
}

.gallery-disclaimer-text {
  position: absolute;
  right: 0;
  font-size: 0.8rem;
  color: #718096;
  font-style: italic;
}

/* ------------------------------------------------------------------------
   Section 6: Aprender. Practicar. Fortalecer (Pillars)
   ------------------------------------------------------------------------ */
.section-ditching-pillars {
  padding: 4.5rem 0;
  background-color: #FAF9F6;
}

.pillars-header {
  margin-bottom: 2rem;
}

.ditching-pillars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.ditching-pillar-col {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  padding: 0 1.5rem;
}

.ditching-pillar-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(211, 47, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D32F2F;
  flex-shrink: 0;
}

.pillar-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #D32F2F;
}

.pillar-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A202C;
  margin: 0;
  line-height: 1.4;
}

/* ------------------------------------------------------------------------
   Section 7: Tu formación va más allá del aula (CTA Pre-Footer)
   ------------------------------------------------------------------------ */
.section-ditching-cta {
  position: relative;
  min-height: 380px;
  padding: 90px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #071524;
}

.ditching-cta-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ditching-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 21, 36, 0.97) 0%,
    rgba(7, 21, 36, 0.9) 45%,
    rgba(7, 21, 36, 0.35) 75%,
    rgba(7, 21, 36, 0.1) 100%
  );
  z-index: 2;
}

.ditching-cta-container {
  position: relative;
  z-index: 3;
}

.ditching-cta-content {
  max-width: 580px;
  color: #FFFFFF;
}

.ditching-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0 0 0.85rem 0;
}

.ditching-cta-subtitle {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
}

.ditching-cta-subtitle strong {
  color: #FFFFFF;
  font-weight: 700;
}

.ditching-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------------
   Lightbox Modal
   ------------------------------------------------------------------------ */
.ditching-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 36, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  z-index: 10001;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrap {
  width: 100%;
  max-height: 72vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  background: #000000;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: #FFFFFF;
  margin-top: 1.25rem;
}

.lightbox-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.4rem 0;
}

.lightbox-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  font-size: 2.75rem;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  color: #D32F2F;
  transform: scale(1.15);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-arrow:hover {
  background: #D32F2F;
  border-color: #D32F2F;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -64px;
}

.lightbox-next {
  right: -64px;
}

/* ------------------------------------------------------------------------
   Responsive Breakpoints for Ditching
   ------------------------------------------------------------------------ */
@media (max-width: 992px) {
  .ditching-actuar-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ditching-skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .ditching-skill-col:nth-child(2)::after {
    display: none;
  }
  .ditching-video-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ditching-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ditching-pillars-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .ditching-pillar-divider {
    display: none;
  }
  .ditching-pillar-col {
    padding: 0;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .ditching-hero {
    padding: 120px 0 50px;
    min-height: auto;
  }
  .ditching-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(7, 21, 36, 0.95) 0%,
      rgba(7, 21, 36, 0.9) 65%,
      rgba(7, 21, 36, 0.7) 100%
    );
  }
  .ditching-cta-overlay {
    background: linear-gradient(
      to bottom,
      rgba(7, 21, 36, 0.95) 0%,
      rgba(7, 21, 36, 0.9) 65%,
      rgba(7, 21, 36, 0.7) 100%
    );
  }
  .ditching-skills-wrapper {
    padding: 2.5rem 1.5rem;
  }
  .ditching-skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ditching-skill-col::after {
    display: none !important;
  }
  .ditching-gallery-grid {
    grid-template-columns: 1fr;
  }
  .ditching-gallery-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .gallery-disclaimer-text {
    position: static;
  }
}

/* ==========================================================================
   PAGE: POR QUÉ ESTUDIAR AVIACIÓN EN ECOTET
   ========================================================================== */

/* --- Hero Section --- */
.pq-hero {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  min-height: clamp(520px, 68vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pq-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pq-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 1) 45%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 1) 45%);
}

.pq-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.pq-hero-content {
  max-width: 620px;
}

.pq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.pq-breadcrumb a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pq-breadcrumb a:hover {
  color: #FFFFFF;
}

.pq-hero-eyebrow {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-primary, #E31B23);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pq-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.pq-hero-title .text-red {
  color: var(--color-primary, #E31B23);
  display: block;
}

.pq-hero-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 2rem;
  max-width: 520px;
}

.pq-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* --- Section 1: Razones para elegir tu próximo destino --- */
.pq-razones-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #FFFFFF;
}

.pq-section-header {
  margin-bottom: 3rem;
}

.pq-eyebrow-bar {
  display: inline-block;
  width: 36px;
  height: 4px;
  background-color: var(--color-primary, #E31B23);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.pq-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #071524;
  line-height: 1.2;
}

.pq-section-title.text-white {
  color: #FFFFFF;
}

.pq-razones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pq-razon-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pq-razon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(7, 21, 36, 0.08);
  border-color: #CBD5E1;
}

.pq-razon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.pq-razon-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(227, 27, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #E31B23);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.pq-razon-card:hover .pq-razon-icon-wrap {
  background-color: var(--color-primary, #E31B23);
  color: #FFFFFF;
}

.pq-razon-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.pq-razon-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary, #E31B23);
  letter-spacing: 0.05em;
}

.pq-razon-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #071524;
  margin-bottom: 0.6rem;
}

.pq-razon-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748B;
  margin: 0;
}

/* --- Section 2: La aviación se aprende viviéndola --- */
.pq-experiencias-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #071524;
  color: #FFFFFF;
}

.pq-exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pq-exp-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pq-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

.pq-exp-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.pq-exp-card:hover .pq-exp-card-bg {
  transform: scale(1.04);
}

.pq-exp-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 21, 36, 0.95) 0%, rgba(7, 21, 36, 0.6) 45%, rgba(7, 21, 36, 0.15) 100%);
  z-index: 2;
}

.pq-exp-card-content {
  position: relative;
  z-index: 3;
}

.pq-exp-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.pq-exp-card-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #CBD5E1;
  margin-bottom: 1.5rem;
}

.pq-exp-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--color-primary, #E31B23);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.4);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pq-exp-card-btn:hover {
  background-color: var(--color-primary-dark, #C01219);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* --- Section 3: Tu crecimiento también nos importa --- */
.pq-crecimiento-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #F8FAFC;
}

.pq-crecimiento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pq-crecimiento-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 21, 36, 0.12);
}

.pq-crecimiento-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pq-crecimiento-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #475569;
  margin-top: 1rem;
  margin-bottom: 2.2rem;
}

.pq-checks-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pq-check-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.pq-check-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--color-primary, #E31B23);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #E31B23);
  flex-shrink: 0;
}

.pq-check-icon svg {
  width: 20px;
  height: 20px;
}

.pq-check-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #071524;
}

/* --- Section 4: Una vocación que conecta personas y destinos --- */
.pq-vocacion-section {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.pq-vocacion-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.pq-vocacion-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 40%);
}

.pq-vocacion-container {
  position: relative;
  z-index: 2;
}

.pq-vocacion-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.pq-vocacion-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.pq-vocacion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pq-vocacion-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pq-vocacion-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.pq-vocacion-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.pq-vocacion-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.pq-vocacion-item-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #94A3B8;
  margin: 0;
}

/* --- Section 5: Conoce ECOTET en Bogotá --- */
.pq-bogota-section {
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  background-color: #FFFFFF;
}

.pq-bogota-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.pq-bogota-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}

.pq-bogota-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(227, 27, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #E31B23);
  flex-shrink: 0;
}

.pq-bogota-pin-icon svg {
  width: 24px;
  height: 24px;
}

.pq-bogota-info-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

.pq-bogota-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: transparent;
  border: 1.5px solid #071524;
  color: #071524;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline-dark:hover {
  background-color: #071524;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.pq-bogota-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 21, 36, 0.1);
}

.pq-bogota-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Section 6: CTA Final Banner --- */
.pq-cta-banner-section {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.pq-cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.pq-cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 21, 36, 0.9) 0%, rgba(7, 21, 36, 0.7) 100%);
}

.pq-cta-banner-container {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.pq-cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.pq-cta-banner-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 2rem;
}

/* --- Responsive Rules for Por Qué Page --- */
@media (max-width: 1024px) {
  .pq-razones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pq-vocacion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .pq-hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .pq-hero-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pq-crecimiento-grid,
  .pq-bogota-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pq-vocacion-bg {
    display: none;
  }
}

@media (max-width: 768px) {
  .pq-razones-grid {
    grid-template-columns: 1fr;
  }
  .pq-exp-cards-grid {
    grid-template-columns: 1fr;
  }
  .pq-vocacion-grid {
    grid-template-columns: 1fr;
  }
  .pq-hero-ctas,
  .pq-bogota-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .pq-hero-ctas a,
  .pq-bogota-ctas a {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   PAGE: EXPERIENCIA EN VUELO ECOTET
   ========================================================================== */

/* --- Hero Section --- */
.ev-hero {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  min-height: clamp(520px, 68vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ev-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ev-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 1) 45%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 1) 45%);
}

.ev-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.ev-hero-content {
  max-width: 620px;
}

.ev-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.ev-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #CBD5E1;
  margin-top: 2rem;
}

.ev-hero-location svg {
  color: var(--color-primary, #E31B23);
  width: 18px;
  height: 18px;
}

/* --- Section 1: Aprender mientras se viaja --- */
.ev-aprender-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #FFFFFF;
}

.ev-aprender-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.ev-aprender-p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1rem;
}

.ev-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ev-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ev-feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(227, 27, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #E31B23);
  margin-bottom: 0.85rem;
  transition: all 0.2s ease;
}

.ev-feature-item:hover .ev-feature-icon-wrap {
  background-color: var(--color-primary, #E31B23);
  color: #FFFFFF;
}

.ev-feature-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.ev-feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #071524;
  margin-bottom: 0.35rem;
}

.ev-feature-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748B;
  margin: 0;
}

.ev-aprender-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 21, 36, 0.12);
}

.ev-aprender-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Section 2: Así se vive la experiencia (Video Section) --- */
.ev-video-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #071524;
  color: #FFFFFF;
}

.ev-video-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.ev-video-player-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  background-color: #030A12;
}

.ev-video-poster-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 380px;
  object-fit: cover;
}

.ev-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 36, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.ev-video-player-card:hover .ev-video-overlay {
  background: rgba(7, 21, 36, 0.2);
}

.ev-play-button-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
}

.ev-play-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-primary, #E31B23);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ev-play-button-big:hover .ev-play-icon-circle {
  transform: scale(1.1);
  background: var(--color-primary, #E31B23);
  color: #FFFFFF;
}

.ev-play-icon-circle svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.ev-play-label {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ev-video-controls-fake {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FFFFFF;
  z-index: 3;
}

.ev-progress-bar-fake {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
}

.ev-progress-fill-fake {
  width: 28%;
  height: 100%;
  background: var(--color-primary, #E31B23);
  border-radius: 2px;
}

/* --- Section 3: Galería (Un viaje que se queda contigo) --- */
.ev-galeria-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #F8FAFC;
}

.ev-galeria-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ev-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ev-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ev-filter-btn.active,
.ev-filter-btn:hover {
  background: var(--color-primary, #E31B23);
  border-color: var(--color-primary, #E31B23);
  color: #FFFFFF;
}

.ev-link-ver-mas {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: #071524;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.ev-link-ver-mas:hover {
  color: var(--color-primary, #E31B23);
}

.ev-galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ev-galeria-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 8px 24px rgba(7, 21, 36, 0.08);
  cursor: pointer;
}

.ev-galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ev-galeria-item:hover img {
  transform: scale(1.05);
}

.ev-galeria-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(7, 21, 36, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  z-index: 2;
}

.ev-galeria-caption-title {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
}

.ev-galeria-expand-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-disclaimer-p {
  font-size: 0.82rem;
  color: #94A3B8;
  margin-top: 1.2rem;
}

/* --- Section 4: Tres momentos, una gran experiencia --- */
.ev-momentos-section {
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  background-color: #FFFFFF;
}

.ev-momentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.ev-momento-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ev-momento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(7, 21, 36, 0.08);
}

.ev-momento-thumb {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.ev-momento-info {
  flex: 1;
}

.ev-momento-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary, #E31B23);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.ev-momento-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #071524;
  margin-bottom: 0.25rem;
}

.ev-momento-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #64748B;
  margin: 0;
}

/* --- Responsive Rules for Experiencia en Vuelo --- */
@media (max-width: 992px) {
  .ev-hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .ev-hero-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ev-aprender-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ev-galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-momentos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ev-features-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .ev-galeria-grid {
    grid-template-columns: 1fr;
  }
  .ev-galeria-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PAGE: GALERÍA DE IMÁGENES ECOTET
   ========================================================================== */

/* --- Hero Section --- */
.gal-hero {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  min-height: clamp(500px, 65vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gal-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 1) 45%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 1) 45%);
}

.gal-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.gal-hero-content {
  max-width: 600px;
}

.gal-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

/* --- Section: Así se vive ECOTET (Galería interactiva) --- */
.gal-main-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #FFFFFF;
}

.gal-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gal-header-left {
  max-width: 480px;
}

.gal-header-desc {
  max-width: 420px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

.gal-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
}

.gal-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.gal-filter-pill {
  padding: 0.5rem 1.3rem;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gal-filter-pill:hover {
  background: #EDF2F7;
  color: #071524;
}

.gal-filter-pill.active {
  background: var(--color-primary, #E31B23);
  border-color: var(--color-primary, #E31B23);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

.gal-view-toggles {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gal-view-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gal-view-btn.active,
.gal-view-btn:hover {
  background: rgba(227, 27, 35, 0.08);
  border-color: var(--color-primary, #E31B23);
  color: var(--color-primary, #E31B23);
}

/* --- Gallery Grid Layouts --- */
.gal-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gal-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 8px 24px rgba(7, 21, 36, 0.07);
  cursor: pointer;
  background-color: #0E1726;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 21, 36, 0.15);
}

/* Special widths in Row 1 */
.gal-item.gal-item-wide {
  grid-column: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.05);
}

.gal-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(7, 21, 36, 0.85) 0%, rgba(7, 21, 36, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  z-index: 2;
}

.gal-item-title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.gal-item-expand-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gal-item:hover .gal-item-expand-btn {
  background: var(--color-primary, #E31B23);
  transform: scale(1.1);
}

.gal-footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: center;
}

.btn-load-more-gal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1.5px solid #071524;
  color: #071524;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-load-more-gal:hover {
  background: #071524;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.gal-disclaimer-text {
  font-size: 0.85rem;
  color: #94A3B8;
  align-self: flex-start;
  margin-top: -1rem;
}

/* --- Section: Ditching Feature Banner --- */
.gal-ditching-banner-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  background-color: #FFFFFF;
}

.gal-ditching-banner-card {
  background-color: #071524;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  box-shadow: 0 20px 48px rgba(7, 21, 36, 0.15);
}

.gal-ditching-content {
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #FFFFFF;
}

.gal-album-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.gal-album-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.gal-ditching-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.gal-ditching-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 2rem;
}

.gal-ditching-img-wrap {
  height: 100%;
  min-height: 320px;
}

.gal-ditching-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Section: Imagina tu próxima historia aquí (CTA Split) --- */
.gal-cta-split-section {
  position: relative;
  background-color: #F8FAFC;
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.gal-cta-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.gal-cta-split-bg-wing {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  pointer-events: none;
  opacity: 0.95;
}

.gal-cta-split-bg-wing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 40%);
}

.gal-cta-split-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

/* --- Lightbox Modal --- */
.gal-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 21, 36, 0.94);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gal-lightbox-overlay.is-active {
  display: flex;
}

.gal-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gal-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.gal-lightbox-caption {
  margin-top: 1rem;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.gal-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* --- Responsive Rules for Galería --- */
@media (max-width: 992px) {
  .gal-hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .gal-hero-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .gal-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.gal-item-wide {
    grid-column: span 2;
  }
  .gal-ditching-banner-card {
    grid-template-columns: 1fr;
  }
  .gal-cta-split-grid {
    grid-template-columns: 1fr;
  }
  .gal-cta-split-bg-wing {
    display: none;
  }
}

@media (max-width: 640px) {
  .gal-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .gal-item.gal-item-wide {
    grid-column: span 1;
  }
  .gal-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .gal-controls-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PAGE: INSCRIPCIÓN PASO A PASO
   ========================================================================== */

/* --- Hero Section --- */
.adm-hero {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  min-height: clamp(520px, 68vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.adm-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.adm-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 1) 45%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 1) 45%);
}

.adm-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.adm-hero-content {
  max-width: 620px;
}

.adm-system-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #94A3B8;
  margin-top: 1.5rem;
}

.adm-system-note a {
  color: #CBD5E1;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.adm-system-note a:hover {
  color: #FFFFFF;
}

.adm-boarding-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #071524;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 3;
}

.adm-boarding-badge svg {
  color: var(--color-primary, #E31B23);
  width: 22px;
  height: 22px;
}

/* --- Section: Roadmap horizontal (Tu ruta de admisión) --- */
.adm-roadmap-section {
  padding: 2.5rem 0;
  background-color: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.adm-roadmap-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.8rem 2.2rem;
  box-shadow: 0 4px 20px rgba(7, 21, 36, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.adm-roadmap-title-col {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 240px;
}

.adm-roadmap-plane-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(227, 27, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #E31B23);
  flex-shrink: 0;
}

.adm-roadmap-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #071524;
  margin-bottom: 0.2rem;
}

.adm-roadmap-subtitle {
  font-size: 0.85rem;
  color: #64748B;
  margin: 0;
}

.adm-roadmap-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  position: relative;
}

.adm-roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  height: 2px;
  border-top: 2px dashed #CBD5E1;
  z-index: 1;
}

.adm-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.adm-step-num-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary, #E31B23);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #FFFFFF;
  margin-bottom: 0.6rem;
}

.adm-step-icon-small {
  color: #64748B;
  margin-bottom: 0.35rem;
}

.adm-step-icon-small svg {
  width: 18px;
  height: 18px;
}

.adm-step-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #071524;
  max-width: 85px;
  line-height: 1.25;
}

/* --- Section: Process Steps (2-Column Grid) --- */
.adm-process-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background-color: #FFFFFF;
}

.adm-process-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left: Steps List */
.adm-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.adm-step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  box-shadow: 0 6px 20px rgba(7, 21, 36, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.adm-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 21, 36, 0.08);
  border-color: #CBD5E1;
}

.adm-step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.adm-card-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary, #E31B23);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adm-card-icon-wrap {
  color: var(--color-primary, #E31B23);
}

.adm-card-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.adm-step-info {
  flex: 1;
}

.adm-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #071524;
  margin-bottom: 0.4rem;
}

.adm-step-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748B;
  margin-bottom: 1.2rem;
}

.adm-step-subitems {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-left: 0.2rem;
}

.adm-subitem-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
}

.adm-subitem-row svg {
  color: var(--color-primary, #E31B23);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.adm-btn-system {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-primary, #E31B23);
  color: #FFFFFF !important;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

.adm-btn-system:hover {
  background: var(--color-primary-dark, #C01219);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227, 27, 35, 0.45);
}

.adm-step-thumbnail-wrap {
  width: 175px;
  height: 125px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(7, 21, 36, 0.08);
  flex-shrink: 0;
}

.adm-step-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right: Sidebar Widgets */
.adm-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.adm-widget-card {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(7, 21, 36, 0.06);
}

/* Widget 1: Ya comenzaste (Dark Navy) */
.adm-widget-dark {
  background: #071524;
  color: #FFFFFF;
}

.adm-widget-airplane-icon {
  color: var(--color-primary, #E31B23);
  margin-bottom: 0.8rem;
}

.adm-widget-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.adm-widget-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #CBD5E1;
  margin-bottom: 1.4rem;
}

.adm-btn-widget-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--color-primary, #E31B23);
  color: #FFFFFF !important;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.4);
  transition: all 0.2s ease;
}

.adm-btn-widget-red:hover {
  background: var(--color-primary-dark, #C01219);
  transform: translateY(-2px);
}

/* Widget 2: Todo en un solo lugar (White + Red Border) */
.adm-widget-outline {
  background: #FFFFFF;
  border: 1.5px solid #FCA5A5;
}

.adm-widget-icon-laptop {
  color: var(--color-primary, #E31B23);
  margin-bottom: 0.8rem;
}

.adm-widget-title-dark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #071524;
  margin-bottom: 0.5rem;
}

.adm-widget-desc-dark {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748B;
  margin-bottom: 1.2rem;
}

.adm-system-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #FFF1F2;
  border: 1px solid #FECDD3;
  color: var(--color-primary, #E31B23) !important;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.adm-system-pill-link:hover {
  background: #FFE4E6;
  border-color: #FDA4AF;
}

/* Widget 3: Advisor Help Card */
.adm-widget-help {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  padding: 0;
}

.adm-widget-help-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.adm-widget-help-body {
  padding: 1.5rem;
  text-align: center;
}

.adm-help-bubble-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(227, 27, 35, 0.1);
  color: var(--color-primary, #E31B23);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 0.8rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #FFFFFF;
}

.adm-btn-help-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: 1.5px solid var(--color-primary, #E31B23);
  color: var(--color-primary, #E31B23) !important;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.adm-btn-help-outline:hover {
  background: var(--color-primary, #E31B23);
  color: #FFFFFF !important;
}

/* --- Section: ETAPA FINAL - Formaliza tu matrícula --- */
.adm-etapa-section {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.adm-etapa-bg-wing {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.adm-etapa-bg-wing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 40%);
}

.adm-etapa-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.adm-etapa-content {
  max-width: 540px;
}

.adm-etapa-tag {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #94A3B8;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.adm-etapa-card {
  background: #FFFFFF;
  color: #071524;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.adm-etapa-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  color: #071524;
}

.adm-docs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.adm-doc-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
}

.adm-doc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071524;
  flex-shrink: 0;
}

.adm-doc-note {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 1.4rem;
}

/* --- Section: Resolvemos tus dudas (FAQ) --- */
.adm-faq-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: #F8FAFC;
}

.adm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.adm-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adm-faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.adm-faq-item.is-open {
  border-color: #CBD5E1;
  box-shadow: 0 6px 20px rgba(7, 21, 36, 0.05);
}

.adm-faq-question {
  width: 100%;
  padding: 1.25rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #071524;
  cursor: pointer;
  text-align: left;
}

.adm-faq-toggle-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #64748B;
  transition: transform 0.25s ease;
}

.adm-faq-item.is-open .adm-faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-primary, #E31B23);
}

.adm-faq-answer {
  padding: 0 1.6rem 1.4rem;
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.adm-faq-item.is-open .adm-faq-answer {
  display: block;
}

/* --- Section: CTA Final Banner --- */
.adm-cta-banner-section {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.adm-cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.adm-cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 21, 36, 0.9) 0%, rgba(7, 21, 36, 0.65) 100%);
}

.adm-cta-banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.adm-cta-banner-left {
  max-width: 580px;
}

/* --- Responsive Rules for Admisiones --- */
@media (max-width: 1024px) {
  .adm-process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .adm-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .adm-roadmap-timeline {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 992px) {
  .adm-hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .adm-hero-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .adm-boarding-badge {
    display: none;
  }
  .adm-sidebar {
    grid-template-columns: 1fr;
  }
  .adm-etapa-grid {
    grid-template-columns: 1fr;
  }
  .adm-etapa-bg-wing {
    display: none;
  }
  .adm-faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .adm-roadmap-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .adm-roadmap-timeline {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .adm-step-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .adm-step-thumbnail-wrap {
    width: 100%;
    height: 160px;
  }
  .adm-roadmap-timeline {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
  }
  .adm-roadmap-timeline::before {
    display: none;
  }
  .adm-cta-banner-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ) - ESTILOS OFICIALES
   ========================================================================== */

body.faq-page {
  background-color: #FFFFFF !important;
  color: #071524 !important;
}

/* 1. FAQ Hero Section */
.faq-hero-section {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: 130px 0 80px 0;
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,1) 70%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,1) 70%);
  opacity: 0.9;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.faq-search-box {
  margin-top: 1.8rem;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 6px 8px 6px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 540px;
}

.faq-search-icon {
  width: 20px;
  height: 20px;
  color: #94A3B8;
  flex-shrink: 0;
}

.faq-search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.96rem;
  font-family: inherit;
  color: #0F172A;
  background: transparent;
}

.faq-search-input::placeholder {
  color: #94A3B8;
}

.faq-search-btn {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.faq-search-btn:hover {
  background: #B71C1C;
  transform: translateY(-1px);
}

.faq-search-tags {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

.faq-search-tags span {
  font-weight: 500;
}

.faq-tag-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-tag-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
}

/* 2. Floating Categories Navigation Bar */
.faq-cats-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -34px;
  margin-bottom: 2.5rem;
}

.faq-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.faq-cat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(211, 47, 47, 0.35);
}

.faq-cat-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-cat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #D32F2F);
}

.faq-cat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.faq-cat-desc {
  font-size: 0.76rem;
  color: #64748B;
  margin: 0;
  line-height: 1.3;
}

.faq-cat-arrow {
  color: #CBD5E1;
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-cat-card:hover .faq-cat-arrow {
  color: var(--color-primary, #D32F2F);
  transform: translateX(3px);
}

/* 3. Main Body: 2-Column Layout */
.faq-main-section {
  background-color: #F8FAFC;
  padding: 0 0 70px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Accordion Groups */
.faq-main-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-group {
  scroll-margin-top: 100px;
}

.faq-group-accent-line {
  width: 32px;
  height: 4px;
  background-color: var(--color-primary, #D32F2F);
  border-radius: 2px;
  margin-bottom: 8px;
}

.faq-group-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-item.active {
  border-color: rgba(211, 47, 47, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: var(--color-primary, #D32F2F);
}

.faq-toggle-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #EF4444;
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}

.faq-item.active .faq-toggle-circle {
  background: var(--color-primary, #D32F2F);
  border-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
}

.faq-answer-body {
  padding: 0 20px 18px 20px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer-body {
  display: block;
}

.faq-answer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--color-primary, #D32F2F);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.faq-answer-link:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

/* 4. Right Sidebar Column */
.faq-sidebar-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card 1: Orientación / Asesor */
.faq-card-advisor {
  background: #071524;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: #FFFFFF;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(7, 21, 36, 0.15);
}

.faq-card-advisor-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.faq-card-advisor-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 6px 0 6px 0;
  line-height: 1.25;
}

.faq-card-advisor-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.btn-faq-advisor {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-faq-advisor:hover {
  background: #B71C1C;
  transform: translateY(-2px);
}

.faq-card-advisor-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

/* Card 2: Accesos útiles */
.faq-card-quicklinks {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-card-quicklinks-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #071524;
  margin: 6px 0 16px 0;
}

.faq-quicklinks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-quicklink-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F1F5F9;
  text-decoration: none;
  color: #1E293B;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.faq-quicklink-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-quicklink-item:hover {
  color: var(--color-primary, #D32F2F);
  transform: translateX(3px);
}

.faq-quicklink-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-quicklink-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary, #D32F2F);
  flex-shrink: 0;
}

.faq-quicklink-arrow {
  color: #CBD5E1;
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.faq-quicklink-item:hover .faq-quicklink-arrow {
  color: var(--color-primary, #D32F2F);
}

/* Card 3: Antes de inscribirte */
.faq-card-tip {
  background: #FFF5F5;
  border: 1px solid #FEE2E2;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.faq-tip-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-primary, #D32F2F);
}

.faq-tip-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: #991B1B;
  margin: 0 0 4px 0;
}

.faq-tip-desc {
  font-size: 0.82rem;
  color: #7F1D1D;
  margin: 0;
  line-height: 1.45;
}

/* 5. Middle Banner: ¿No encontraste tu respuesta? */
.faq-mid-banner {
  background-color: #071524;
  background-image: linear-gradient(90deg, rgba(7,21,36,0.92) 0%, rgba(7,21,36,0.7) 100%), url('../img/banner-preguntas-frecuentes-ecotet.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-mid-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-mid-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-mid-chat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.faq-mid-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.faq-mid-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.faq-mid-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-faq-whatsapp {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-faq-whatsapp:hover {
  background: #B71C1C;
  transform: translateY(-2px);
}

.btn-faq-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-faq-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* 6. Bottom CTA Banner: Tu próximo paso comienza con información clara */
.faq-bottom-cta {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
  padding: 38px 0;
}

.faq-bottom-wing {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-bottom-wing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%);
}

.faq-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 24px;
}

.faq-bottom-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #071524;
  margin: 6px 0 0 0;
  max-width: 520px;
  line-height: 1.25;
}

.btn-faq-program {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-faq-program:hover {
  background: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45);
}

/* 7. Responsive Breakpoints for FAQ */
@media (max-width: 1100px) {
  .faq-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-sidebar-col {
    position: static;
  }
  .faq-hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .faq-hero-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .faq-bottom-wing {
    display: none;
  }
}

@media (max-width: 640px) {
  .faq-cats-grid {
    grid-template-columns: 1fr;
  }
  .faq-search-box {
    flex-direction: column;
    align-items: stretch;
    border-radius: 12px;
    padding: 12px;
  }
  .faq-search-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .faq-mid-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-mid-actions {
    width: 100%;
  }
  .btn-faq-whatsapp, .btn-faq-secondary {
    width: 100%;
    justify-content: center;
  }
  .faq-bottom-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-faq-program {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EDUCACIÓN CONTINUADA - ESTILOS OFICIALES (.edc-*)
   ========================================================================== */

body.ed-continuada-page {
  background-color: #FFFFFF !important;
  color: #071524 !important;
}

body.ed-continuada-page main {
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
}

/* 1. Hero Section */
.edc-hero-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 135px 0 65px 0;
  overflow: hidden;
}

.edc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.edc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D32F2F;
  margin-bottom: 1rem;
}

.edc-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: #D32F2F;
  border-radius: 2px;
}

.edc-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #071524;
  line-height: 1.15;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
}

.edc-hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
  margin: 0 0 2rem 0;
}

.edc-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-edc-primary {
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.25);
}

.btn-edc-primary:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.35);
}

.btn-edc-outline {
  background-color: transparent;
  color: #071524;
  border: 1px solid #CBD5E1;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-edc-outline:hover {
  border-color: #071524;
  background-color: #F8FAFC;
  transform: translateY(-2px);
}

.edc-hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

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

/* 2. Floating Categories Navigation Bar */
.edc-floating-cats {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 2.5rem;
}

.edc-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.edc-cat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.edc-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(211, 47, 47, 0.35);
}

.edc-cat-icon {
  width: 38px;
  height: 38px;
  color: var(--color-primary, #D32F2F);
  display: flex;
  align-items: center;
  justify-content: center;
}

.edc-cat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

/* 3. Areas de Formacion Bar */
.edc-areas-bar {
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 14px 0;
  margin-bottom: 3.5rem;
}

.edc-areas-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.edc-areas-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #D32F2F;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.edc-areas-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: #D32F2F;
  border-radius: 2px;
}

.edc-area-sep {
  color: #CBD5E1;
  font-weight: 300;
}

.edc-area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.edc-area-pill:hover {
  color: #D32F2F;
}

.edc-area-icon {
  width: 18px;
  height: 18px;
  color: #D32F2F;
}

/* 4. Catalog Section */
.edc-catalog-section {
  padding: 0 0 60px 0;
}

.edc-catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 20px;
  flex-wrap: wrap;
}

.edc-catalog-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #D32F2F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.edc-catalog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #071524;
  margin: 0;
}

.edc-filters-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.edc-filter-btn {
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #475569;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.edc-filter-btn:hover {
  border-color: #CBD5E1;
  color: #0F172A;
}

.edc-filter-btn.active {
  background: var(--color-primary, #D32F2F);
  border-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
}

.edc-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.2rem;
}

.edc-course-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 145px;
}

.edc-course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(211, 47, 47, 0.3);
}

.edc-course-thumb {
  width: 115px;
  flex-shrink: 0;
  overflow: hidden;
  background: #071524;
}

.edc-course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.edc-course-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.edc-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 4px;
}

.edc-badge.curso {
  background: #FEF2F2;
  color: #D32F2F;
  border: 1px solid #FEE2E2;
}

.edc-badge.diplomado {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FFEDD5;
}

.edc-course-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.edc-course-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: 8px;
}

.edc-duration-icon {
  width: 14px;
  height: 14px;
  color: #94A3B8;
}

.edc-course-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary, #D32F2F);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.edc-course-card:hover .edc-course-cta {
  transform: translateX(3px);
  text-decoration: underline;
}

.edc-catalog-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.edc-footer-note {
  font-size: 0.85rem;
  color: #64748B;
}

/* 5. Dark Pillars Section */
.edc-pillars-section {
  background-color: #071524;
  color: #FFFFFF;
  padding: 55px 0;
  margin-bottom: 5rem;
}

.edc-pillars-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 40px;
  align-items: center;
}

.edc-pillars-accent-line {
  width: 32px;
  height: 4px;
  background-color: var(--color-primary, #D32F2F);
  border-radius: 2px;
  margin-bottom: 12px;
}

.edc-pillars-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.edc-pillars-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.edc-pillars-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.edc-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edc-pillar-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary, #D32F2F);
  margin-bottom: 4px;
}

.edc-pillar-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.edc-pillar-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
}

/* 6. Corporate Section (Fortalece el talento de tu organizacion) */
.edc-corp-section {
  margin-bottom: 5rem;
}

.edc-corp-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.edc-corp-media {
  min-height: 240px;
}

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

.edc-corp-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.edc-corp-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #071524;
  margin: 8px 0 12px 0;
  line-height: 1.2;
}

.edc-corp-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

/* 7. Steps Roadmap (Elige tu proximo paso) */
.edc-steps-section {
  margin-bottom: 4.5rem;
}

.edc-steps-header {
  margin-bottom: 2.5rem;
}

.edc-steps-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #071524;
  margin: 8px 0 0 0;
}

.edc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.edc-steps-grid::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50px;
  right: 50px;
  height: 1px;
  border-top: 2px dashed #E2E8F0;
  z-index: 1;
}

.edc-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.edc-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.edc-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 6px 0;
}

.edc-step-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}

/* 8. Bottom CTA Banner */
.edc-banner-bottom {
  background: #FFF5F5;
  border: 1px solid #FEE2E2;
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.edc-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.edc-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #D32F2F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edc-banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 2px 0;
}

.edc-banner-desc {
  font-size: 0.86rem;
  color: #64748B;
  margin: 0;
}

.btn-edc-bottom-cta {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.25);
}

.btn-edc-bottom-cta:hover {
  background: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.35);
}

/* 9. Responsive Breakpoints */
@media (max-width: 992px) {
  .edc-hero-grid {
    grid-template-columns: 1fr;
  }
  .edc-hero-media {
    max-height: 320px;
  }
  .edc-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .edc-pillars-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .edc-corp-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .edc-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .edc-courses-grid {
    grid-template-columns: 1fr;
  }
  .edc-pillars-items {
    grid-template-columns: 1fr;
  }
  .edc-steps-grid {
    grid-template-columns: 1fr;
  }
  .edc-steps-grid::before {
    display: none;
  }
  .edc-banner-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-edc-bottom-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   BLOG ECOTET - ESTILOS OFICIALES (.blog-*)
   ========================================================================== */

body.blog-page {
  background-color: #FFFFFF !important;
  color: #071524 !important;
}

body.blog-page main {
  background-color: #FFFFFF;
}

/* 1. Hero Section */
.blog-hero-section {
  position: relative;
  background-color: #071524;
  color: #FFFFFF;
  padding: 130px 0 75px 0;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.blog-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,1) 70%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,1) 70%);
  opacity: 0.9;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D32F2F;
  margin-bottom: 0.8rem;
}

.blog-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: #D32F2F;
  border-radius: 2px;
}

.blog-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.85rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.blog-hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0;
}

/* 2. Floating Search & Filter Bar */
.blog-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 3.5rem;
}

.blog-search-filter-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 8px 14px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.blog-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px;
}

.blog-search-icon {
  width: 18px;
  height: 18px;
  color: #94A3B8;
  flex-shrink: 0;
}

.blog-search-input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.92rem;
  color: #0F172A;
  background: transparent;
  width: 100%;
}

.blog-search-input::placeholder {
  color: #94A3B8;
}

.blog-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-filter-pill {
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #475569;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-pill:hover {
  border-color: #CBD5E1;
  color: #0F172A;
}

.blog-filter-pill.active {
  background: var(--color-primary, #D32F2F);
  border-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
}

/* 3. Featured Section (Bento Grid) */
.blog-featured-section {
  padding: 0 0 55px 0;
}

.blog-bento-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
}

/* Big Featured Card */
.blog-feat-card-big {
  position: relative;
  background-color: #071524;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-feat-card-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
}

.blog-feat-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.blog-feat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.15) 0%, rgba(7, 21, 36, 0.6) 45%, rgba(7, 21, 36, 0.96) 92%);
  z-index: 2;
}

.blog-feat-content {
  position: relative;
  z-index: 3;
  padding: 32px;
}

.blog-tag-red {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #EF4444;
  margin-bottom: 8px;
}

.blog-feat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  line-height: 1.22;
}

.blog-feat-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.blog-card-link-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #EF4444;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.blog-feat-card-big:hover .blog-card-link-red {
  transform: translateX(4px);
}

/* Stacked Right Cards */
.blog-stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-stacked-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-stacked-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(211, 47, 47, 0.3);
}

.blog-stacked-thumb {
  width: 100%;
  height: 130px;
  overflow: hidden;
  background: #071524;
}

.blog-stacked-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-stacked-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.blog-stacked-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.blog-stacked-link {
  color: var(--color-primary, #D32F2F);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.blog-stacked-card:hover .blog-stacked-link {
  transform: translateX(3px);
}

/* 4. Grid Section: Explora nuevas historias */
.blog-grid-section {
  padding: 0 0 60px 0;
}

.blog-grid-header {
  margin-bottom: 2rem;
}

.blog-grid-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #071524;
  margin: 8px 0 0 0;
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2.8rem;
}

.blog-article-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(211, 47, 47, 0.35);
}

.blog-article-thumb {
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #071524;
}

.blog-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-body {
  padding: 16px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.blog-article-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.blog-article-link {
  color: var(--color-primary, #D32F2F);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.blog-article-card:hover .blog-article-link {
  transform: translateX(3px);
}

/* 5. Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4rem;
}

.blog-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.blog-page-btn:hover {
  background: #F1F5F9;
  color: #071524;
}

.blog-page-btn.active {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
}

.blog-page-next {
  color: #071524;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 0 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-page-next:hover {
  color: var(--color-primary, #D32F2F);
  transform: translateX(2px);
}

/* 6. CTA Banner: ¿Quieres conocer nuestra formación? */
.blog-cta-banner {
  background-color: #071524;
  background-image: linear-gradient(90deg, rgba(7, 21, 36, 0.94) 0%, rgba(7, 21, 36, 0.7) 60%, rgba(7, 21, 36, 0.4) 100%), url('../img/banner-conoce-la-formacion-ecotet.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  padding: 36px 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.blog-cta-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.btn-blog-programs {
  background: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.3);
}

.btn-blog-programs:hover {
  background: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45);
}

/* 7. Responsive Breakpoints for Blog */
@media (max-width: 992px) {
  .blog-bento-grid {
    grid-template-columns: 1fr;
  }
  .blog-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-search-filter-card {
    border-radius: 16px;
    padding: 12px;
  }
  .blog-filter-pills {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }
  .blog-articles-grid {
    grid-template-columns: 1fr;
  }
  .blog-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-blog-programs {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CONTÁCTENOS - ESTILOS OFICIALES (.contact-*)
   ========================================================================== */

body.contact-page {
  background-color: #FFFFFF !important;
  color: #071524 !important;
}

body.contact-page main {
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
}

/* 1. Hero Section */
.contact-hero-section {
  position: relative;
  background-color: #FAF9F6;
  padding: 135px 0 65px 0;
  overflow: hidden;
  border-bottom: 1px solid #F1ECE6;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D32F2F;
  margin-bottom: 1rem;
}

.contact-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: #D32F2F;
  border-radius: 2px;
}

.contact-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.85rem;
  font-weight: 900;
  color: #071524;
  line-height: 1.15;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
}

.contact-hero-title .highlight-red {
  color: var(--color-primary, #D32F2F);
}

.contact-hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  max-width: 520px;
  margin: 0;
}

.contact-hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

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

/* 2. Floating Contact Channels Bar */
.contact-channels-bar {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 3.5rem;
}

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

.contact-channel-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(211, 47, 47, 0.35);
}

.channel-info-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.channel-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon-circle svg {
  width: 22px;
  height: 22px;
}

.channel-meta {
  display: flex;
  flex-direction: column;
}

.channel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 2px;
}

.channel-detail {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #071524;
  line-height: 1.25;
}

.btn-channel-action {
  border: 1.5px solid var(--color-primary, #D32F2F);
  color: var(--color-primary, #D32F2F);
  background: transparent;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-channel-action:hover {
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
}

/* 3. Main Form & Sidebar Section */
.contact-main-section {
  padding-bottom: 3.5rem;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Form Box Left */
.contact-form-box {
  background: #FFFFFF;
}

.contact-accent-bar {
  width: 32px;
  height: 3px;
  background-color: #D32F2F;
  border-radius: 2px;
  margin-bottom: 12px;
}

.contact-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.contact-form-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #64748B;
  margin: 0 0 1.8rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #071524;
}

.contact-input,
.contact-select,
.contact-textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #071524;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #94A3B8;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--color-primary, #D32F2F);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.contact-textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-privacy-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.contact-privacy-wrap input[type="checkbox"] {
  accent-color: #D32F2F;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-privacy-wrap label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: #475569;
  cursor: pointer;
}

.contact-privacy-wrap a {
  color: #071524;
  text-decoration: underline;
}

.btn-contact-submit {
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: fit-content;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.25);
  margin-top: 6px;
}

.btn-contact-submit:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.35);
}

/* Sidebar Right Column */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Chat Card Dark */
.contact-chat-card {
  background: #071524;
  border-radius: 16px;
  padding: 32px 28px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(7, 21, 36, 0.12);
}

.chat-card-icon {
  width: 44px;
  height: 44px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.contact-chat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}

.contact-chat-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin: 0 0 24px 0;
}

.btn-chat-whatsapp {
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 12px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.3);
}

.btn-chat-whatsapp:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
}

/* Useful Links Card */
.contact-links-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-links-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 18px 0;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link-item {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #071524;
  transition: all 0.2s ease;
}

.contact-link-item:hover {
  border-color: var(--color-primary, #D32F2F);
  color: var(--color-primary, #D32F2F);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-link-icon {
  width: 20px;
  height: 20px;
  color: #071524;
}

.contact-link-arrow {
  color: #94A3B8;
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-link-item:hover .contact-link-arrow {
  color: var(--color-primary, #D32F2F);
  transform: translateX(3px);
}

/* 4. Visítanos en Bogotá Section */
.contact-visit-section {
  padding-bottom: 3.5rem;
}

.contact-visit-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 1.8rem 0;
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
  align-items: stretch;
}

.visit-info-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.visit-address-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.visit-pin-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-address-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #071524;
  margin-bottom: 2px;
}

.visit-city-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #64748B;
}

.visit-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-visit-map {
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  color: #071524;
  border-radius: 8px;
  padding: 11px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-visit-map:hover {
  border-color: #071524;
  background: #F8FAFC;
  transform: translateY(-2px);
}

.visit-map-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  min-height: 220px;
}

.visit-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visit-map-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #071524;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.visit-map-tag::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D32F2F;
}

/* 5. PQRS-F Banner */
.contact-pqrs-banner {
  background-color: #071524;
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 28px rgba(7, 21, 36, 0.15);
}

.pqrs-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pqrs-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(211, 47, 47, 0.15);
  color: var(--color-primary, #D32F2F);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pqrs-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.pqrs-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

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

.btn-pqrs-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 9px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-pqrs-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* 6. Responsive Breakpoints for Contact */
@media (max-width: 992px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-visit-grid {
    grid-template-columns: 1fr;
  }
  .contact-pqrs-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  .contact-channel-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-channel-action {
    width: 100%;
    justify-content: center;
  }
  .pqrs-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-pqrs-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   POLÍTICA DE PRIVACIDAD - ESTILOS OFICIALES (.privacy-*)
   ========================================================================== */

body.privacy-page,
body.legal-page,
body.datos-personales-page,
body.terminos-page,
body.reglamento-page,
body.cookies-page {
  background-color: #FFFFFF !important;
  color: #071524 !important;
}

body.privacy-page main,
body.legal-page main,
body.datos-personales-page main,
body.terminos-page main,
body.reglamento-page main,
body.cookies-page main {
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
}

/* 1. Header & Breadcrumb */
.privacy-header-section {
  padding: 135px 0 35px 0;
  background-color: #FFFFFF;
}

.privacy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 22px;
}

.privacy-breadcrumb a {
  color: #071524;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-breadcrumb a:hover {
  color: var(--color-primary, #D32F2F);
}

.privacy-accent-bar {
  width: 44px;
  height: 4px;
  background-color: #D32F2F;
  border-radius: 2px;
  margin-bottom: 16px;
}

.privacy-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #071524;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Regulatory Navigation Pill Tabs */
.regulatory-tabs-wrapper {
  margin-top: 24px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.regulatory-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: max-content;
}

.regulatory-tab-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.regulatory-tab-link:hover {
  color: #071524;
  background: #EEF2F6;
  border-color: #CBD5E1;
}

.regulatory-tab-link.active {
  background: #071524;
  color: #FFFFFF;
  border-color: #071524;
  font-weight: 700;
}

.regulatory-tab-link.active::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D32F2F;
}

/* 2. Body Text & Typography */
.privacy-body-section {
  padding-bottom: 60px;
}

.privacy-content-wrapper {
  max-width: 860px;
  margin: 0;
}

.privacy-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEF2F2;
  color: #D32F2F;
  border: 1px solid rgba(211, 47, 47, 0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.privacy-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #071524;
  margin: 2.8rem 0 1.2rem 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section-number {
  color: #D32F2F;
  font-size: 1.25rem;
  font-weight: 800;
}

.privacy-subsection-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin: 2rem 0 0.8rem 0;
}

.privacy-paragraph {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.6rem;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-list-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.privacy-list-icon {
  width: 18px;
  height: 18px;
  color: #D32F2F;
  flex-shrink: 0;
  margin-top: 4px;
}

.privacy-highlight-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #D32F2F;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 2rem 0;
}

.privacy-highlight-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-highlight-box p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Quick Index / Table of Contents */
.privacy-toc-card {
  background: #FAFAFA;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 2.5rem;
}

.privacy-toc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #071524;
  margin: 0 0 14px 0;
}

.privacy-toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .privacy-toc-list {
    grid-template-columns: 1fr;
  }
}

.privacy-toc-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.privacy-toc-link:hover {
  color: #D32F2F;
  transform: translateX(3px);
}

.privacy-toc-num {
  font-weight: 700;
  color: #D32F2F;
}

.privacy-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 2rem;
}

.privacy-meta-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  background-color: #F1F5F9;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.privacy-meta-badge.badge-primary {
  color: #B91C1C;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
}

.privacy-quick-index {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #D32F2F;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 3rem;
}

.privacy-quick-index-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-quick-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px 24px;
}

.privacy-quick-index-list a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.privacy-quick-index-list a:hover {
  color: #D32F2F;
  transform: translateX(3px);
}

.privacy-quick-index-list a span.num {
  font-weight: 800;
  color: #D32F2F;
  font-size: 0.85rem;
}

.privacy-article {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #F1F5F9;
}

.privacy-article:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.privacy-section-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 1.2rem 0;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.privacy-section-h2 span.num {
  color: #D32F2F;
  font-weight: 900;
  font-size: 1.4rem;
}

.privacy-section-h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E293B;
  margin: 1.8rem 0 0.8rem 0;
  line-height: 1.35;
}

.privacy-list {
  list-style: none;
  padding: 0 0 0 4px;
  margin: 0 0 1.8rem 0;
}

.privacy-list li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 24px;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  background-color: #D32F2F;
  border-radius: 50%;
}

.privacy-list li strong {
  color: #0F172A;
}

.privacy-numbered-list {
  padding-left: 20px;
  margin: 0 0 1.8rem 0;
}

.privacy-numbered-list li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 0.8rem;
}

.privacy-numbered-list li strong {
  color: #0F172A;
}

.privacy-highlight-box {
  background: #F8FAFC;
  border-left: 4px solid #071524;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 1.8rem 0 2.2rem 0;
}

.privacy-highlight-box.alert-red {
  background: #FEF2F2;
  border-left-color: #D32F2F;
}

.privacy-highlight-box p {
  margin: 0 0 0.6rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #1E293B;
}

.privacy-highlight-box p:last-child {
  margin-bottom: 0;
}

.privacy-table-container {
  overflow-x: auto;
  margin: 1.8rem 0 2.4rem 0;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  text-align: left;
}

.privacy-table th {
  background: #071524;
  color: #FFFFFF;
  font-weight: 700;
  padding: 14px 18px;
  letter-spacing: 0.02em;
}

.privacy-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #E2E8F0;
  color: #334155;
  vertical-align: top;
  line-height: 1.55;
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

.privacy-table tr:nth-child(even) td {
  background-color: #F8FAFC;
}

.footer-legal-links-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links-list a {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links-list a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* 3. CTA Strip / Question Banner */
.privacy-cta-banner {
  background-color: #071524;
  border-radius: 16px;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(7, 21, 36, 0.15);
  position: relative;
  overflow: hidden;
}

.privacy-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.privacy-cta-icon {
  width: 44px;
  height: 44px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.privacy-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 3px 0;
}

.privacy-cta-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.privacy-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.btn-privacy-contact {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-privacy-contact:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-privacy-pqrs {
  background-color: var(--color-primary, #D32F2F);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.3);
}

.btn-privacy-pqrs:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.45);
}

/* 4. Responsive Breakpoints */
@media (max-width: 992px) {
  .privacy-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 640px) {
  .privacy-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-privacy-contact,
  .btn-privacy-pqrs {
    width: 100%;
    justify-content: center;
  }
  .privacy-title {
    font-size: 2.1rem;
  }
  .privacy-cta-banner {
    padding: 20px;
  }
}

/* ==========================================================================
   NORMATIVIDAD & CONFERENCIAS - ESTILOS BASADOS EN POLÍTICA DE PRIVACIDAD
   ========================================================================== */

body.normatividad-page,
body.conferencias-page {
  background-color: #FFFFFF !important;
  color: #071524 !important;
}

body.normatividad-page main,
body.conferencias-page main {
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
}

/* Section Headings for Regulatory & Conference Documents */
.norm-section-group {
  margin-bottom: 3.5rem;
}

.norm-group-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.norm-group-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 4px;
  background-color: #D32F2F;
  border-radius: 2px;
}

.norm-group-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #64748B;
  margin: 0 0 1.6rem 0;
  line-height: 1.5;
}

/* Document & Regulatory Cards Grid */
.norm-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.norm-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.norm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.25s ease;
}

.norm-card:hover {
  transform: translateY(-3px);
  border-color: #CBD5E1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.norm-card:hover::before {
  background-color: #D32F2F;
}

.norm-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.norm-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFF5F5;
  color: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.norm-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
  background: #F1F5F9;
  color: #475569;
}

.norm-badge.aerocivil {
  background: #FEF2F2;
  color: #DC2626;
}

.norm-badge.internacional {
  background: #EFF6FF;
  color: #2563EB;
}

.norm-badge.drones {
  background: #F0FDF4;
  color: #16A34A;
}

.norm-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #071524;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.norm-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.norm-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #D32F2F;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.norm-link-btn:hover {
  color: #991B1B;
  transform: translateX(4px);
}

/* Conference Cards Grid (Video & Event Panels) */
.conf-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.conf-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.conf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
  border-color: #CBD5E1;
}

.conf-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071524;
  overflow: hidden;
}

.conf-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.conf-card:hover .conf-thumb-img {
  transform: scale(1.03);
  opacity: 0.98;
}

.conf-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.9);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.conf-card:hover .conf-play-badge {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #D32F2F;
}

.conf-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.conf-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D32F2F;
  margin-bottom: 8px;
  display: inline-block;
}

.conf-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #071524;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.conf-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

.conf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  gap: 12px;
  flex-wrap: wrap;
}

.conf-meta-format {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.conf-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #D32F2F;
  text-decoration: none;
  transition: all 0.2s ease;
}

.conf-link-btn:hover {
  color: #991B1B;
  transform: translateX(4px);
}

/* Responsive Breakpoints for Normatividad & Conferencias */
@media (max-width: 900px) {
  .norm-card-grid,
  .conf-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PÁGINA: PRÁCTICA DE NATACIÓN (practica-de-natacion.html)
   Reutiliza hero V2, tarjeta flotante, identity, galería/lightbox de ditching,
   acordeón FAQ y lead-sunset. Aquí solo van las variantes propias.
   ========================================================================== */

/* Palabra clave en rojo en el hero V2 (AGENTS.md); aplica también a programa-tcp.html */
.hero-v2-title .highlight-red {
  color: var(--color-primary);
}

/* Hero: la foto tiene al nadador a la izquierda; máscara más corta para no desvanecerlo */
.natacion-hero .program-hero-v2-img {
  object-position: 55% center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 14%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 14%, black 30%);
}

.natacion-hero .pq-breadcrumb {
  margin-bottom: 1.4rem;
}

/* Tarjeta flotante de 3 columnas */
.floating-meta-card.floating-meta-card--3 {
  grid-template-columns: repeat(3, 1fr);
}

.floating-meta-card--3 .floating-meta-item:nth-child(2) {
  border-right: 1px solid #F1F5F9;
}

/* Intro: encuadre del nadador */
.natacion-intro {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.natacion-intro-card {
  aspect-ratio: 4 / 3.2;
}

.natacion-intro-card .actuar-photo {
  object-position: 38% 60%;
}

.identity-paragraphs a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Habilidades */
.natacion-skills {
  background-color: #FFFFFF;
  padding: 0 0 clamp(3.5rem, 7vw, 5rem);
}

.natacion-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.natacion-skill-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #F6F8FB;
  border: 1px solid #E8EDF3;
  border-radius: 16px;
  padding: 1.5rem;
}

.natacion-skill-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.natacion-skill-icon svg {
  width: 100%;
  height: 100%;
}

.natacion-skill-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0E1726;
  margin-bottom: 0.35rem;
}

.natacion-skill-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4A5568;
}

/* Banda de video */
.natacion-video-band {
  position: relative;
  min-height: clamp(280px, 34vw, 400px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #071524;
}

.natacion-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.natacion-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 36, 0.88) 0%, rgba(7, 21, 36, 0.35) 55%, rgba(7, 21, 36, 0.15) 100%);
}

.natacion-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 2.5rem;
  text-align: center;
  color: #FFFFFF;
}

.natacion-video-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.natacion-video-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

/* Galería en mosaico: alta · 2 apiladas · alta */
.natacion-gallery {
  background-color: #FFFFFF;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}

.natacion-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  grid-template-rows: repeat(2, clamp(150px, 16vw, 220px));
  gap: 1rem;
}

.natacion-gallery-grid .ditching-gallery-card {
  aspect-ratio: auto;
  height: 100%;
}

.natacion-gallery-grid .natacion-gallery-tall {
  grid-row: span 2;
}

.natacion-gallery-grid .natacion-gallery-tall:first-child {
  grid-column: 1;
}

.natacion-gallery-grid .natacion-gallery-tall:last-child {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.natacion-gallery-note {
  margin-top: 0.8rem;
  text-align: right;
  font-size: 0.82rem;
  color: #64748B;
}

/* FAQ en versión clara (natación y home) */
.section-faq-light {
  background-color: #FFFFFF;
  padding: 2rem 0 clamp(4rem, 7vw, 5.5rem);
}

.section-faq-light .faq-accordion-list {
  gap: 0.75rem;
}

.section-faq-light .faq-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.section-faq-light .faq-card.is-open {
  border-color: rgba(227, 27, 35, 0.35);
  background: #FFFFFF;
}

.section-faq-light .faq-trigger {
  color: #0E1726;
}

.section-faq-light .faq-toggle-icon {
  color: var(--color-primary);
}

.section-faq-light .faq-answer {
  color: #4A5568;
}

@media (max-width: 900px) {
  .natacion-skills-grid {
    grid-template-columns: 1fr;
  }

  .natacion-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: clamp(160px, 38vw, 240px);
  }

  .natacion-gallery-grid .natacion-gallery-tall,
  .natacion-gallery-grid .natacion-gallery-tall:first-child,
  .natacion-gallery-grid .natacion-gallery-tall:last-child {
    grid-column: auto;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .floating-meta-card.floating-meta-card--3 {
    grid-template-columns: 1fr;
  }

  .floating-meta-card--3 .floating-meta-item,
  .floating-meta-card--3 .floating-meta-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #F1F5F9;
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .floating-meta-card--3 .floating-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .natacion-hero .program-hero-v2-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 576px) {
  .natacion-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .natacion-gallery-grid .natacion-gallery-tall,
  .natacion-gallery-grid .natacion-gallery-tall:first-child,
  .natacion-gallery-grid .natacion-gallery-tall:last-child {
    grid-row: auto;
  }
}

.section-faq-light .faq-answer a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   HOME: SECCIONES DE CONTENIDO SEO (escuela, sedes, FAQ)
   ========================================================================== */
.home-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.6px;
  color: #0E1726;
  margin: 0.6rem 0 1.2rem;
}


.home-section-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #5B6B7C;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.home-text-link:hover {
  gap: 0.65rem;
  color: var(--color-primary);
}

/* Escuela de aviación en Bogotá */
.home-school {
  background-color: #FFFFFF;
  color: #0E1726;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.home-school-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.home-school-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 1.5rem;
}

.home-school-paragraphs strong {
  color: #0E1726;
}

.home-check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.home-check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
  color: #1E293B;
}

.home-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 62% no-repeat;
}

.home-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.8rem;
}

.home-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.home-credential-card {
  background: #F6F8FB;
  border: 1px solid #E8EDF3;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.home-credential-card--accent {
  background: #071524;
  border-color: #071524;
}

.home-credential-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: #0E1726;
}

.home-credential-card--accent .home-credential-value {
  color: #FFFFFF;
}

.home-credential-label {
  font-size: 0.92rem;
  line-height: 1.4;
  color: #5B6B7C;
}

.home-credential-card--accent .home-credential-label {
  color: rgba(255, 255, 255, 0.78);
}

/* Sedes */
.home-campuses {
  background-color: #FFFFFF;
  padding: clamp(4rem, 7vw, 5.5rem) 0 1rem;
}

.home-campuses-header {
  margin-bottom: 2rem;
}

.home-campuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.home-campus-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #F6F8FB;
  border: 1px solid #E8EDF3;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
}

.home-campus-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.home-campus-icon svg {
  width: 22px;
  height: 22px;
}

.home-campus-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.25rem;
}

.home-campus-address {
  color: #4A5568;
  margin-bottom: 0.6rem;
}

/* FAQ de la home */
.home-faq {
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
}

.home-faq-more {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .home-school-grid,
  .home-campuses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-credentials {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .home-credential-card {
    padding: 1.2rem 1rem;
  }
}

/* ==========================================================================
   QUIÉNES SOMOS: DIAGRAMACIÓN (clases qs-, solo afectan quienes-somos.html)
   ========================================================================== */

/* Historia */
.qs-identity {
  background-color: #FAF8F5;
}

.qs-identity .identity-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.qs-identity .identity-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qs-identity .identity-main-title {
  font-size: clamp(2.4rem, 3.9vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -1px;
  text-wrap: balance;
}

.qs-identity .identity-paragraphs {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.6;
  color: #334155;
  max-width: 58ch;
  gap: 1.3rem;
  margin-bottom: 0;
}

.qs-identity .identity-photo-card {
  /* La foto acompaña la altura del texto sin ensanchar su columna */
  aspect-ratio: auto;
  height: 100%;
  min-height: 460px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 21, 36, 0.12);
}

/* Pilares a lo ancho: ícono a la izquierda, divisores verticales */
.qs-pillars-row {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  gap: 0;
}

.qs-pillars-row .identity-pillar-item {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.25rem clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid #E2E8F0;
}

.qs-pillars-row .identity-pillar-item:first-child {
  border-left: none;
  padding-left: 0;
}

.qs-pillars-row .pillar-icon-box {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
}

.qs-pillars-row .pillar-icon-box svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.6;
}

.qs-pillars-row .pillar-item-title {
  font-size: 1.15rem;
}

.qs-pillars-row .pillar-item-desc {
  font-size: 0.92rem;
  max-width: 26ch;
  color: #4A5568;
}

/* Misión y horizonte: sin caja, ala del avión a la derecha */
.qs-mission .mission-bg-img {
  object-position: right center;
}

.qs-mission .mission-bg-overlay {
  background: linear-gradient(90deg, rgba(7, 21, 36, 0.97) 0%, rgba(7, 21, 36, 0.88) 45%, rgba(7, 21, 36, 0.3) 100%);
}

.qs-mission .eyebrow-text-red {
  color: #FFFFFF;
  letter-spacing: 0.18em;
}

.qs-mission .mission-cards-split {
  background: none;
  border: none;
  border-radius: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0;
  margin-top: 2.5rem;
  max-width: 940px;
  align-items: start;
}

.qs-mission .mission-split-divider {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.22);
}

.qs-mission .mission-icon-circle {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0.2rem;
}

.qs-mission .mission-icon-circle svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.7;
}

.qs-mission .mission-box-title {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 800;
}

.qs-mission .mission-box-desc {
  font-size: 1.08rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.85);
}

/* Valores: columnas con divisores, sin tarjetas */
.qs-values .values-grid {
  gap: 0;
}

.qs-values .value-card {
  background: none;
  border: none;
  border-left: 1px solid #E2E8F0;
  border-radius: 0;
  box-shadow: none;
  padding: 0.25rem clamp(1rem, 2.2vw, 1.8rem);
}

.qs-values .value-card:first-child {
  border-left: none;
  padding-left: 0;
}

.qs-values .value-card:hover {
  transform: none;
  box-shadow: none;
}

.qs-values .value-icon-wrap {
  width: 48px;
  height: 48px;
  background: none;
  border-radius: 0;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.qs-values .value-icon-wrap svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.6;
}

.qs-values .value-card-desc {
  max-width: 24ch;
  color: #4A5568;
}

/* Experiencias: texto sobre la foto */
.qs-learning .learning-cards-grid {
  gap: 1.25rem;
}

.qs-learning .learning-photo-card {
  position: relative;
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7, 21, 36, 0.12);
}

.qs-learning .learning-card-media {
  aspect-ratio: 4 / 4.4;
}

.qs-learning .learning-card-overlay {
  background: linear-gradient(180deg, rgba(7, 21, 36, 0) 45%, rgba(7, 21, 36, 0.88) 100%);
}

.qs-learning .learning-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.5rem 1.6rem;
}

.qs-learning .learning-card-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 800;
}

.qs-learning .learning-card-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.97rem;
}

/* Compromiso: banda a todo el ancho con la foto a la derecha */
.qs-commitment {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.qs-commitment .commitment-card-wrapper {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 32vw, 460px);
}

.qs-commitment .commitment-text-col {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.qs-commitment .commitment-media-col {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  min-height: 0;
}

.qs-commitment .commitment-window-img {
  object-position: 60% 62%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 14%, black 34%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 14%, black 34%);
}


/* Marco legal y certificación */
.qs-legal {
  background-color: #FFFFFF;
  color: #0E1726;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.qs-legal-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.qs-legal .identity-main-title {
  text-wrap: balance;
}

.qs-legal-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.qs-legal-list {
  list-style: none;
  counter-reset: legal;
  display: grid;
  gap: 0;
  margin-bottom: 1.8rem;
  border-top: 1px solid #E2E8F0;
}

.qs-legal-list li {
  counter-increment: legal;
  position: relative;
  padding: 0.9rem 0 0.9rem 2.8rem;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #1E293B;
}

.qs-legal-list li::before {
  content: counter(legal, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
}

.qs-legal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.qs-legal-link:hover {
  gap: 0.65rem;
}

.qs-legal-docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.qs-legal-doc {
  margin: 0;
}

.qs-legal-doc-frame {
  display: block;
  background: #F6F8FB;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qs-legal-doc-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 21, 36, 0.1);
}

.qs-legal-doc-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
}

.qs-legal-doc figcaption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4A5568;
}

.qs-legal-doc figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: #0E1726;
  margin-bottom: 0.15rem;
}

@media (max-width: 992px) {
  .qs-legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .qs-identity .identity-grid {
    grid-template-columns: 1fr;
  }

  .qs-identity .identity-photo-card {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .qs-commitment .commitment-card-wrapper {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .qs-commitment .commitment-media-col {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .qs-commitment .commitment-window-img {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 14px;
  }

  .qs-commitment {
    padding-bottom: 3rem;
  }

  .qs-commitment .commitment-text-col {
    padding-bottom: 2rem;
  }

  .qs-values .values-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.2rem;
  }

  .qs-values .value-card:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .qs-pillars-row {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }

  .qs-pillars-row .identity-pillar-item {
    border-left: none;
    padding: 0;
  }

  .qs-mission .mission-cards-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .qs-mission .mission-split-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .qs-learning .learning-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .qs-values .values-grid {
    grid-template-columns: 1fr;
  }

  .qs-values .value-card,
  .qs-values .value-card:nth-child(3) {
    border-left: none;
    padding: 0;
  }
}

/* ==========================================================================
   POR QUÉ ESTUDIAR: VENTAJAS DE SER TCP (lista numerada sobre fondo oscuro)
   ========================================================================== */
.pq-ventajas-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  z-index: 2;
}

.pq-ventaja-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pq-ventaja-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  min-width: 2rem;
  padding-top: 0.1rem;
}

.pq-ventaja-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.pq-ventaja-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #CBD5E1;
}

@media (max-width: 768px) {
  .pq-ventajas-list {
    grid-template-columns: 1fr;
  }
}

/* Con la lista de ventajas en dos columnas, el fondo se oscurece para que la columna derecha se lea bien */
.pq-vocacion-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.35) 0%, rgba(7, 21, 36, 0.78) 38%, rgba(7, 21, 36, 0.86) 100%);
}

/* ==========================================================================
   EXPERIENCIA EN VUELO: MOMENTOS CON DETALLE (tarjetas verticales)
   ========================================================================== */
.ev-momentos-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin-top: 0.6rem;
  max-width: 60ch;
}

.ev-momentos-grid--detail {
  align-items: stretch;
}

.ev-momentos-grid--detail .ev-momento-card {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.ev-momentos-grid--detail .ev-momento-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.ev-momentos-grid--detail .ev-momento-info {
  padding: 1.4rem 1.5rem 1.6rem;
}

.ev-momentos-grid--detail .ev-momento-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0.75rem;
}

.ev-momentos-grid--detail .ev-momento-desc:last-child {
  margin-bottom: 0;
}

.ev-momento-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}

.ev-momento-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #475569;
}

.ev-momento-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.ev-momento-list strong {
  color: #0E1726;
}

/* ==========================================================================
   DITCHING: SIMULADOR DE LA ARMADA NACIONAL
   ========================================================================== */
.dt-simulator {
  background-color: #FAF8F5;
  color: #0E1726;
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.dt-simulator-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.dt-simulator-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
}

.dt-simulator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dt-simulator-item {
  padding: 0.25rem clamp(1.2rem, 2.8vw, 2.4rem);
  border-left: 1px solid #E2E8F0;
}

.dt-simulator-item:first-child {
  border-left: none;
  padding-left: 0;
}

.dt-simulator-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.dt-simulator-icon svg {
  width: 100%;
  height: 100%;
}

.dt-simulator-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.5rem;
}

.dt-simulator-desc {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #4A5568;
  max-width: 34ch;
}

.dt-simulator-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  max-width: 70ch;
}

@media (max-width: 768px) {
  .dt-simulator-grid {
    grid-template-columns: 1fr;
    row-gap: 1.8rem;
  }

  .dt-simulator-item {
    border-left: none;
    padding: 0;
  }
}

/* Natación: bloque del certificado de la Cruz Roja */
.natacion-cert {
  background-color: #FFFFFF;
  padding: 0 0 clamp(3.5rem, 6vw, 4.5rem);
}

.natacion-cert-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background-color: #071524;
  color: #FFFFFF;
  border-radius: 20px;
  padding: clamp(2rem, 4.5vw, 3.5rem);
}

.natacion-cert .eyebrow-text-red {
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

.natacion-cert-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0.6rem 0 1rem;
  text-wrap: balance;
}

.natacion-cert-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
}

.natacion-cert-facts {
  list-style: none;
  display: grid;
  gap: 0;
}

.natacion-cert-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.natacion-cert-facts li:first-child {
  padding-top: 0;
}

.natacion-cert-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.natacion-cert-facts strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
}

.natacion-cert-facts span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .natacion-cert-card {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INSCRIPCIÓN PASO A PASO: REDISEÑO (hero claro, línea de tiempo, paneles)
   ========================================================================== */
.adm-hero {
  background-color: #FAF8F5;
  color: #0E1726;
}

.adm-hero-bg {
  width: 56%;
}

.adm-hero-img {
  object-position: center 35%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 14%, black 34%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 14%, black 34%);
}

.adm-hero .pq-breadcrumb {
  color: #64748B;
}

.adm-hero .pq-breadcrumb a {
  color: #334155;
}

.adm-hero .pq-breadcrumb a:hover {
  color: var(--color-primary);
}

.adm-hero .pq-hero-title {
  color: #0E1726;
}

/* "primer paso." va en la misma línea que "con el", como en la referencia */
.adm-hero .pq-hero-title .text-red {
  display: inline;
}

.adm-hero .pq-hero-subtitle {
  color: #334155;
}

.adm-hero .btn-hero-secondary {
  background-color: transparent;
  border-color: #0E1726;
  color: #0E1726;
}

.adm-hero .btn-hero-secondary:hover {
  background-color: #0E1726;
  color: #FFFFFF;
}

.adm-system-note {
  color: #64748B;
}

.adm-system-note a {
  color: #0E1726;
  font-weight: 600;
}

/* Línea de tiempo vertical que une los pasos */
.adm-steps-list {
  position: relative;
  padding-left: 60px;
}

.adm-steps-list::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 3rem;
  bottom: 3rem;
  border-left: 2px dashed rgba(227, 27, 35, 0.35);
}

.adm-step-card {
  position: relative;
  grid-template-columns: auto 1fr 190px;
}

.adm-card-num-badge {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  box-shadow: 0 0 0 6px #FFFFFF;
}

.adm-card-icon-wrap svg {
  width: 32px;
  height: 32px;
}

/* Panel ilustrado con ícono (reemplaza las miniaturas) */
.adm-step-visual {
  width: 190px;
  height: 128px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF3F3 0%, #F6F8FB 100%);
  border: 1px solid #F1E4E4;
  display: grid;
  place-items: center;
  color: var(--color-primary);
}

.adm-step-visual svg {
  width: 56px;
  height: 56px;
}

.adm-widget-help-img {
  height: 170px;
  object-position: center 30%;
}

@media (max-width: 992px) {
  .adm-hero-bg {
    width: 100%;
    opacity: 0.18;
  }
}

@media (max-width: 640px) {
  .adm-steps-list {
    padding-left: 0;
  }

  .adm-steps-list::before {
    display: none;
  }

  .adm-card-num-badge {
    position: static;
    transform: none;
    box-shadow: none;
  }

  .adm-step-visual {
    display: none;
  }

  .adm-step-card {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.4rem 1.2rem;
  }

  .adm-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .adm-step-card {
    grid-template-columns: auto 1fr;
  }

  .adm-step-visual {
    display: none;
  }
}

/* ==========================================================================
   DITCHING: SIGNIFICADO, PROCEDIMIENTO Y FAQ (contenido SEO)
   ========================================================================== */
.dt-glossary {
  background-color: #FFFFFF;
  color: #0E1726;
  padding: 0 0 clamp(4rem, 7vw, 5.5rem);
}

.dt-glossary-header {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.dt-glossary-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #334155;
}

.dt-glossary-lead strong {
  color: #0E1726;
}

.dt-glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0;
}

.dt-glossary-item {
  background: #F6F8FB;
  border: 1px solid #E8EDF3;
  border-top: 3px solid var(--color-primary);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
}

.dt-glossary-item dt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.5rem;
}

.dt-glossary-item dd {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #4A5568;
}

.dt-glossary-case {
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--color-primary);
  background: #FAF8F5;
  border-radius: 0 12px 12px 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #334155;
  max-width: 900px;
}

.dt-glossary-case strong {
  color: #0E1726;
}

.dt-procedure {
  background-color: #FAF8F5;
  color: #0E1726;
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.dt-procedure-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: none;
}

.dt-procedure-item {
  padding: 0.25rem clamp(0.9rem, 1.8vw, 1.5rem);
  border-left: 1px solid #E2E8F0;
}

.dt-procedure-item:first-child {
  border-left: none;
  padding-left: 0;
}

.dt-procedure-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.dt-procedure-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 0.45rem;
}

.dt-procedure-desc {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #4A5568;
}

.dt-faq {
  padding-top: clamp(4rem, 7vw, 5.5rem);
}

.dt-faq-links {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #334155;
}

.dt-faq-links a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .dt-procedure-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }

  .dt-procedure-item:nth-child(4) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .dt-glossary-grid,
  .dt-procedure-list {
    grid-template-columns: 1fr;
  }

  .dt-procedure-item,
  .dt-procedure-item:nth-child(4) {
    border-left: none;
    padding-left: 0;
  }
}

/* ==========================================================================
   PLANTILLA DE ARTÍCULO DEL BLOG (body.article-single)
   ========================================================================== */
.article-page {
  background-color: #FAF8F5;
  color: #0E1726;
}

.article-header {
  padding: clamp(2rem, 4vw, 3rem) 0 1.8rem;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 1.2rem;
}

.article-breadcrumb a {
  color: #334155;
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: var(--color-primary);
}

.article-cat-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.9rem;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #0E1726;
  max-width: 22ch;
  text-wrap: balance;
  margin-bottom: 0.8rem;
}

.article-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: #334155;
  max-width: 60ch;
  margin-bottom: 1.4rem;
}

.article-meta-row,
.article-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #334155;
}

.article-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8EDF3;
  color: #334155;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.article-author-avatar svg {
  width: 18px;
  height: 18px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #334155;
}

.article-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  transition: transform 0.2s ease;
}

.article-share-btn:hover {
  transform: translateY(-2px);
}

.article-share-btn svg {
  width: 19px;
  height: 19px;
}

.article-share-btn--wa { background: #1DA851; }
.article-share-btn--in { background: #0A66C2; }
.article-share-btn--fb { background: #1877F2; }

.article-hero {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #E2E8F0;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2rem;
}

/* Tipografía del contenido */
.article-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #334155;
  max-width: 72ch;
}

.article-body > * + * {
  margin-top: 1.1rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0E1726;
  margin-top: 2.4rem;
  scroll-margin-top: 110px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0E1726;
  margin-top: 1.8rem;
}

.article-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E1726;
  margin-top: 1.4rem;
}

.article-body strong {
  color: #0E1726;
}

.article-body a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
}

.article-body li + li {
  margin-top: 0.45rem;
}

.article-body ul li::marker {
  color: var(--color-primary);
}

.article-body ol li::marker {
  color: var(--color-primary);
  font-weight: 800;
}

.article-body figure {
  margin: 1.8rem 0;
}

.article-body img {
  display: block;
  max-width: 100%;
  max-height: 520px;
  width: auto;
  border-radius: 12px;
  margin: 0 auto;
}

.article-body figcaption {
  font-size: 0.85rem;
  color: #64748B;
  text-align: center;
  margin-top: 0.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--color-primary);
  background: #F1F5F9;
  padding: 1rem 1.4rem;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #0E1726;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.article-body th,
.article-body td {
  border: 1px solid #E2E8F0;
  padding: 0.6rem 0.8rem;
  text-align: left;
}

.article-body th {
  background: #F1F5F9;
  color: #0E1726;
}

/* Barra lateral */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.article-toc {
  background: #FFFFFF;
  border: 1px solid #E8EDF3;
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
}

.article-toc-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0E1726;
  padding-bottom: 0.7rem;
  margin-bottom: 0.4rem;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

.article-toc ul {
  list-style: none;
}

.article-toc li a {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #EEF2F6;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #334155;
  text-decoration: none;
}

.article-toc li:last-child a {
  border-bottom: none;
}

.article-toc li a:hover {
  color: var(--color-primary);
}

.article-cta-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #071524;
  color: #FFFFFF;
}

.article-cta-bg {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.article-cta-content {
  padding: 1.3rem 1.2rem 1.5rem;
}

.article-cta-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.article-cta-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.1rem;
}

.article-cta-content .btn-hero-primary {
  width: 100%;
  justify-content: center;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #0E1726;
  text-decoration: none;
  padding: 0.9rem 1.1rem;
  background: #FFFFFF;
  border: 1px solid #E8EDF3;
  border-radius: 12px;
}

.article-back-link span {
  color: var(--color-primary);
}

/* Etiquetas y relacionados */
.article-footer-row {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid #E2E8F0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-tag {
  background: #EEF2F6;
  color: #334155;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
}

.article-related {
  background: #FFFFFF;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.article-related-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #0E1726;
  margin: 0.5rem 0 1.6rem;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.article-related-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E8EDF3;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 21, 36, 0.1);
}

.article-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.article-related-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.article-related-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.article-related-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0E1726;
  flex-grow: 1;
}

.article-related-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-primary-dark);
}

@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-share > span {
    display: none;
  }
}

/* ==========================================================================
   PROGRAMA TCP: MODALIDADES Y CERTIFICACIÓN RAC 141
   ========================================================================== */
.tcp-modalities {
  background-color: #FFFFFF;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  scroll-margin-top: 90px;
}

.tcp-modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.tcp-modality-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.tcp-modality-card::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-primary);
  margin-bottom: 0.4rem;
}

.tcp-modality-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.tcp-modality-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0E1726;
}

.tcp-modality-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4A5568;
  flex-grow: 1;
}

.tcp-modality-link {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0.3rem 0;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  cursor: pointer;
}

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

.tcp-rac {
  background-color: #FFFFFF;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.tcp-rac-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background: #071524;
  color: #FFFFFF;
  border-radius: 20px;
  padding: clamp(2rem, 4.5vw, 3.5rem);
}

.tcp-rac .eyebrow-text-red {
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

.tcp-rac-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
}

.tcp-rac-text p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
  margin-bottom: 0.8rem;
}

.tcp-rac-text strong {
  color: #FFFFFF;
}

.tcp-rac-link {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tcp-rac-facts {
  list-style: none;
}

.tcp-rac-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tcp-rac-facts li:first-child {
  padding-top: 0;
}

.tcp-rac-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tcp-rac-facts strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.tcp-rac-facts span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .tcp-modalities-grid,
  .tcp-rac-card {
    grid-template-columns: 1fr;
  }
}

/* Respuesta directa al inicio de los artículos ("En resumen") */
.article-answer {
  background: #FFFFFF;
  border: 1px solid #E8EDF3;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.8rem;
}

.article-answer-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
}

.article-body .article-answer p + p {
  margin-top: 0;
}

/* Programa TCP: guías relacionadas */
.tcp-guides {
  background-color: #FAF8F5;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.tcp-guides-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: #0E1726;
  margin-bottom: 1.2rem;
}

.tcp-guides-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.tcp-guides-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  background: #FFFFFF;
  border: 1px solid #E8EDF3;
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  color: #0E1726;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tcp-guides-list a::after {
  content: "→";
  color: var(--color-primary);
}

.tcp-guides-list a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .tcp-guides-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOME: imagen del hero mientras carga el video, menú móvil y zoom en móvil
   ========================================================================== */
.hero-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-video.is-playing {
  opacity: 1;
}

/* El header de la home es oscuro: la hamburguesa va en blanco (las internas usan header blanco) */
.site-header:not(.internal-header) .mobile-toggle-btn .hamburger-line {
  background-color: #FFFFFF;
}

/* Menos recorrido de zoom en tablet y móvil, y la sección siguiente cubre el portal crema */
@media (max-width: 992px) {
  .hero-scroll-container {
    height: 160vh;
  }

  .section-tcp-showcase {
    margin-top: -100vh;
  }
}

/* ==========================================================================
   Home · Hero móvil: titular "Tu futuro despega aquí" + texto SEO sobre degradado
   ========================================================================== */
@media (max-width: 767px) {
  .hero-flanking-content {
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    padding: clamp(5.75rem, 13vh, 7rem) 1.5rem calc(clamp(24px, 4.5vh, 44px) + 9.5rem);
  }
  /* Degradado para que el texto se lea sobre la ventana: oscuro arriba y abajo, cielo libre al centro */
  .hero-flanking-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(5, 10, 20, .78) 0%, rgba(5, 10, 20, .35) 24%, rgba(5, 10, 20, 0) 40%),
      linear-gradient(0deg, rgba(5, 10, 20, .94) 0%, rgba(5, 10, 20, .72) 30%, rgba(5, 10, 20, 0) 58%);
  }
  /* Las dos columnas se funden en un solo flujo para reordenar el titular */
  .hero-col-left { display: contents; }
  .hero-col-right { max-width: none; margin: 0; align-items: flex-start; text-align: left; order: 2; }
  .hero-col-left > .hero-split-title { order: 1; }
  .hero-split-divider { order: 3; }
  .hero-split-lead { order: 4; }
  .hero-split-sub { order: 5; }

  .hero-split-title {
    text-align: left;
    margin: 0;
    color: #FFFFFF;
  }
  .hero-col-left > .hero-split-title {
    font-size: clamp(1.7rem, 7.6vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -.5px;
    line-height: 1;
    color: rgba(255, 255, 255, .88);
    display: flex;
    align-items: center;
    gap: .7rem;
  }
  .hero-col-left > .hero-split-title::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-primary);
    box-shadow: 0 0 14px var(--color-primary-glow);
  }
  .hero-col-right .hero-split-title {
    font-size: clamp(3.6rem, 19vw, 5.4rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -3px;
    margin-top: .35rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .55);
  }
  .hero-split-accent {
    color: #FF4336;
    text-shadow: 0 6px 28px rgba(0, 0, 0, .5);
  }

  /* Bloque inferior: identidad SEO sobre el degradado, encima del botón */
  .hero-split-divider {
    margin: auto 0 .9rem;
    width: 44px;
  }
  .hero-split-lead {
    font-size: clamp(1.05rem, 4.6vw, 1.2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.2px;
    color: #FFFFFF;
    max-width: 22em;
    text-align: left;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
  }
  .hero-split-sub {
    margin-top: .55rem;
    font-size: clamp(.86rem, 3.7vw, .95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
    max-width: 24em;
    text-align: left;
  }

  /* Entrada escalonada */
  .hero-col-left > .hero-split-title,
  .hero-col-right .hero-split-title,
  .hero-split-divider,
  .hero-split-lead,
  .hero-split-sub {
    animation: heroRiseIn .9s cubic-bezier(.2, .8, .2, 1) both;
  }
  .hero-col-right .hero-split-title { animation-delay: .12s; }
  .hero-split-divider { animation-delay: .3s; }
  .hero-split-lead { animation-delay: .38s; }
  .hero-split-sub { animation-delay: .46s; }
}

@media (max-width: 767px) and (max-height: 700px) {
  .hero-flanking-content { padding-top: 5.25rem; padding-bottom: calc(clamp(24px, 4.5vh, 44px) + 8.5rem); }
  .hero-col-right .hero-split-title { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero-split-sub { display: none; }
}

@keyframes heroRiseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-col-left > .hero-split-title,
  .hero-col-right .hero-split-title,
  .hero-split-divider,
  .hero-split-lead,
  .hero-split-sub { animation: none; }
}

/* Quiénes somos: foto de la sede, encuadre en el grupo de estudiantes */
.about-hero-img--sede { object-position: 60% 72%; }

/* Quiénes somos: doble naturaleza institucional (IES + Centro de Entrenamiento Aeronáutico) */
.qs-status {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.qs-status-item {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.3rem 1.3rem;
  background: #FFFFFF;
  border: 1px solid rgba(14, 23, 38, .08);
  border-top: 3px solid #D32F2F;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(14, 23, 38, .06);
}
.qs-status-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D32F2F;
}
.qs-status-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  color: #0E1726;
}
.qs-status-desc {
  font-size: .88rem;
  line-height: 1.5;
  color: #4A5565;
}

/* Por qué estudiar: encuadre de las fotos reales en las tarjetas de experiencias */
.pq-exp-card-bg--vuelo { object-position: center 52%; }
.pq-exp-card-bg--ditching { object-position: center 62%; }
.pq-crecimiento-img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 62%; }
.gal-hero-img--sede { object-position: 70% 72%; }

/* Galería de imágenes: filtros, "Ver más" y huecos de las fotos anchas */
.gal-grid-wrapper { grid-auto-flow: dense; }
.gal-item.is-filtered-out,
.gal-item.is-paged-out { display: none; }
.gal-item:focus-visible { outline: 3px solid #D32F2F; outline-offset: 3px; }
.btn-load-more-gal[hidden] { display: none; }
.about-hero-img--ditching { object-position: center 38%; }
.experience-card-img--ditching { object-position: center 35%; }

/* Menú móvil: el panel se desplaza cuando los submenús no caben en la pantalla */
@media (max-width: 992px) {
  .nav-menu {
    justify-content: flex-start;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu > li { flex-shrink: 0; }
  .internal-nav {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .internal-nav-list { padding-bottom: 2rem; }
}
/* Botón cerrar del menú móvil: fondo propio para no confundirse con los enlaces al desplazar */
@media (max-width: 992px) {
  .mobile-toggle-btn.is-active {
    background: rgba(18, 14, 12, 0.92);
    border-radius: 50%;
  }
}

/* Inicio · encabezado de escritorio: el menú no se parte en dos líneas en pantallas medianas */
@media (min-width: 993px) {
  .nav-menu .nav-link,
  .header-contact-link { white-space: nowrap; }
}
@media (min-width: 993px) and (max-width: 1500px) {
  .nav-menu { gap: clamp(1rem, 1.6vw, 1.8rem); }
  /* El correo se deja para el pie de página; el teléfono sigue visible */
  .header-contact-divider,
  .header-contact-right .header-contact-link[href^="mailto:"] { display: none; }
}
@media (min-width: 993px) and (max-width: 1180px) {
  .header-contact-right .header-contact-link[href^="tel:"] { display: none; }
}

/* Ditching: video de YouTube destacado bajo la portada (se carga al dar play) */
.section-ditching-video--featured { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.ditching-video-head { max-width: 760px; margin: 0 auto 2.25rem; text-align: center; }
.ditching-video-head .section-eyebrow { justify-content: center; }
.ditching-video-head .identity-main-title { margin-bottom: .8rem; }
.ditching-video-head .video-subtext { margin: 0 auto; max-width: 62ch; }
.yt-facade {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #071524;
  box-shadow: 0 24px 60px rgba(7, 21, 36, .22);
}
.yt-facade-img,
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade-img { object-fit: cover; }
.yt-facade-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  border: 0;
  cursor: pointer;
  color: #FFFFFF;
  background: linear-gradient(180deg, rgba(7, 21, 36, .1) 0%, rgba(7, 21, 36, .45) 100%);
  transition: background .3s ease;
}
.yt-facade-play:hover { background: linear-gradient(180deg, rgba(7, 21, 36, .2) 0%, rgba(7, 21, 36, .6) 100%); }
.yt-facade-play:focus-visible { outline: 3px solid #FFFFFF; outline-offset: -6px; }
.yt-facade-icon {
  width: clamp(64px, 9vw, 92px);
  height: clamp(64px, 9vw, 92px);
  border-radius: 50%;
  background: #D32F2F;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(211, 47, 47, .5);
  transition: transform .3s ease;
}
.yt-facade-icon svg { width: 42%; height: 42%; margin-left: 6%; }
.yt-facade-play:hover .yt-facade-icon { transform: scale(1.07); }
.yt-facade-label {
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: rgba(7, 21, 36, .6);
}

/* Inscripción: video guía del proceso de admisión */
.adm-video-section { padding: clamp(3.5rem, 6vw, 5rem) 0; background: #FFFFFF; }
.adm-video-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.adm-video-text .identity-main-title { margin-bottom: .9rem; }
.adm-video-desc { color: #4A5565; font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.2rem; }
.adm-video-points { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .6rem; }
.adm-video-points li { position: relative; padding-left: 1.8rem; color: #0E1726; font-weight: 600; }
.adm-video-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #D32F2F url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 62% no-repeat;
}
.adm-video-link { font-weight: 700; color: #D32F2F; text-decoration: none; border-bottom: 2px solid rgba(211, 47, 47, .25); padding-bottom: 2px; }
.adm-video-link:hover { border-bottom-color: #D32F2F; }
.adm-video-player { max-width: none; margin: 0; }
@media (max-width: 900px) {
  .adm-video-grid { grid-template-columns: 1fr; }
  .adm-video-player { order: -1; }
}

/* Programa TCP: respaldo de cada modalidad (RAC 141 o Institución de Educación Superior) */
.tcp-modality-badge {
  align-self: flex-start;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: .45rem .9rem;
  border-radius: 9999px;
}
.tcp-modality-badge--rac { background: #D32F2F; color: #FFFFFF; }
.tcp-modality-badge--ies { background: #0E1726; color: #FFFFFF; }
.tcp-modality-note {
  font-size: .88rem;
  line-height: 1.5;
  color: #334155;
  padding: .75rem .9rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  margin: 0 0 .3rem;
}

/* Programa TCP: sello IES en el Nivel 1 del plan de estudios */
.level-column-header { flex-wrap: wrap; }
.level-ies-badge {
  flex-basis: 100%;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  max-width: 100%;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, .9);
  background: rgba(211, 47, 47, .14);
  border: 1px solid rgba(211, 47, 47, .5);
  padding: .4rem .85rem .4rem .4rem;
  border-radius: 9999px;
}
.level-ies-badge strong {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #FFFFFF;
  background: #D32F2F;
  padding: .3rem .6rem;
  border-radius: 9999px;
}

/* Programa TCP: plan de estudios real (brochure) */
.curriculum-levels-grid--plan { align-items: stretch; }
.level-plan-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.level-plan-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: .95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .88);
}
.level-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D32F2F;
}
.level-plan-sub {
  margin: 0 0 .7rem;
  font-size: .82rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: .01em;
}
.level-plan-list + .level-plan-sub { margin-top: 1.3rem; }
.level-plan-note {
  margin: 1.3rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}
.level-ies-badge--rac strong { background: #FFFFFF; color: #0E1726; }
.level-ies-badge--rac { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .3); }
.curriculum-hours-note {
  margin: 1.8rem auto 0;
  max-width: 820px;
  text-align: center;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
}
.curriculum-hours-note strong { color: #FFFFFF; }
a.btn-curriculum-outline { text-decoration: none; }

/* Programa TCP: perfil profesional y ocupacional */
.tcp-perfiles { padding: clamp(3.5rem, 6vw, 5rem) 0; background: #FAF8F5; }
.tcp-perfiles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.tcp-perfil-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.8rem 1.7rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.tcp-perfil-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: #0E1726; margin: 0 0 .7rem; }
.tcp-perfil-card p { margin: 0; color: #4A5568; line-height: 1.65; }
@media (max-width: 768px) { .tcp-perfiles-grid { grid-template-columns: 1fr; } }
.curriculum-hours-note { margin-bottom: 1.6rem; }
.curriculum-guide-link { color: #FFFFFF; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; display: inline-block; margin-bottom: .4rem; }

/* Programa TCP: aclaración auxiliar de vuelo = tripulante de cabina */
.tcp-av-note { background: #FFFFFF; padding: 0 0 clamp(2.5rem, 5vw, 3.5rem); }
.tcp-av-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
}
.tcp-av-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; line-height: 1.2; color: #0E1726; margin: 0; }
.tcp-av-text p { margin: 0 0 1rem; color: #4A5568; line-height: 1.65; }
@media (max-width: 860px) { .tcp-av-card { grid-template-columns: 1fr; } }
.tcp-av-card .tcp-rac-link { color: #C62828; font-weight: 700; text-decoration: none; padding-bottom: .3rem; border-bottom: 2px solid rgba(198, 40, 40, .25); }
.tcp-av-card .tcp-rac-link:hover { border-bottom-color: #C62828; }
