/* ============================================================
   MENTORSHIP ARGENIS & CAROLINA — Premium CSS Design System
   Dominican Republic Inspired · Elegant · Cultural · Modern
   ============================================================ */

/* --- VARIABLES --- */
:root {
  /* Brand Colors */
  --red:         #C8102E;
  --red-dark:    #9e0c23;
  --red-light:   #e8153a;
  --red-soft:    rgba(200, 16, 46, 0.08);
  --blue:        #002D62;
  --blue-dark:   #001d42;
  --blue-light:  #004d99;
  --blue-soft:   rgba(0, 45, 98, 0.08);
  --white:       #FFFFFF;
  --off-white:   #FAF9F7;
  --cream:       #F5F2EE;

  /* Neutral Palette */
  --black:       #0A0A0A;
  --dark:        #1A1A1A;
  --gray-900:    #2D2D2D;
  --gray-700:    #4A4A4A;
  --gray-500:    #717171;
  --gray-300:    #B8B8B8;
  --gray-100:    #F0F0F0;
  --border:      #E8E4DF;

  /* Typography */
  --font-serif:    'Playfair Display', 'Georgia', serif;
  --font-elegant:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo:     'Montserrat', 'Inter', sans-serif;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    8rem;

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --shadow-red:  0 10px 40px rgba(200, 16, 46, 0.25);
  --shadow-blue: 0 10px 40px rgba(0, 45, 98, 0.25);

  /* Transitions */
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(200, 16, 46, 0.35);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 45, 98, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cart {
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.btn-cart:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.pulse-btn {
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: var(--shadow-red); }
  50% { box-shadow: 0 0 0 12px rgba(200, 16, 46, 0.15), var(--shadow-red); }
}

/* --- SECTION UTILITIES --- */
section { padding: var(--space-xl) 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 0.6rem;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.about .section-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--blue-dark);
  text-transform: none;
  text-wrap: balance;
}

.transformation .section-title {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--blue-dark);
  text-transform: none;
  text-wrap: balance;
}

.merch .section-title {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--blue-dark);
  text-transform: none;
  text-wrap: balance;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.25rem 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, padding 0.3s ease;
  background: transparent;
  transform: translateY(0);
  will-change: transform;
}

.navbar.scrolled {
  padding: 0.15rem 0;
  background: rgba(200, 16, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Auto-hide al hacer scroll hacia abajo */
.navbar.nav-hidden {
  transform: translateY(-100%);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

/* Logo imagen en navbar */
.nav-logo-img {
  height: 170px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.3s ease;
}
.nav-logo-img:hover {
  transform: scale(1.04);
  filter: none;
}

/* Logo principal: Argenis & Carolina */
.nav-logo .logo-text,
.footer-logo .logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.logo-argenis {
  font-family: var(--font-logo);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1rem;
}

.logo-amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-size: 1.1rem;
  margin: 0 0.18em;
  opacity: 0.9;
}

.logo-carolina {
  font-family: var(--font-logo);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1rem;
}

.nav-logo .logo-sub {
  font-family: var(--font-logo);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  font-size: 0.8rem;
  padding: 0.65rem 1.5rem;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}
.lang-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.lang-selector.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 160px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.lang-option:hover, .lang-option.active {
  background: rgba(200,16,46,0.2);
  color: var(--white);
}
.lang-option.active { color: var(--red); font-weight: 600; }
.lang-flag { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

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

.hero-cover {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.70) 0%,
    rgba(0, 0, 0, 0.80) 45%,
    rgba(0, 45, 98, 0.75) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 16, 46, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 45, 98, 0.25) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem var(--space-md);
  padding-top: 7rem;
  padding-bottom: 6rem;
}

/* ---- Hero Logo ---- */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.8rem;
  padding: 0.9rem 1.25rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  animation: heroLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.92);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-logo-img {
  width: clamp(200px, 38vw, 360px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(200, 16, 46, 0.30))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  user-select: none;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
  padding: 0.5rem 1rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  padding: 0.9rem 0;
  text-align: center;
  overflow: hidden;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.95);
  padding: 0 1rem;
}

