:root {
  --primary: #EC7A08;
  --primary-dark: #C4620A;
  --primary-glow: rgba(236,122,8,0.25);
  --black: #000000;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --gray: #888888;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.65);
  --white-faint: rgba(255,255,255,0.06);
  --shadow-orange: 0 8px 32px rgba(236,122,8,0.28);
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --header-h: 72px;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: var(--radius-sm); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-title); font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-full); padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  transition: all 250ms ease; white-space: nowrap; cursor: pointer;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn--ghost:hover { background: var(--white-faint); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn--login { background: var(--primary); color: var(--white); border-color: var(--primary); font-size: 0.85rem; padding: 0.5rem 1.25rem; }
.btn--login:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn--lg { font-size: 1.125rem; padding: 1rem 2.25rem; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform 250ms; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.section-tag {
  display: inline-block; font-family: var(--font-title);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem;
}
.section-tag--light { color: rgba(255,255,255,0.4); }
.section-title {
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15;
  color: var(--white); margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.skill-tag {
  display: inline-block; background: rgba(236,122,8,0.1); color: var(--primary);
  border: 1px solid rgba(236,122,8,0.25); border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700; font-family: var(--font-title); padding: 0.2rem 0.75rem;
}

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 250ms, box-shadow 250ms;
}
.header--scrolled { background: rgba(0,0,0,0.95); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo a la izquierda, nav a la derecha */
  height: 100%;
  gap: 10rem;
}

.logo__img {
  height: 10px; /* era más pequeño, lo agrandamos un poco */
  width: auto;
  object-fit: contain;
}
.logo__img { height: 74px; width: auto; object-fit: contain; }
.logo__fallback { display: flex; align-items: center; gap: 0.4rem; }
.logo__icon { font-size: 1.4rem; color: var(--primary); }
.logo__text { font-family: var(--font-title); font-weight: 900; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--white); }


.header__nav { display: flex; align-items: center; width: 100%; }
.nav__list { display: flex; align-items: center; gap: 0.8rem; }
.nav__link { font-family: var(--font-title); font-weight: 600; font-size: 0.875rem; color: rgba(255,255,255,0.7); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); transition: color 150ms, background 150ms; }
.nav__link:hover { color: var(--white); background: var(--white-faint); }
.nav__cta { margin-left: 0; }
.nav__sep { width: 1px; height: 24px; background: rgba(255,255,255,0.1); margin: 0 0.5rem; }
.nav__login-area { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__login {
  display: inline-flex;
}

.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 200ms ease, border-color 200ms ease;
}

.header__toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 250ms ease, opacity 250ms ease;
}

.header__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle--open span:nth-child(2) {
  opacity: 0;
}

.header__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--header-h);
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(236,122,8,0.12) 0%, transparent 70%), var(--black);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: orb-float 10s ease-in-out infinite alternate; }
.hero__orb--1 { width: 55vw; height: 55vw; max-width: 700px; max-height: 700px; background: radial-gradient(circle, rgba(236,122,8,0.14) 0%, transparent 65%); top: -5%; right: -2%; }
.hero__orb--2 { width: 35vw; height: 35vw; max-width: 450px; max-height: 450px; background: radial-gradient(circle, rgba(236,122,8,0.08) 0%, transparent 65%); bottom: -5%; left: -2%; animation-duration: 14s; animation-direction: alternate-reverse; }
@keyframes orb-float { from { transform: translate(0,0) scale(1); } to { transform: translate(25px,-25px) scale(1.05); } }
.hero__content { position: relative; z-index: 1; padding: 2.5rem 0 3.5rem; max-width: 780px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(236,122,8,0.1); border: 1px solid rgba(236,122,8,0.3);
  border-radius: var(--radius-full); font-family: var(--font-title);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--primary); padding: 0.35rem 1rem; margin-bottom: 1.5rem;
  animation: fade-up 0.6s ease both;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.75); } }
