/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --bg-primary:    #0D0D0D;
  --bg-secondary:  #141414;
  --bg-surface:    #1A1A1A;
  --accent:        #C9A96E;
  --accent-dim:    rgba(201,169,110,0.12);
  --accent-glow:   rgba(201,169,110,0.25);
  --text-primary:  #F5F0E8;
  --text-secondary:#9A9585;
  --text-muted:    #5A5550;
  --border:        rgba(255,255,255,0.06);
  --border-accent: rgba(201,169,110,0.3);
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,110,0.1) 0%, transparent 70%);
  --blur-nav:      blur(20px) saturate(180%);
  --radius:        8px;
  --radius-lg:     12px;
  --transition:    0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.15; }
h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
h3 { font-family: 'Outfit', sans-serif; font-weight: 500; }

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* ─── Layout helpers ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }

/* ─── Section divider ───────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: .35;
}

/* ─── Grain overlay (hero) ───────────────────────────────────────── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 0;
}

/* ─── Navbar ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.88);
  -webkit-backdrop-filter: var(--blur-nav);
  backdrop-filter: var(--blur-nav);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img { width: 72px; height: 72px; flex-shrink: 0; }
.nav-logo-text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -.3px;
}
.nav-logo-text span { color: var(--text-secondary); font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid var(--border-accent);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  letter-spacing: .01em;
}
.btn-nav:hover { background: var(--accent-dim); border-color: var(--accent); transform: translateY(-1px); color: var(--text-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  gap: 4px;
  z-index: 899;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu a:hover { color: var(--text-primary); }
.btn-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 8px;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 600;
  border-radius: 7px;
  border: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .01em;
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.3);
  color: #0D0D0D;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  border-radius: 7px;
  border: 1px solid var(--border-accent);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid var(--border-accent);
  transition: background var(--transition);
}
.btn-ghost:hover { background: var(--accent-dim); color: var(--accent); }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 80px 0;
}

/* ─── Hero layout with media ──────────────────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-gif {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  border: 1px solid var(--border-accent);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,169,110,0.08);
}
.hero h1 {
  font-size: clamp(46px, 7vw, 80px);
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Hero stagger animations ─────────────────────────────────────── */
.hero-item {
  opacity: 0;
  animation: fadeSlideUp 0.7s ease forwards;
}
.hero-item:nth-child(1) { animation-delay: 0.05s; }
.hero-item:nth-child(2) { animation-delay: 0.15s; }
.hero-item:nth-child(3) { animation-delay: 0.28s; }
.hero-item:nth-child(4) { animation-delay: 0.42s; }
.hero-item:nth-child(5) { animation-delay: 0.56s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Social proof ───────────────────────────────────────────────── */
.social-proof {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-tagline {
  font-size: 24px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .04em;
}
.badge svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ─── Foundations card ───────────────────────────────────────────── */
.foundations { background: var(--bg-secondary); }
.foundations-card {
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, var(--bg-surface) 100%);
  position: relative;
  overflow: hidden;
}
.foundations-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  pointer-events: none;
}
.foundations-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 10px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .12em;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.foundations-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.foundations-description {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.foundations-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.deliverable-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.deliverable-chip::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
}
.foundations-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Section headers ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-header .subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── Track cards ────────────────────────────────────────────────── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.track-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.track-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.track-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.track-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.track-profile {
  font-size: 12px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.track-card h3 {
  font-size: 23px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.track-result {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}
/* Accordion levels */
.levels-list { border-top: 1px solid var(--border); margin-bottom: 24px; }
.level-item { border-bottom: 1px solid var(--border); }
.level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
  user-select: none;
}
.level-header:hover { color: var(--text-primary); }
.level-header.active { color: var(--accent); }
.level-chevron {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.level-header.active .level-chevron { transform: rotate(180deg); }
.level-body {
  display: none;
  padding: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.level-body.open { display: block; }

/* ─── Level module chips ───────────────────────────────────────── */
.level-body p { margin-bottom: 6px; color: var(--text-muted); }
.level-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.level-module-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 11px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .02em;
  white-space: nowrap;
}
.track-cta { margin-top: auto; }
.btn-track {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  width: 100%;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-track:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-1px);
  color: var(--text-primary);
}

/* ─── Track chips & duration (new card layout) ───────────────────── */
.track-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.track-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .03em;
  white-space: nowrap;
}
.track-duration {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 20px;
}
.track-duration i { color: var(--accent); font-size: 11px; }