.urgency-content i { color: #FFD700; animation: flicker 1.5s infinite alternate; }
@keyframes flicker { from { opacity: 1; } to { opacity: 0.6; } }

.urgency-link {
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.urgency-link:hover { opacity: 0.8; }

/* ============================================================
   ABOUT MENTORS
   ============================================================ */
.about {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 4rem;
}

.mentor-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}
.mentor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mentor-card-reverse { direction: rtl; }
.mentor-card-reverse > * { direction: ltr; }

.mentor-image-wrap {
  position: relative;
}

.mentor-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-soft), var(--blue-soft));
}

.mentor-image-1 {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.04), rgba(10,10,10,0.18)),
    url("../images/argenis-bio.jpg");
  background-size: cover;
  background-position: center 24%;
}
.mentor-image-2 {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.04), rgba(10,10,10,0.18)),
    url("../images/carolina-bio.jpg");
  background-size: cover;
  background-position: center 22%;
}

.mentor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--gray-300);
}
.mentor-placeholder i { font-size: 4rem; }
.mentor-placeholder span { font-size: 1.2rem; font-weight: 600; }

.mentor-badge-card {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-red);
}

.mentor-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.mentor-title-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.mentor-info p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.9;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mentor-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.divider-symbol {
  font-size: 2rem;
  color: var(--red);
  opacity: 0.4;
}

.about-mission {
  margin-bottom: 3rem;
}

.mission-quote {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
}

.mission-quote-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 2rem;
  left: 2.5rem;
}