.hero__title {
  font-family: var(--font-title); font-weight: 900;
  font-size: clamp(2.4rem, 6.5vw, 4.5rem); line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
  animation: fade-up 0.6s 0.1s ease both;
}
.hero__title--accent { font-style: normal; color: var(--primary); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem; max-width: 520px;
  animation: fade-up 0.6s 0.2s ease both;
}
.hero__subtitle strong { color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; animation: fade-up 0.6s 0.3s ease both; }
.hero__stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; animation: fade-up 0.6s 0.4s ease both; }
.stat__number { display: block; font-family: var(--font-title); font-weight: 900; font-size: 1.8rem; color: var(--primary); line-height: 1; }
.stat__label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.05em; margin-top: 2px; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.missions { background: var(--black); padding: 6rem 0; }
.missions__roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 1024px) { .missions__roadmap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .missions__roadmap { grid-template-columns: 1fr; } }
.roadmap__line { display: none; }
.mission-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 250ms, transform 250ms, box-shadow 250ms; }
.mission-card:hover { border-color: rgba(236,122,8,0.35); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.mission-card--featured { border-color: rgba(236,122,8,0.4); box-shadow: var(--shadow-orange); }
.mission-card__header { display: flex; justify-content: space-between; align-items: center; }
.mission-card__tag { font-family: var(--font-title); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--primary); text-transform: uppercase; }
.mission-card__badge { background: rgba(236,122,8,0.15); color: var(--primary); font-family: var(--font-title); font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); border: 1px solid rgba(236,122,8,0.3); }
.mission-card__icon { font-size: 2.2rem; }
.mission-card__title { font-family: var(--font-title); font-weight: 800; font-size: 1.05rem; color: var(--white); }
.mission-card__desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; flex: 1; }
.mission-card__skills { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.manifesto { background: var(--dark); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.manifesto__bg { position: absolute; inset: 0; pointer-events: none; }
.manifesto__orb { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(236,122,8,0.11) 0%, transparent 60%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(60px); }
.manifesto__content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.manifesto__title { font-family: var(--font-title); font-weight: 900; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; color: var(--white); margin-bottom: 2rem; }
.manifesto__accent { font-style: normal; color: var(--primary); }
.manifesto__body { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.85; }
.manifesto__cite { font-family: var(--font-title); font-weight: 700; color: var(--primary); font-style: normal; font-size: 0.9rem; letter-spacing: 0.08em; }

.portal-cta { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 100%); padding: 5rem 0; position: relative; overflow: hidden; border-top: 1px solid rgba(236,122,8,0.15); border-bottom: 1px solid rgba(236,122,8,0.15); }
.portal-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.portal-cta__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(236,122,8,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(236,122,8,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.portal-cta__orb { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(236,122,8,0.15) 0%, transparent 65%); border-radius: 50%; top: -100px; right: -100px; filter: blur(80px); }
.portal-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.portal-cta__label { font-family: var(--font-title); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.portal-cta__title { font-family: var(--font-title); font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.portal-cta__title em { font-style: normal; color: var(--primary); }
.portal-cta__desc { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.portal-cta__features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.portal-feat { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.portal-feat__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.portal-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.portal-preview { background: var(--dark-2); border: 1px solid rgba(236,122,8,0.25); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(236,122,8,0.1); }
.preview__topbar { background: var(--dark-3); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.preview__dot { width: 10px; height: 10px; border-radius: 50%; }
.preview__dot--r { background: #ff5f57; }
.preview__dot--y { background: #febc2e; }
.preview__dot--g { background: #28c840; }
.preview__url { flex: 1; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 0.3rem 0.75rem; font-size: 0.72rem; color: rgba(255,255,255,0.35); font-family: monospace; margin-left: 0.5rem; }
.preview__body { padding: 1.25rem; }
.preview__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.preview__logo-text { font-family: var(--font-title); font-weight: 900; font-size: 0.9rem; color: var(--white); letter-spacing: 0.1em; }
.preview__logo-text span { color: var(--primary); }
.preview__user { display: flex; align-items: center; gap: 0.5rem; }
.preview__avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 700; font-size: 0.65rem; color: white; }
.preview__username { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-family: var(--font-title); }
.preview__greeting { font-family: var(--font-title); font-weight: 800; font-size: 0.85rem; color: var(--white); margin-bottom: 0.25rem; }
.preview__sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.preview__progress-bar { background: rgba(255,255,255,0.08); border-radius: var(--radius-full); height: 6px; margin-bottom: 0.4rem; overflow: hidden; }
.preview__progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #ffb347); border-radius: var(--radius-full); width: 37%; }
.preview__progress-text { font-size: 0.65rem; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.preview__modules { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.preview__mod { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); padding: 0.6rem 0.75rem; }
.preview__mod--active { border-color: rgba(236,122,8,0.4); background: rgba(236,122,8,0.06); }
.preview__mod--locked { opacity: 0.4; }
.preview__mod-num { font-family: var(--font-title); font-size: 0.58rem; font-weight: 700; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.preview__mod-name { font-size: 0.68rem; color: rgba(255,255,255,0.7); font-weight: 600; line-height: 1.3; }
.preview__mod-status { font-size: 0.6rem; color: rgba(255,255,255,0.3); margin-top: 0.15rem; }
.preview__mod--active .preview__mod-status { color: var(--primary); }

.problem { background: #111; padding: 6rem 0; }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 5rem; }
.problem__card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 2rem; transition: border-color 250ms, transform 250ms, box-shadow 250ms; }
.problem__card:hover { border-color: rgba(236,122,8,0.35); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.problem__card-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem__card-title { font-family: var(--font-title); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.problem__card-text { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; }
.problem__solution { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.solution__body { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.75; }
.solution__body strong { color: var(--white); }
.solution__tagline { font-family: var(--font-title); font-weight: 600; font-size: 0.95rem; color: var(--primary); font-style: italic; border-left: 3px solid var(--primary); padding-left: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.solution__visual { display: flex; align-items: center; justify-content: center; }
.solution__graphic { position: relative; width: 280px; height: 280px; }
.graphic__ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.graphic__ring--1 { width: 100%; height: 100%; border: 1px solid rgba(236,122,8,0.18); animation: ring-spin 22s linear infinite; }
.graphic__ring--2 { width: 68%; height: 68%; border: 1px solid rgba(236,122,8,0.30); animation: ring-spin 14s linear infinite reverse; }
.graphic__ring--3 { width: 38%; height: 38%; border: 1px solid rgba(236,122,8,0.50); animation: ring-spin 8s linear infinite; }
@keyframes ring-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.graphic__dot { position: absolute; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px rgba(236,122,8,0.8); top: -4px; left: 50%; margin-left: -4px; }
.graphic__dot--2 { width: 6px; height: 6px; top: auto; bottom: -3px; left: 50%; margin-left: -3px; background: rgba(236,122,8,0.7); }
.graphic__center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; }
.graphic__text { font-family: var(--font-title); font-weight: 900; font-size: 1.4rem; letter-spacing: 0.2em; color: var(--white); animation: center-pulse 4s ease infinite; }
@keyframes center-pulse { 0%,100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(236,122,8,0.35)); } 50% { transform: scale(1.06); filter: drop-shadow(0 0 22px rgba(236,122,8,0.7)); } }

.squad { background: var(--black); padding: 6rem 0; }
.squad__mv { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.mv-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 2.5rem; }
.mv-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card__title { font-family: var(--font-title); font-weight: 800; font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.mv-card__text { color: rgba(255,255,255,0.6); line-height: 1.75; }
.squad__values-title { font-family: var(--font-title); font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; text-align: center; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 1.75rem; text-align: center; transition: border-color 250ms, transform 250ms; }
.value-card:hover { border-color: rgba(236,122,8,0.3); transform: translateY(-3px); }
.value-card__icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-card__name { font-family: var(--font-title); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.value-card__desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); font-style: italic; line-height: 1.6; }

.faq { background: #111; padding: 6rem 0; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); overflow: hidden; }
.faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; color: var(--white); gap: 1rem; text-align: left; transition: color 150ms; }
.faq__question:hover { color: var(--primary); }
.faq__icon { font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.faq__answer { padding: 0 1.5rem 1.25rem; color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.75; }
.faq__answer strong { color: var(--white); }

.cta-final { background: var(--dark); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-final__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(236,122,8,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(236,122,8,0.04) 1px, transparent 1px); background-size: 50px 50px; }
.cta-final__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-final__title { font-family: var(--font-title); font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.cta-final__accent { font-style: normal; color: var(--primary); }
.cta-final__subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-final__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.contact { background: #111; padding: 6rem 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__desc { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-top: 1rem; margin-bottom: 2rem; line-height: 1.75; }
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact__item { display: flex; align-items: center; gap: 0.75rem; }
.contact__icon { font-size: 1.2rem; }
.contact__link { color: var(--primary); font-weight: 600; transition: color 150ms; }
.contact__detail { color: rgba(255,255,255,0.6); }
.contact__form-wrapper { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-family: var(--font-title); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.form-input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 0.6rem 0.85rem; color: var(--white); font-family: var(--font-body); font-size: 0.82rem; transition: border-color 200ms, box-shadow 200ms; outline: none; }
.form-input:focus { border-color: rgba(236,122,8,0.6); box-shadow: 0 0 0 3px rgba(236,122,8,0.1); }
.form-legal { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }

.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer__tagline { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 1rem; margin-bottom: 0.5rem; }
.footer__location { color: rgba(255,255,255,0.3); font-size: 0.85rem; margin-bottom: 1.25rem; }
.footer__seal { display: inline-flex; background: rgba(236,122,8,0.08); border: 1px solid rgba(236,122,8,0.2); border-radius: var(--radius-full); font-family: var(--font-title); font-size: 0.65rem; font-weight: 700; color: rgba(236,122,8,0.7); padding: 0.3rem 0.75rem; letter-spacing: 0.06em; }
.footer__nav-title { font-family: var(--font-title); font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 150ms; }
.footer__link:hover { color: var(--primary); }
.social__links { display: flex; flex-direction: column; gap: 0.75rem; }
.social__link { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 150ms; }
.social__link:hover { color: var(--primary); }
.social__svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.25); }
.footer__academic { font-size: 0.82rem; color: rgba(255,255,255,0.2); }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: flex-start; justify-content: center; padding: 1.5rem; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 300ms; }
.modal-overlay--open { opacity: 1; pointer-events: auto; }
.modal { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 1.75rem; max-width: 360px; width: 100%; position: relative; margin: auto; max-height: none; }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: background 150ms, color 150ms; }
.modal__close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.modal__tag { font-family: var(--font-title); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 0.75rem; }
.modal__title { font-family: var(--font-title); font-weight: 900; font-size: 1.2rem; color: var(--white); margin-bottom: 0.4rem; line-height: 1.2; }
.modal__subtitle { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-bottom: 1.25rem; line-height: 1.6; }
.modal__divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 1.25rem 0; }
.modal__footer-link { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-top: 1rem; }
.modal__footer-link a { color: var(--primary); font-weight: 600; }

.hero__scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: fade-up 0.6s 0.7s ease both; }
.scroll-hint__line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--primary), transparent); animation: scroll-line 2s ease infinite; }
.scroll-hint__text { font-family: var(--font-title); font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.25); }
@keyframes scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 49% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-family: var(--font-title); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.form-input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 0.875rem 1.1rem;
  color: var(--white); font-family: var(--font-body); font-size: 1rem;
  width: 100%; transition: border-color 150ms, box-shadow 150ms, background 150ms;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus { outline: none; border-color: var(--primary); background: rgba(236,122,8,0.04); box-shadow: 0 0 0 3px rgba(236,122,8,0.15); }
.form-select { cursor: pointer; 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='%23EC7A08' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-select option { background: #1A1A1A; color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-legal { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.28); margin-top: 0.25rem; }
.form-status { text-align: center; font-size: 0.9rem; font-weight: 600; padding: 0.75rem; border-radius: var(--radius-md); display: none; }
.form-status--success { background: rgba(46,125,50,0.15); border: 1px solid rgba(46,125,50,0.4); color: #81c784; display: block; }
.form-status--error { background: rgba(198,40,40,0.15); border: 1px solid rgba(198,40,40,0.4); color: #ef9a9a; display: block; }

.contact-pref__group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-pref__option { cursor: pointer; }
.contact-pref__option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-pref__btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1.2rem; border-radius: var(--radius-full); border: 1.5px solid rgba(255,255,255,0.15); font-family: var(--font-title); font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.6); background: transparent; transition: all 200ms ease; cursor: pointer; }
.contact-pref__option input[type="radio"]:checked + .contact-pref__btn { border-color: var(--primary); color: var(--primary); background: rgba(236,122,8,0.08); box-shadow: 0 0 0 3px rgba(236,122,8,0.12); }
.contact-pref__btn:hover { border-color: rgba(236,122,8,0.4); color: var(--white); }

.whatsapp-field { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 350ms ease, opacity 300ms ease, margin 300ms ease; margin-top: 0; }
.whatsapp-field--visible { max-height: 100px; opacity: 1; margin-top: 0; }

.rumbo-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(236,122,8,0.4);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  white-space: nowrap;
  z-index: 999;
  pointer-events: none;
  animation: fade-up 200ms ease both;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.rumbo-tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(236,122,8,0.4);
}
.form-status--game { display: block; background: rgba(0,0,0,0.6); border: 1px solid rgba(236,122,8,0.4); border-radius: var(--radius-md); padding: 1rem 1.25rem; min-height: 60px; position: relative; overflow: hidden; box-shadow: 0 0 20px rgba(236,122,8,0.15), inset 0 0 30px rgba(0,0,0,0.3); }
.form-status--game::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px); pointer-events: none; }
@keyframes confeti-caer { 0% { transform: translateY(0) rotate(0deg); opacity: 1; } 100% { transform: translateY(80px) rotate(360deg); opacity: 0; } }

.squad__founder {
  margin-top: 3rem;
}

.squad__founder-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.squad__founder-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
}

.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 250ms, transform 250ms, box-shadow 250ms;
}

.founder-card:hover {
  border-color: rgba(236,122,8,0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.founder-card__image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.founder-card__placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-title);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.founder-card__name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.founder-card__role {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.founder-card__text {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 0.95rem;
}

.captcha-group {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

/* Checkbox de privacidad */
.form-check {
  margin-top: 0.5rem;
}

.form-check__label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  cursor: pointer;
}

.form-check__label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-check__label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Lista de misiones del footer en 2 columnas para escritorio */
.footer__list--missions {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  column-gap: 2rem;
  row-gap: 0.75rem;
}

@media (min-width: 1025px) {
 
  /* Menú de escritorio: mostrar el botón de login dentro del nav */
  .nav__login--desktop {
    display: flex;
    align-items: center;
  }
 
  /* Ocultar el botón de login del lado derecho del header en escritorio */
  .header__login--mobile {
    display: none;
  }
 
  /* Ocultar hamburguesa en escritorio */
  .header__toggle {
    display: none;
  }
 
  /* Ocultar zona derecha móvil */
  .header__mobile-right {
    display: none;
  }
 
  /* Layout del header en escritorio */
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
 
  /* Logo en escritorio */
  .logo__img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }
 
  /* Menú centrado con flex */
  .header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .nav__list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
  }
}
 
/* ─────────────────────────────────────────────────────────────
   TABLET (768px – 1024px)
───────────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
 
  /* Ocultar login y hamburguesa del lado derecho */
  .header__login--mobile,
  .header__mobile-right {
    display: none;
  }
 
  /* Botón login del nav visible */
  .nav__login--desktop {
    display: flex;
    align-items: center;
  }
 
  /* Hamburguesa oculta en tablet horizontal */
  .header__toggle {
    display: none;
  }
 
  /* Header layout */
  .header__inner {
    gap: 1.5rem;
  }
 
  /* Logo en tablet */
  .logo__img {
    height: 48px;
  }
 
  /* Nav en tablet */
  .header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .nav__list {
    gap: 0.5rem;
  }
 
  .nav__link {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
 
  /* Contenedor más ajustado */
  .container {
    padding: 0 1.5rem;
  }
 
  /* Secciones: reducir padding vertical */
  .missions,
  .manifesto,
  .problem,
  .squad,
  .faq,
  .cta-final,
  .contact {
    padding: 4.5rem 0;
  }
 
  /* Grillas: pasar a 2 columnas */
  .missions__roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  /* Portal CTA, Contacto, Problema-Solución, Squad MV y Footer: 1 columna */
  .portal-cta__inner,
  .contact__inner,
  .problem__solution,
  .squad__mv,
  .footer__inner {
    grid-template-columns: 1fr;
  }
 
  /* Footer lista misiones: 1 columna en tablet */
  .footer__list--missions {
    grid-template-columns: 1fr;
  }
 
  /* Founder card en tablet: columna */
  .founder-card {
    grid-template-columns: 1fr;
  }
 
  .founder-card__placeholder,
  .founder-card__image img {
    min-height: 240px;
    max-height: 280px;
  }
 
  /* Hero: reducir padding inferior */
  .hero__content {
    padding: 2rem 0 3rem;
  }
 
  /* Preview modules: 1 columna */
  .preview__modules {
    grid-template-columns: 1fr;
  }
}
 
/* ─────────────────────────────────────────────────────────────
   CELULAR GRANDE (481px – 767px)
───────────────────────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 767px) {
 
  /* Contenedor con padding lateral cómodo */
  .container {
    padding: 0 1.25rem;
  }
 
  /* Header móvil */
  .header {
    height: 68px;
  }
 
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
  }
 
  /* Logo ajustado */
  .logo__img {
    height: 40px;
    width: auto;
  }
 
  /* Zona derecha del header: botón + hamburguesa */
  .header__mobile-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }
 
  .header__login--mobile {
    display: inline-flex;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    white-space: nowrap;
  }
 
  .header__toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
 
  /* Ocultar login del nav y botón desktop */
  .nav__login--desktop,
  .nav__sep,
  .nav__login-area {
    display: none;
  }
 
  /* Menú desplegable */
  .header__nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    padding: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }
 
  .header__nav.header__nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
 
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }
 
  .nav__link {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
  }
 
  .nav__cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.4rem;
  }
 
  /* Secciones: reducir padding vertical */
  .missions,
  .manifesto,
  .problem,
  .squad,
  .faq,
  .cta-final,
  .contact {
    padding: 4rem 0;
  }
 
  /* Grillas: 2 columnas en celular grande */
  .missions__roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  /* Grillas a 1 columna */
  .portal-cta__inner,
  .contact__inner,
  .problem__solution,
  .squad__mv,
  .footer__inner {
    grid-template-columns: 1fr;
  }
 
  /* Acciones hero y CTA en columna */
  .hero__actions,
  .cta-final__actions,
  .portal-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
 
  /* Founder card: columna */
  .founder-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
 
  .founder-card__placeholder,
  .founder-card__image img {
    min-height: 220px;
    max-height: 260px;
  }
 
  /* Footer en columna */
  .footer__list--missions {
    grid-template-columns: 1fr;
  }
 
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
 
  /* Preview modules */
  .preview__modules {
    grid-template-columns: 1fr;
  }
 
  /* Estadísticas del hero en wrap */
  .hero__stats {
    gap: 1.25rem;
  }
 
  /* Modal: padding reducido */
  .modal {
    padding: 1.5rem 1.25rem;
  }
}
 