/* ─── Track actions (two-button layout) ─────────────────────────── */
.track-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: auto;
}
.track-actions .btn-track-detail,
.track-actions .btn-track {
  flex: 1;
  font-size: 12px;
  padding: 9px 12px;
}
.btn-track-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  width: 100%;
  transition: background var(--transition), transform var(--transition);
}
.btn-track-detail:hover {
  background: #dfc07e;
  transform: translateY(-1px);
}
.btn-track-detail i { font-size: 11px; }

/* ─── Track detail modals ────────────────────────────────────────── */
.track-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.track-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.track-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.38s cubic-bezier(.16, 1, .3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-accent) transparent;
}
.track-modal-overlay.open .track-modal-box {
  transform: translateY(0) scale(1);
}
.track-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition), border-color var(--transition);
}
.track-modal-close:hover {
  color: var(--text-primary);
  border-color: var(--border-accent);
}
/* Video placeholder */
.track-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080808;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.track-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
}
.track-video-play-btn {
  width: 68px;
  height: 68px;
  background: rgba(201, 169, 110, 0.12);
  border: 2px solid rgba(201, 169, 110, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.track-video-play-btn i {
  color: var(--accent);
  font-size: 22px;
  margin-left: 4px;
}
.track-video-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
/* Modal content */
.track-modal-content {
  padding: 28px 32px 24px;
}
.track-modal-content .eyebrow { margin-bottom: 8px; }
.track-modal-content h3 {
  font-size: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}
.track-modal-audience {
  font-size: 12px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.track-modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 24px;
}
.track-modal-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.track-modal-learn {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.track-modal-learn li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.track-modal-learn li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
/* Examples */
.track-modal-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.track-example-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 2px solid var(--border-accent);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}
/* CTA */
.track-modal-cta-wrap {
  padding: 20px 32px 32px;
}
.btn-track-want {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-track-want:hover {
  background: #dfc07e;
  transform: translateY(-2px);
}

/* ─── Diferenciadores ────────────────────────────────────────────── */
.diferenciadores { background: var(--bg-secondary); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dif-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  backdrop-filter: blur(4px);
  transition: border-color var(--transition), transform var(--transition);
}
.dif-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

/* ─── Dif-item stagger animation ───────────────────────────────── */
.dif-item.reveal {
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1),
              border-color var(--transition);
}
.dif-item.reveal.visible {
  transform: translateY(0) scale(1);
  transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.22s ease,
              border-color var(--transition), box-shadow var(--transition);
}
.dif-item.reveal.visible:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--border-accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.dif-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .75;
}
.dif-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.dif-desc {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── Módulos transversales ──────────────────────────────────────── */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.modulo-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
  transition: border-color var(--transition);
}
.modulo-chip:hover { border-color: var(--border-accent); }
.modulo-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.modulos-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Formatos ───────────────────────────────────────────────────── */
.formatos { background: var(--bg-secondary); }
.formatos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.formato-card {
  padding: 28px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.formato-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.formato-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.formato-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.formato-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.formato-desc {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── Agenda / Calendly ───────────────────────────────────────────── */
.agenda-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}
.agenda-text-col .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 400;
}
.agenda-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.agenda-benefits { margin-bottom: 32px; }
.agenda-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.benefit-icon { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.benefit-text { font-size: 14px; color: var(--text-secondary); }
.calendly-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ─── Lead capture ───────────────────────────────────────────────── */
.lead-section { background: var(--bg-secondary); }
.lead-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.lead-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-primary);
  margin-bottom: 12px;
}
.lead-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.65;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── Form elements ──────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9585' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field select option { background: var(--bg-surface); color: var(--text-primary); }

/* Checkboxes */
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.checkbox-label:hover { color: var(--text-primary); }
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-accent);
  border-radius: 4px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #0D0D0D;
  border-bottom: 2px solid #0D0D0D;
  transform: rotate(-45deg) translate(1px, -1px);
  display: block;
}

/* Form success / error messages */
.form-feedback {
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 14px;
  margin-top: 4px;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.4);
  color: #C9A96E;
}
.form-feedback.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ─── Quote multi-step ───────────────────────────────────────────── */
.quote-section { background: var(--bg-primary); }
.quote-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.progress-bar-wrap { margin-bottom: 40px; }
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.progress-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .3s ease;
}
.progress-step.active .progress-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #0D0D0D;
}
.progress-step.done .progress-step-num {
  background: rgba(201,169,110,0.2);
  border-color: var(--accent);
  color: var(--accent);
}
.progress-step-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}
.progress-step.active .progress-step-label { color: var(--accent); }
.progress-connector {
  flex: 1;
  height: 1.5px;
  background: var(--border);
  max-width: 80px;
  margin-bottom: 22px;
  transition: background .3s ease;
}
.progress-connector.done { background: var(--accent); }