.mission-quote blockquote {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.mission-quote cite {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  letter-spacing: 0.06em;
}

.about-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.social-link i { font-size: 1.1rem; }

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum {
  background: var(--white);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.curriculum-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  background: var(--white);
  opacity: 0;
  transform: translateY(20px);
}

.curriculum-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.curriculum-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.curriculum-card:hover::before { transform: scaleX(1); }

.curriculum-card-highlight {
  background: linear-gradient(135deg, var(--red-soft), rgba(200,16,46,0.03));
  border-color: rgba(200,16,46,0.2);
}

.curriculum-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.curriculum-icon i {
  font-size: 1.4rem;
  color: var(--red);
}
.curriculum-card:hover .curriculum-icon {
  background: var(--red);
}
.curriculum-card:hover .curriculum-icon i {
  color: var(--white);
}

/* Variantes por área (azul / amber) — paleta dominicana extendida */
.curriculum-card.area-blue .curriculum-icon { background: rgba(0,45,98,0.08); }
.curriculum-card.area-blue .curriculum-icon i { color: var(--blue); }
.curriculum-card.area-blue:hover .curriculum-icon { background: var(--blue); }
.curriculum-card.area-blue:hover .curriculum-icon i { color: var(--white); }

.curriculum-card.area-amber .curriculum-icon { background: rgba(245,158,11,0.10); }
.curriculum-card.area-amber .curriculum-icon i { color: #B45309; }
.curriculum-card.area-amber:hover .curriculum-icon { background: #B45309; }
.curriculum-card.area-amber:hover .curriculum-icon i { color: var(--white); }

.curriculum-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.curriculum-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.module-points {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.module-points li {
  font-size: 0.82rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.module-points li::before {
  content: '✦';
  font-size: 0.6rem;
  color: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.videos {
  background: var(--dark);
  color: var(--white);
}
.videos .section-title { color: var(--white); }
.videos .section-subtitle { color: rgba(255,255,255,0.55); }

.video-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Variante 1 video grande (cuando no hay videos secundarios) */
.video-grid-single {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  border-color: rgba(200,16,46,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(200,16,46,0.2), rgba(0,45,98,0.3));
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Embed wrapper for YouTube iframes */
.video-thumb-embed {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}
.video-thumb-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(200,16,46,0.4);
  animation: ripple 2s infinite;
  transition: var(--transition);
  cursor: pointer;
}
.video-play-btn i { font-size: 1.5rem; color: var(--white); margin-left: 4px; }
.video-play-btn:hover { transform: scale(1.08); background: var(--red-dark); }

@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(200,16,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}

.video-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.video-duration {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.video-info { padding: 1.5rem; }
.video-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.video-info p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.video-side-list { display: flex; flex-direction: column; gap: 1rem; }

.video-card-small {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.video-card-small:hover {
  border-color: rgba(200,16,46,0.3);
  background: rgba(255,255,255,0.06);
}
.video-card-small .video-info-small {
  padding: 0.9rem 1rem 1rem;
}
.video-card-small .video-info-small h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.video-card-small .video-info-small p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

.video-thumb-small {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(200,16,46,0.2), rgba(0,45,98,0.3));
  position: relative;
}
.video-play-sm {
  width: 36px;
  height: 36px;
  background: rgba(200,16,46,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-sm i { font-size: 0.8rem; color: var(--white); margin-left: 2px; }

.video-duration-sm {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 3px;
}

.video-info-small { padding: 0.8rem 0.8rem 0.8rem 0; }
.video-info-small h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.video-info-small p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   GALLERY CAROUSEL
   ============================================================ */
.gallery {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  overflow: hidden;
}
.gallery .section-header { margin-bottom: 3rem; }

.gallerySwiper {
  padding-bottom: 3rem !important;
}

.gallery-slide {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #C8102E, #8B0014);
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(200,16,46,0.3), transparent),
    radial-gradient(ellipse at 80% 20%, rgba(0,45,98,0.3), transparent);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  z-index: 2;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
  color: var(--white);
  background: rgba(200,16,46,0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: var(--transition);
}
.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
  background: var(--red);
  transform: scale(1.1);
}
.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after { font-size: 1rem; font-weight: 900; }

.gallerySwiper .swiper-pagination-bullet {
  background: var(--red);
  opacity: 0.4;
  width: 8px;
  height: 8px;
}
.gallerySwiper .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; }

/* ============================================================
   TRANSFORMATION SECTION
   ============================================================ */
.transformation {
  background: var(--white);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.transform-col {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.transform-before {
  background: linear-gradient(135deg, #FFF5F6, #FFF0F2);
  border: 1px solid rgba(200,16,46,0.1);
}
.transform-after {
  background: linear-gradient(135deg, #F0F5FF, #EBF2FF);
  border: 1px solid rgba(0,45,98,0.1);
}

.transform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.transform-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.before-icon { background: rgba(200,16,46,0.1); }
.before-icon i { color: var(--red); font-size: 1rem; }
.after-icon { background: rgba(0,45,98,0.1); }
.after-icon i { color: var(--blue); font-size: 1rem; }

.transform-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.transform-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.transform-before .transform-list i.fa-times-circle { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.transform-after .transform-list i.fa-check-circle { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

.transform-divider-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6rem;
  gap: 1rem;
}
.transform-divider-line { width: 1px; height: 80px; background: var(--border); }
.transform-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-300);
}

.transform-cta {
  text-align: center;
}
.transform-cta p {
  font-family: var(--font-elegant);
  font-size: 1.4rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.testimonialsSwiper {
  padding: 1rem 0 3.5rem !important;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.testimonial-stars i { color: #FFB800; font-size: 0.95rem; }

.testimonial-card blockquote {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-size: 2rem;
  color: var(--red);
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-soft), var(--blue-soft));
  border: 2px solid var(--border);
}
.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}

.testimonial-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}
.testimonial-meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.testimonial-role {
  font-size: 0.78rem !important;
  color: var(--red) !important;
  font-weight: 500;
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
  color: var(--red);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  top: 45%;
}
.testimonialsSwiper .swiper-button-next:hover,
.testimonialsSwiper .swiper-button-prev:hover {
  background: var(--red);
  color: var(--white);
}
.testimonialsSwiper .swiper-button-next::after,
.testimonialsSwiper .swiper-button-prev::after { font-size: 1rem; font-weight: 900; }

.testimonialsSwiper .swiper-pagination-bullet { background: var(--red); }
.testimonialsSwiper .swiper-pagination-bullet-active { background: var(--red); }

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ts-stat {
  text-align: center;
}
.ts-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.ts-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}
.ts-stars i { color: #FFB800; font-size: 0.85rem; }
.ts-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--off-white);
}

.urgency-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FFF5F6, #FFF0F2);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.urgency-notice i { color: var(--red); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition-slow);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  border: 2px solid var(--red);
  transform: scale(1.03);
  box-shadow: var(--shadow-red);
  background: linear-gradient(180deg, #FFF8F9, var(--white));
  z-index: 1;
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-tier {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.pricing-module {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 0.5rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.pricing-features li i.fa-check { color: var(--blue); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.pricing-features li i.fa-times { color: var(--gray-300); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.feature-no span { color: var(--gray-300); }

.pricing-bonuses {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
.bonus-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.6rem;
}
.pricing-bonuses ul { display: flex; flex-direction: column; gap: 0.4rem; }
.pricing-bonuses li { font-size: 0.83rem; color: var(--gray-700); }

.pricing-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.guarantee-item i {
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.guarantee-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.guarantee-item p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   APPLICATION FORM
   ============================================================ */
.apply {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.apply-left .section-tag { color: rgba(255,255,255,0.6); }
.apply-left .section-tag::before,
.apply-left .section-tag::after { color: rgba(255,255,255,0.3); }

.apply-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}

.apply-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.apply-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.apply-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.apply-feature i { color: var(--red); font-size: 1rem; }

.apply-right {
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.apply-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--red);
  padding: 0;
  border: none;
}
.form-check label {
  font-size: 0.78rem;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.95rem; color: var(--gray-500); }

/* ============================================================
   SEAT COUNTER WIDGET
   ============================================================ */

.seat-counter {
  background: linear-gradient(135deg, rgba(0,45,98,0.04), rgba(200,16,46,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.seat-counter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.seat-counter[data-tier="low"]::before,
.seat-counter[data-tier="last"]::before  { transform: scaleX(1); }
.seat-counter[data-tier="sold"]::before  { transform: scaleX(1); background: var(--red); }

.seat-counter.is-sold-out {
  background: rgba(200,16,46,0.04);
  border-color: rgba(200,16,46,0.15);
}

.seat-counter-inner { display: flex; flex-direction: column; gap: 0.75rem; }

/* Row: label + numbers */
.seat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.seat-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.seat-label i { font-size: 0.8rem; color: var(--blue); }

.seat-numbers {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-serif);
}

.seat-remaining {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.4s ease;
  line-height: 1;
}

/* Color shifts by urgency */
.seat-counter[data-tier="high"]  .seat-remaining { color: var(--blue); }
.seat-counter[data-tier="low"]   .seat-remaining { color: #d97706; }
.seat-counter[data-tier="last"]  .seat-remaining { color: var(--red); }
.seat-counter[data-tier="sold"]  .seat-remaining { color: var(--gray-300); }

.seat-sep  { color: var(--gray-300); font-size: 1rem; }
.seat-total { font-size: 0.88rem; color: var(--gray-300); font-family: var(--font-body); font-weight: 400; }

/* Progress bar */
.seat-bar-wrap { width: 100%; }

.seat-bar-track {
  width: 100%;
  height: 5px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}

.seat-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease;
}
.seat-bar-fill.bar-high { background: linear-gradient(90deg, var(--blue), #6366f1); }
.seat-bar-fill.bar-low  { background: linear-gradient(90deg, #d97706, #f59e0b); }
.seat-bar-fill.bar-last { background: linear-gradient(90deg, var(--red-dark), var(--red)); }
.seat-bar-fill.bar-sold { background: var(--gray-300); }

/* Status message */
.seat-status-msg { min-height: 1.4rem; }

.seat-msg-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  animation: msgFadeIn 0.4s ease;
}
@keyframes msgFadeIn { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }

.seat-msg-neutral { background: rgba(0,45,98,0.07);  color: var(--blue);       border: 1px solid rgba(0,45,98,0.12); }
.seat-msg-high    { background: rgba(99,102,241,0.08); color: #6366f1;          border: 1px solid rgba(99,102,241,0.15); }
.seat-msg-low     { background: rgba(217,119,6,0.08); color: #d97706;           border: 1px solid rgba(217,119,6,0.15); }
.seat-msg-last    { background: rgba(200,16,46,0.07); color: var(--red);        border: 1px solid rgba(200,16,46,0.15); }
.seat-msg-sold    { background: rgba(0,0,0,0.04);     color: var(--gray-500);   border: 1px solid var(--border); }

/* Sold-out CTA */
.btn-sold-out {
  background: var(--gray-100) !important;
  color: var(--gray-300) !important;
  border-color: var(--gray-100) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.btn-sold-out:hover { transform: none !important; }

/* ============================================================
   MERCH STORE
   ============================================================ */
.merch {
  background: var(--off-white);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.merch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
}
.merch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.merch-card-coming { opacity: 0.6; }
.merch-card-coming:hover { opacity: 0.8; transform: none; }

.merch-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--red-soft), var(--blue-soft));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.merch-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-300);
}

.merch-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
}
.merch-badge-new { background: var(--blue); }
.merch-badge.merch-badge-exclusive { background: linear-gradient(90deg, var(--red), var(--blue)); }

.merch-info { padding: 1.5rem; }
.merch-info h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.merch-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.merch-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.merch-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}
.merch-price-old {
  font-size: 0.9rem;
  color: var(--gray-300);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* ============================================================
   UPCOMING MENTORIAS
   ============================================================ */
.upcoming-mentorias {
  background:
    radial-gradient(circle at top left, rgba(200,16,46,0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(0,45,98,0.08), transparent 30%),
    var(--off-white);
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.upcoming-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.upcoming-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.upcoming-flyer {
  display: block;
  width: 100%;
  height: auto;
}

.upcoming-meta {
  padding: 1.4rem 1.6rem 1.6rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.upcoming-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.upcoming-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.upcoming-where {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 1.1rem;
}
.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  border-radius: 100px;
}

.cart-summary {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cart-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}
.cart-info i { color: var(--red); }
#cartCount { font-weight: 700; color: var(--red); }
#cartTotal { font-weight: 700; color: var(--white); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 4rem 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.newsletter-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); }

.newsletter-form .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}
.newsletter-form .btn-primary:hover { background: var(--off-white); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: -2.5rem;
  margin-bottom: 0;
  margin-left: -10px;
}

/* Logo imagen en footer */
.footer-logo-img {
  height: 170px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  filter:
    brightness(1.05)
    drop-shadow(0 2px 10px rgba(200,16,46,0.2));
  transition: filter 0.3s ease;
}
.footer-logo-img:hover {
  filter:
    brightness(1.12)
    drop-shadow(0 4px 18px rgba(200,16,46,0.35));
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: -2.5rem;
  margin-bottom: 1.25rem;
  max-width: 280px;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-sub { margin-top: 0.4rem; }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  pointer-events: all;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.video-modal.active .modal-content { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--red); }

.modal-video {
  aspect-ratio: 16/9;
  background: var(--black);
}

.program-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-red);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS & INTERSECTION OBSERVER
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .mentor-divider { padding: 1rem; }
  .mentor-card { flex-direction: column; }
  .mentor-card-reverse { direction: ltr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }

  .apply-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .video-grid { grid-template-columns: 1fr; }
  .video-side-list { display: grid; grid-template-columns: repeat(3, 1fr); }

  .transformation-grid {
    grid-template-columns: 1fr;
  }
  .transform-divider-col {
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }
  .transform-divider-line { width: 80px; height: 1px; }

  .pricing-guarantees { grid-template-columns: 1fr; gap: 1.5rem; }
  .upcoming-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 3rem;
    --space-md: 1.25rem;
  }

  section { padding: var(--space-lg) 0; }
  .section-header { margin-bottom: 2.25rem; }
  .section-title { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .section-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 34rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 0.95rem 1.25rem;
  }
  .btn-large { padding: 1rem 1.25rem; font-size: 0.95rem; }

  /* Logo responsive */
  .nav-logo-img { height: 92px; }
  .hero-logo-img { width: clamp(160px, 60vw, 260px); }
  .footer-logo-img { height: 130px; }

  .navbar { padding: 0.9rem 0; }
  .navbar.scrolled { padding: 0.75rem 0; }
  .nav-container {
    padding: 0 1rem;
    gap: 0.75rem;
  }
  .nav-actions { gap: 0.5rem; }
  .lang-btn {
    padding: 0.55rem 0.75rem;
    min-height: 42px;
  }
  .nav-links { display: none; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 6.5rem 1.5rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.mobile-open a {
    width: min(100%, 320px);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
  }

  .hamburger { display: flex; z-index: 1001; }
  .nav-cta { display: none; }

  .hero {
    min-height: 100svh;
    align-items: stretch;
  }
  .hero-cover {
    opacity: 0.24;
  }
  .hero-cover-img {
    object-fit: cover;
    object-position: center;
  }
  .hero-content {
    max-width: 100%;
    padding: 7.5rem 1rem 4rem;
  }
  .hero-logo-wrap {
    margin-bottom: 1.2rem;
    padding: 0.8rem 1rem;
  }
  .hero-badge {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: clamp(2.55rem, 12vw, 4.15rem);
    line-height: 1.02;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 34rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .hero-ctas .btn {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 1rem 0.75rem;
    max-width: 100%;
  }
  .stat-item {
    min-width: 0;
    padding: 0.5rem 0.35rem;
  }
  .stat-number { font-size: 1.45rem; }
  .stat-label {
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .stat-divider { display: none; }

  .hero-scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .mentor-card {
    padding: 1.35rem;
    gap: 1.35rem;
  }
  .mentor-info h3 {
    font-size: 1.7rem;
    margin-top: 1rem;
  }
  .mentor-info p { font-size: 0.96rem; line-height: 1.8; }
  .mentor-badge-card {
    font-size: 0.74rem;
    padding: 0.45rem 0.85rem;
    max-width: calc(100% - 1rem);
  }
  .mission-quote {
    padding: 2.2rem 1.35rem 1.8rem;
  }
  .mission-quote-icon {
    top: 1rem;
    left: 1.2rem;
    font-size: 2rem;
  }
  .mission-quote blockquote { line-height: 1.65; }

  .curriculum-grid { grid-template-columns: 1fr; gap: 1rem; }
  .curriculum-card { padding: 1.4rem; }
  .curriculum-card h3 { font-size: 1.15rem; }
  .curriculum-card p { font-size: 0.9rem; }

  .video-info { padding: 1.15rem; }
  .video-info h3 { font-size: 1.15rem; }
  .video-side-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .video-card-small {
    align-items: stretch;
    gap: 0.85rem;
  }
  .video-thumb-small { width: 108px; }
  .video-info-small {
    padding: 0.85rem 0.85rem 0.85rem 0;
    min-width: 0;
  }

  .gallery .section-header { margin-bottom: 2rem; }
  .gallerySwiper { padding-bottom: 2.5rem !important; }
  .gallery-slide { aspect-ratio: 4 / 5; }
  .gallery-image { object-position: center; }
  .gallery-overlay { padding: 1.1rem; }
  .gallery-overlay span {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .testimonial-card { padding: 1.5rem; }
  .testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .testimonial-author { align-items: flex-start; }
  .testimonials-stats {
    flex-direction: column;
    gap: 1.35rem;
    padding: 1.5rem 1.25rem;
  }
  .ts-number { font-size: 2rem; }

  .pricing-grid { max-width: 100%; }
  .urgency-notice {
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .pricing-grid { gap: 1rem; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-card-featured { transform: none; }
  .pricing-header {
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
  }
  .pricing-badge {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    padding: 0.32rem 0.85rem;
  }
  .price-currency {
    font-size: 1.15rem;
    margin-top: 0.4rem;
  }
  .price-amount { font-size: 2.8rem; }
  .pricing-features { gap: 0.65rem; }
  .pricing-features li {
    font-size: 0.88rem;
    gap: 0.6rem;
  }
  .pricing-bonuses { padding: 1rem; }
  .pricing-guarantees {
    padding-top: 2rem;
    gap: 1rem;
  }

  .apply-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-left h2 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .apply-left p { font-size: 0.96rem; line-height: 1.75; }
  .apply-right {
    padding: 1.4rem 1rem;
    border-width: 2px;
  }
  .apply-form { gap: 1rem; }
  .seat-counter {
    padding: 1rem;
    border-radius: 14px;
  }
  .seat-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .seat-numbers { align-self: flex-end; }

  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-info { padding: 1.1rem; }
  .merch-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .merch-price-row .btn-cart { width: 100%; justify-content: center; }

  .upcoming-grid { gap: 1rem; }
  .upcoming-card { border-radius: 18px; }

  .newsletter { padding: 3rem 0; }
  .newsletter-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .newsletter-text h3 { font-size: 1.45rem; }
  .newsletter-form {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  .newsletter-form input {
    min-width: 0;
    width: 100%;
  }

  .transformation-grid { grid-template-columns: 1fr; }
  .transform-divider-col { display: none; }

  .swiper-button-next, .swiper-button-prev { display: none; }

  .footer {
    padding: 3.5rem 0 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-socials { justify-content: center; }

  .scroll-top {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
    width: 42px;
    height: 42px;
  }

  .urgency-content { flex-direction: column; text-align: center; }
  .urgency-bar { padding: 0.8rem 0; }
  .urgency-content {
    gap: 0.45rem;
    font-size: 0.82rem;
  }

  .about-social { flex-direction: column; align-items: center; }
  .social-link {
    width: 100%;
    justify-content: center;
    max-width: 22rem;
  }

  .lang-btn span { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav-container { padding: 0 0.9rem; }
  .merch-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 7rem 1rem 3.25rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 0.88rem; letter-spacing: 0.12em; }
  .hero-description { font-size: 0.93rem; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem;
  }
  .stat-item {
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-bottom: none; }
  .mentor-card { padding: 1.1rem; }
  .mentor-badge-card {
    white-space: normal;
    text-align: center;
  }
  .curriculum-card { padding: 1.5rem; }
  .video-card-small {
    flex-direction: column;
    gap: 0;
  }
  .video-thumb-small { width: 100%; }
  .video-info-small { padding: 0.9rem; }
  .gallery-slide { aspect-ratio: 3 / 4; }
  .hero-cover-img { object-position: center top; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card blockquote {
    font-size: 0.96rem;
    padding-left: 1rem;
  }
  .pricing-card { padding: 1.35rem 1rem; }
  .pricing-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .pricing-price { gap: 0.15rem; }
  .price-amount { font-size: 2.45rem; }
  .apply-right { padding: 1.2rem 0.9rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
  .urgency-notice { font-size: 0.86rem; }
  .newsletter-text h3 { font-size: 1.3rem; }
  .footer-col h4 { margin-bottom: 1rem; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .urgency-bar, .scroll-top, .video-modal { display: none; }
  .hero { min-height: auto; padding: 4rem 0; }
}

/* Cupos en tiempo real (poll a api/seats.php cada 15s) */

/* Tienda merch oculta hasta tener fotos reales de productos */
.merch { display: none !important; }

/* Video modal con iframe responsive (YouTube embed lazy) */
.modal-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