/* ─────────────────────────────────────────────────────────────
   CELULAR PEQUEÑO (hasta 480px)
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
 
  /* Contenedor ajustado */
  .container {
    padding: 0 1rem;
  }
 
  /* Header compacto */
  .header {
    height: 64px;
  }
 
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
  }
 
  /* Logo pequeño en móvil */
  .logo__img {
    height: 34px;
    width: auto;
  }
 
  /* Zona derecha del header */
  .header__mobile-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
 
  /* Botón login móvil más compacto */
  .header__login--mobile {
    display: inline-flex;
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    white-space: nowrap;
  }
 
  /* Mostrar hamburguesa */
  .header__toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
 
  /* Ocultar elementos de nav no necesarios */
  .nav__login--desktop,
  .nav__sep,
  .nav__login-area {
    display: none;
  }
 
  /* Menú desplegable */
  .header__nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.5);
    padding: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 200;
  }
 
  .header__nav.header__nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
 
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
 
  .nav__link {
    display: block;
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    font-size: 0.88rem;
  }
 
  .nav__cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.4rem;
  }
 
  /* Secciones: reducir padding vertical */
  .missions,
  .manifesto,
  .problem,
  .squad,
  .faq,
  .cta-final,
  .contact,
  .portal-cta {
    padding: 3rem 0;
  }
 
  /* Todas las grillas a 1 columna */
  .missions__roadmap,
  .problem__grid,
  .values__grid,
  .preview__modules,
  .portal-cta__inner,
  .contact__inner,
  .problem__solution,
  .squad__mv,
  .footer__inner,
  .footer__list--missions {
    grid-template-columns: 1fr;
  }
 
  /* Acciones en columna */
  .hero__actions,
  .cta-final__actions,
  .portal-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
 
  /* Botones a ancho completo */
  .hero__actions .btn,
  .cta-final__actions .btn,
  .portal-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
 
  /* Hero: stats en columna o con menos gap */
  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
 
  .stat__divider {
    display: none;
  }
 
  /* Founder card en columna */
  .founder-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
 
  .founder-card__placeholder,
  .founder-card__image img {
    min-height: 200px;
    max-height: 240px;
  }
 
  .founder-card__content {
    text-align: left;
  }
 
  /* Título del fundador más pequeño */
  .founder-card__name {
    font-size: 1.2rem;
  }
 
  /* Squad MV en 1 columna */
  .squad__mv {
    grid-template-columns: 1fr;
  }
 
  /* Footer: pie de página en columna */
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
 
  /* Formulario de contacto */
  .contact__form-wrapper {
    padding: 1.5rem 1rem;
  }
 
  /* Preferencias de contacto en columna */
  .contact-pref__group {
    flex-direction: column;
  }
 
  .contact-pref__btn {
    width: 100%;
    justify-content: center;
  }
 
  /* FAQ: padding ajustado */
  .faq__question {
    padding: 1rem 1.1rem;
    font-size: 0.88rem;
  }
 
  .faq__answer {
    padding: 0 1.1rem 1rem;
    font-size: 0.88rem;
  }
 
  /* Modal: padding reducido */
  .modal {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }
 
  .modal__title {
    font-size: 1.1rem;
  }
 
  /* Portal CTA preview: ocultar en móvil pequeño para ahorrar espacio */
  .portal-preview {
    display: none;
  }
 
  /* Sección header y subtítulo */
  .section-header {
    margin-bottom: 2rem;
  }
 
  .section-subtitle {
    font-size: 0.95rem;
  }
 
  /* Texto de manifesto */
  .manifesto__body {
    font-size: 0.95rem;
  }
}
  