.quote-step { display: none; }
.quote-step.active { display: block; }
.step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.quote-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.quote-form-card .form-fields { display: flex; flex-direction: column; gap: 20px; }

/* ─── Track selector ─────────────────────────────────────────────── */
.track-selector-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.track-selector-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}
.track-selector-item:hover { border-color: var(--border-accent); }
.track-selector-item.selected {
  border-color: var(--accent);
  background: rgba(201,169,110,0.05);
}

/* Checkbox box */
.track-selector-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  color: transparent;
  font-size: 11px;
  cursor: pointer;
}
.track-selector-item.selected .track-selector-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #0D0D0D;
}

/* Toggle area: checkbox + text, fills left side */
.track-toggle-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
  min-width: 0;
  position: relative;
}
.track-toggle-area input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.track-selector-content { flex: 1; min-width: 0; }
.track-selector-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.track-selector-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pax section: hidden by default, shows on right when selected */
.track-pax-section {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.track-selector-item.selected .track-pax-section {
  display: flex;
}
.track-pax-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.track-participant-input {
  width: 68px;
  text-align: center;
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  padding: 6px 8px;
  outline: none;
  -moz-appearance: textfield;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.track-participant-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.track-participant-input::-webkit-outer-spin-button,
.track-participant-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ─── Custom select dropdown ─────────────────────────────────────── */
.custom-select { position: relative; width: 100%; }
.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-muted);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  user-select: none;
  transition: border-color var(--transition), box-shadow var(--transition), border-radius var(--transition);
}
.custom-select-trigger:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.custom-select.has-value .custom-select-trigger { color: var(--text-primary); }
.custom-select.open .custom-select-trigger {
  border-color: var(--accent);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.custom-select.error .custom-select-trigger { border-color: rgba(239,68,68,0.6); }
.custom-select-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}
.custom-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  border-top: none;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  z-index: 200;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.custom-select.open .custom-select-dropdown { display: block; }
.custom-select-option {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-select-option:last-child { border-bottom: none; }
.custom-select-option:hover {
  background: rgba(201,169,110,0.07);
  color: var(--text-primary);
}
.custom-select-option.selected {
  color: var(--accent);
  background: rgba(201,169,110,0.05);
}
.custom-select-option.selected::after {
  content: "✓";
  font-size: 13px;
  color: var(--accent);
}


/* ─── Custom content label ──────────────────────────────────────── */
.custom-content-label {
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
  transition: border-color var(--transition);
}
.custom-content-label:hover { border-color: var(--border-accent); }

/* ─── Advisory checkbox ────────────────────────────────────────── */
.advisory-label {
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
  transition: border-color var(--transition);
}
.advisory-label:hover { border-color: var(--border-accent); }

/* ─── Per-track participants (legacy rows — unused, kept for reference) ── */
/* .track-participant-row and .track-participant-label removed — now inline */

/* ─── Phone group ─────────────────────────────────────────────── */
.phone-group {
  display: flex;
  gap: 8px;
}
select.phone-country-select {
  width: 125px;
  flex-shrink: 0;
  padding: 12px 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  -webkit-appearance: none;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A9585' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
select.phone-country-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

/* ─── Asesoría landing section ─────────────────────────────────── */
.asesoria-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.asesoria-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.asesoria-lead {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 20px 0 28px;
  line-height: 1.7;
}
.asesoria-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 560px;
  text-align: left;
}
.asesoria-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.asesoria-list li::before {
  content: "›";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}
.custom-price-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}