/* ─── PARCHE: sidebar mobile – botón Cerrar sesión ───────────────────
    Corrige la regla display:none !important de portal.css que impedía
    mostrar el botón en mobile, y mejora el footer del sidebar para que
    no quede tapado por la barra del navegador.
─────────────────────────────────────────────────────────────────── */
 /* 1 · Ocultar en desktop SIN !important (permite sobreescribirse en mobile) */
    .sidebar__logout.sidebar__logout--mobile {
      display: none;
    }

    /* 2 & 4 · Mobile: mostrar y estilizar el botón con alta especificidad */
    @media (max-width: 900px) {
      .sidebar__logout.sidebar__logout--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        width: 100%;
        min-height: 44px;
        padding: 0.8rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(236, 122, 8, 0.45);
        background: rgba(236, 122, 8, 0.1);
        color: var(--primary, #ec7a08);
        font-family: var(--font-title, 'Montserrat', sans-serif);
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        cursor: pointer;
        box-shadow: 0 0 18px rgba(236, 122, 8, 0.08);
        transition: color 0.18s, background 0.18s, border-color 0.18s;
      }

      .sidebar__logout.sidebar__logout--mobile:hover,
      .sidebar__logout.sidebar__logout--mobile:focus-visible {
        color: #fff;
        background: rgba(236, 122, 8, 0.18);
        border-color: var(--primary, #ec7a08);
        outline: none;
      }
    }

    /* 3 · Sidebar mobile: altura 100dvh + footer sticky anti-barra-navegador */
    @media (max-width: 900px) {
      .sidebar {
        height: 100dvh;
        max-height: 100dvh;
      }

      .sidebar__nav {
        flex: 1;
        overflow-y: auto;
      }

      .sidebar__footer {
        flex-shrink: 0;
        margin-top: auto;
        position: sticky;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 0.85rem 1rem;
        padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(236, 122, 8, 0.18);
        z-index: 305;
      }
    }

/* =======================================================
   INDEX - CTA EMPRESAS
======================================================= */

.companies-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(135deg, #050505 0%, #111 55%, #1a0a00 100%);
  border-top: 1px solid rgba(236,122,8,0.14);
  border-bottom: 1px solid rgba(236,122,8,0.14);
}

.companies-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.companies-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(236,122,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,122,8,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.companies-cta__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(236,122,8,0.22), transparent 65%);
}

.companies-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 4rem;
  align-items: center;
}

.companies-cta__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.companies-cta__title em {
  font-style: normal;
  color: var(--primary);
}

.companies-cta__desc {
  max-width: 650px;
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.companies-cta__features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.companies-cta__panel {
  background: var(--dark-2);
  border: 1px solid rgba(236,122,8,0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(236,122,8,0.08);
  overflow: hidden;
}

.companies-panel__top {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1rem;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.48);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.companies-panel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(236,122,8,.8);
}

.companies-panel__body {
  padding: 1.5rem;
}

.companies-panel__badge {
  display: inline-flex;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  background: rgba(236,122,8,0.12);
  border: 1px solid rgba(236,122,8,0.28);
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.companies-panel__body h3 {
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: .35rem;
}

.companies-panel__body p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}

.companies-panel__steps {
  display: grid;
  gap: .65rem;
}

.companies-step {
  padding: .8rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.48);
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 700;
}

.companies-step--active {
  color: var(--primary);
  border-color: rgba(236,122,8,0.32);
  background: rgba(236,122,8,0.08);
}

/* =======================================================
   EMPRESAS - PÁGINA COLABORADORES RUMBO
======================================================= */

.empresas-page {
  background:
    radial-gradient(circle at top right, rgba(236,122,8,0.08), transparent 32%),
    var(--black);
}