/* ─── Field hint ────────────────────────────────────────────────── */
.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── Price calculator ───────────────────────────────────────────── */
.price-calculator {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  overflow: hidden;
}
.price-calc-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}
.price-calc-rows {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.price-calc-empty {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
.price-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.price-calc-row-label { color: var(--text-secondary); }
.price-calc-row-value {
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.price-calc-row.discount .price-calc-row-label { color: #4ade80; }
.price-calc-row.discount .price-calc-row-value { color: #4ade80; }
.price-calc-total {
  background: var(--accent-dim);
  border-top: 1px solid var(--border-accent);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-calc-total-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.price-calc-total-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}
.quote-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 14px;
}
.quote-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--text-muted); }
.summary-value { color: var(--text-primary); font-weight: 500; text-align: right; max-width: 55%; }

/* Spinner */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(13,13,13,.3);
  border-top-color: #0D0D0D;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
button.loading .btn-spinner { display: inline-block; }
button.loading .btn-text { display: none; }
button:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ─── Reveal animations ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Navbar scroll ──────────────────────────────────────────────── */
nav { transition: background .3s ease, box-shadow .3s ease; }

/* ─── Calendly modal ─────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
}
.modal-close:hover { color: var(--text-primary); background: var(--border); }
.modal-body { padding: 24px; }

/* ─── WhatsApp float ─────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .22s ease, box-shadow .22s ease;
  z-index: 999;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ─── Footer lead capture ───────────────────────────────────────── */
.footer-lead {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0 24px;
  flex-wrap: wrap;
}
.footer-lead-col { flex: 0 0 260px; }
.footer-lead-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-lead-form {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  min-width: 0;
}
.footer-lead-form input {
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}
.footer-lead-form input::placeholder { color: var(--text-muted); }
.footer-lead-form input:focus { border-color: var(--accent); }
.footer-lead-form .btn-primary { padding: 10px 18px; font-size: 13px; white-space: nowrap; }
.footer-lead-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 24px 0 16px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.footer-logo-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}
.footer-logo-text span { color: var(--text-secondary); font-weight: 400; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-contact a { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Instructor ─────────────────────────────────────────────────── */
.instructor-section { background: var(--bg-primary); }
.instructor-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.instructor-photo-wrap { flex-shrink: 0; }
.instructor-photo {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border-accent);
  box-shadow: 0 0 0 6px rgba(201,169,110,0.08);
}
.instructor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.1;
}
.instructor-title {
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: .01em;
  margin-bottom: 20px;
}
.instructor-bio {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
}

/* ─── FAQ Section ───────────────────────────────────────────────── */
.faq-section { background: var(--bg-secondary); padding: 80px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.faq-item--open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-item--open .faq-question { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  position: relative;
  transition: background var(--transition);
}
.faq-item--open .faq-icon { background: rgba(201,169,110,0.22); }
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 9px; transition: opacity 0.2s, transform 0.2s; }
.faq-item--open .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin: 14px 0 0;
}
.faq-answer p strong { color: var(--text-primary); font-weight: 500; }

/* ─── Sobre Nosotros ────────────────────────────────────────────── */
.sobre-section { padding: 80px 0 100px; }
.sobre-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.sobre-photo-wrap { flex-shrink: 0; }
.sobre-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
}
.sobre-intro { flex: 1; }
.sobre-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 8px 0 6px;
}
.sobre-title {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}
.sobre-contact-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sobre-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.sobre-contact-link:hover { color: var(--accent); }
.sobre-contact-link i { color: var(--accent); font-size: 12px; }
.sobre-contact-sep { color: var(--text-muted); }
.sobre-body { max-width: 720px; }
.sobre-block { margin-bottom: 0; }
.sobre-block-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.sobre-block p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.sobre-block p:last-child { margin-bottom: 0; }
.sobre-block p strong { color: var(--text-primary); font-weight: 500; }
.sobre-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 40px 0;
}
.sobre-skills {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sobre-skills li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}
.sobre-skill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sobre-cta-block { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.sobre-cta-row { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dif-grid { grid-template-columns: repeat(3, 1fr); }
  .formatos-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-inner { grid-template-columns: 1fr; }
  .agenda-text-col { text-align: center; }
  .agenda-benefits { text-align: left; }
  .footer-lead-form { grid-template-columns: 1fr 1fr; }
  .footer-lead-form .btn-primary { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .tracks-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .formatos-grid { grid-template-columns: 1fr 1fr; }
  .foundations-card { padding: 28px 24px; }
  .quote-form-card { padding: 24px 20px; }
  .footer-inner { flex-direction: column; }
  .footer-lead { flex-direction: column; gap: 24px; }
  .footer-lead-col { flex: none; }
  .footer-lead-form { grid-template-columns: 1fr 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .instructor-inner { flex-direction: column; gap: 32px; text-align: center; }
  .instructor-bio { max-width: 100%; }
  /* Track modals */
  .track-modal-overlay { padding: 12px; }
  .track-modal-box { max-height: 92vh; }
  .track-modal-content { padding: 22px 20px 18px; }
  .track-modal-cta-wrap { padding: 16px 20px 24px; }
  .track-modal-content h3 { font-size: 22px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .formatos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .progress-connector { max-width: 40px; }
  .section-header h2 { font-size: 28px; }
  .footer-lead-form { grid-template-columns: 1fr; }
}

/* ─── Accessibility ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