/* Logo específico para empresas.html porque usa logo transparente desde /clases */
.nav__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hero compacto con título en dos colores */
.enterprise-hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-h) + 2.35rem) 0 2.65rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 70% at 82% 20%, rgba(236,122,8,0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 55% at 6% 50%, rgba(236,122,8,0.08) 0%, transparent 55%),
    linear-gradient(135deg, #000 0%, #111 58%, #1a0a00 100%);
  border-bottom: 1px solid rgba(236,122,8,0.14);
}

.enterprise-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.enterprise-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(236,122,8,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,122,8,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.92), transparent 96%);
}

.enterprise-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .9;
}

.enterprise-hero__orb--1 {
  width: 460px;
  height: 460px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(236,122,8,0.22), transparent 65%);
}

.enterprise-hero__orb--2 {
  width: 300px;
  height: 300px;
  left: -110px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(236,122,8,0.10), transparent 65%);
}

.enterprise-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: left;
}

.enterprise-hero__content--compact {
  margin: 0 auto;
}

.enterprise-hero__content .hero__badge {
  margin-left: 0;
  margin-right: 0;
}

.enterprise-hero__title {
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--white);
}

.enterprise-hero__title--compact {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.enterprise-hero__title em {
  font-style: normal;
  color: var(--primary);
}

.enterprise-hero__text {
  color: rgba(255,255,255,0.66);
  line-height: 1.7;
}

.enterprise-hero__text--lead {
  max-width: 590px;
  margin: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,0.66);
}

/* Sección formulario */
.enterprise-form-section {
  position: relative;
  padding: 4rem 0 6rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(236,122,8,0.08), transparent 28%),
    #111;
}

.enterprise-form-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.55fr);
  gap: 1.8rem;
  align-items: start;
}

.enterprise-info-card,
.enterprise-form-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.38);
}

.enterprise-info-card {
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  overflow: hidden;
}

.enterprise-info-card--compact {
  max-width: 100%;
}

.enterprise-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236,122,8,0.13), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}

.enterprise-info-card > * {
  position: relative;
  z-index: 1;
}

.enterprise-info-card__title {
  font-family: var(--font-title);
  font-weight: 850;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.enterprise-info-card__text {
  color: rgba(255,255,255,0.56);
  line-height: 1.6;
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.enterprise-benefits {
  display: grid;
  gap: 0.65rem;
}

.enterprise-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.78rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.065);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.enterprise-benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(236,122,8,0.28);
  background: rgba(236,122,8,0.06);
}

.enterprise-benefit__icon {
  font-size: 1.05rem;
  line-height: 1.1;
}

.enterprise-benefit h3 {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.enterprise-benefit p {
  color: rgba(255,255,255,0.50);
  font-size: 0.78rem;
  line-height: 1.48;
}

.enterprise-mini-panel {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(236,122,8,0.18);
  background: rgba(236,122,8,0.055);
}

.enterprise-mini-panel__label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.enterprise-mini-panel strong {
  display: block;
  font-family: var(--font-title);
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.enterprise-mini-panel p {
  color: rgba(255,255,255,0.48);
  font-size: 0.74rem;
  line-height: 1.45;
}

/* Card formulario */
.enterprise-form-card {
  padding: 2.25rem;
}

.enterprise-form-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.enterprise-form-card__header h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: .6rem;
}

.enterprise-form-card__header p {
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

.enterprise-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.enterprise-field--full {
  grid-column: 1 / -1;
}

/* CAPTCHA */
#empresa-recaptcha {
  display: flex;
  justify-content: center;
}

/* Mensajes formulario */
#empresaFormMessage {
  min-height: 0;
}

#empresaFormMessage:not(:empty) {
  display: block;
}

.form-status--info {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.72);
}

.form-status--success {
  display: block;
  background: rgba(46,125,50,0.15);
  border: 1px solid rgba(46,125,50,0.4);
  color: #81c784;
}

.form-status--error {
  display: block;
  background: rgba(198,40,40,0.15);
  border: 1px solid rgba(198,40,40,0.4);
  color: #ef9a9a;
}

/* Footer simple para empresas.html */
.footer--simple {
  padding: 1.5rem 0;
}

.footer--simple .footer__bottom-inner {
  border-top: none;
}

/* Responsive empresas */
@media (max-width: 1024px) {
  .companies-cta__inner,
  .enterprise-form-grid {
    grid-template-columns: 1fr;
  }

  .companies-cta__panel {
    max-width: 520px;
  }

  .enterprise-info-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .nav__logo {
    height: 42px;
  }

  .companies-cta {
    padding: 4rem 0;
  }

  .companies-cta__panel {
    display: none;
  }

  .enterprise-hero {
    padding: calc(var(--header-h) + 2rem) 0 2.2rem;
  }

  .enterprise-hero__title--compact {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .enterprise-form-section {
    padding: 3rem 0 4rem;
  }

  .enterprise-form-card,
  .enterprise-info-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
  }

  .enterprise-form-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav__logo {
    height: 36px;
  }

  .enterprise-hero {
    padding: calc(64px + 1.6rem) 0 2rem;
  }

  .enterprise-hero__text--lead {
    font-size: .96rem;
  }

  .enterprise-benefit {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   RESPONSIVE FIX - SECCIÓN EMPRESAS LANDING
======================================================= */

@media (max-width: 767px) {
  .companies-cta {
    padding: 3.5rem 0 4rem;
  }

  .companies-cta__inner {
    display: block;
  }

  .companies-cta__content {
    max-width: 100%;
  }

  .companies-cta__title {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }

  .companies-cta__desc {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .companies-cta__features {
    gap: 0.65rem;
    margin-bottom: 1.6rem;
  }

  .companies-cta__features .portal-feat {
    font-size: 0.96rem;
    line-height: 1.45;
    align-items: flex-start;
  }

  .companies-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  /* En mobile este panel solo decora, así que se oculta para evitar que se rompa */
  .companies-cta__panel {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .companies-cta__title {
    font-size: 2.15rem;
  }

  .companies-cta__desc {
    font-size: 0.96rem;
  }

  .companies-cta__features .portal-feat {
    font-size: 0.9rem;
  }
}