/* ==========================================================================
   TalentOS — hoja de estilos
   Colores, tipografía y componentes del sitio. Editá acá los estilos globales.
   ========================================================================== */

:root {
  /* Paleta */
  --bg: #f9fafb;
  --card: #ffffff;
  --ink: #0a1b33;         /* texto principal / azul noche */
  --ink-deep: #0a152d;    /* botones y secciones oscuras */
  --muted: #64748b;       /* texto secundario */
  --faint: #94a3b8;       /* labels, notas */
  --line: #e2e8f0;        /* bordes */
  --line-soft: rgba(226, 232, 240, 0.6);
  --green: #1D9E75;       /* acento */
  --green-light: #5DCAA5;

  /* Radios */
  --r-xl: 48px;
  --r-lg: 40px;
  --r-md: 32px;
  --r-sm: 24px;
  --pill: 9999px;

  /* Sombras */
  --shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 40px 100px -20px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 40px 100px -40px rgba(0, 0, 0, 0.08);

  --maxw: 1400px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }
input, select, button, textarea { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.4px;
  color: var(--ink);
}

.page { width: 100%; padding: 24px 16px 0; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }

/* Etiqueta de sección: "El problema", "Servicios", etc. */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.kicker--muted { color: var(--faint); }
.kicker--mint { color: var(--green-light); }
.kicker .rule { flex: 1; height: 1px; background: var(--line); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 16px 32px;
}
.section-title {
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -1.4px;
}
.section-lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34ch;
}

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--pill);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn--dark { background: var(--ink-deep); color: #fff; }
.btn--dark:hover { background: #132146; color: #fff; transform: scale(1.04); }
.btn--light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn--light:hover { border-color: #cbd5e1; color: var(--ink); }
.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { color: var(--ink); transform: scale(1.04); }

/* --------------------------------------------------------------------------
   Animaciones
   -------------------------------------------------------------------------- */
@keyframes tos-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tos-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tos-mark {
  0%   { opacity: 0; transform: scale(0.82) rotate(-12deg); filter: blur(10px); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
}
@keyframes tos-word {
  0%   { opacity: 0; transform: translateY(14px); letter-spacing: 6px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0; }
}
@keyframes tos-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes tos-halo {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 0.55; }
  100% { opacity: 0.32; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   Intro / splash
   -------------------------------------------------------------------------- */
body.intro-lock { overflow: hidden; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #14213f 0%, #0a152d 45%, #060c1d 100%);
  transition: opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1),
              transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.intro.is-hiding { opacity: 0; transform: scale(1.06); }
.intro__halo {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: var(--pill);
  background: radial-gradient(circle, rgba(93,202,165,0.22) 0%, rgba(139,92,246,0.14) 40%, rgba(6,12,29,0) 70%);
  animation: tos-halo 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro__mark {
  position: relative;
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: tos-mark 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro__word {
  position: relative;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.4px;
  color: #fff;
  animation: tos-word 0.5s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro__word span { color: var(--green-light); }
.intro__rule {
  position: relative;
  width: 180px;
  height: 1px;
  margin: 28px 0;
  background: linear-gradient(90deg, rgba(93,202,165,0) 0%, rgba(93,202,165,0.85) 50%, rgba(93,202,165,0) 100%);
  animation: tos-rule 0.5s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro__tag {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  animation: tos-word 0.45s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  height: 600px;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 45%, #eef2f7 100%);
}
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero__inner {
  position: relative;
  z-index: 20;
  flex: 1;
  padding: 56px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: tos-up 0.8s ease both;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero__eyebrow span { display: block; width: 26px; height: 1px; background: #94a3b8; }
.hero__title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 52ch;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Nav flotante (pill) al pie del hero */
.pillnav-wrap {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: max-content;
  max-width: calc(100% - 32px);
}
.pillnav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.4);
  animation: tos-up 0.8s 0.25s ease both;
}
.pillnav__logo {
  width: 36px;
  height: 36px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.pillnav__logo img { width: 24px; height: 24px; object-fit: contain; }
.pillnav a:not(.pillnav__logo):not(.pillnav__cta) {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--pill);
}
.pillnav a:not(.pillnav__logo):not(.pillnav__cta):hover { color: var(--ink); }
.pillnav__cta {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 8px 18px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pillnav__cta:hover { border-color: #cbd5e1; color: var(--ink); }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  max-width: var(--maxw);
  margin: 40px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: tos-marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.chip {
  position: relative;
  height: 76px;
  width: 230px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s;
}
.chip:hover { border-color: #cbd5e1; color: var(--green); }

/* --------------------------------------------------------------------------
   Cards genéricas
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}
.card--lg { border-radius: var(--r-lg); }

/* Grid de métricas */
.stats {
  max-width: var(--maxw);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.stat { padding: 40px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat__num span { color: var(--green); }
.stat__label { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------------------
   Problema
   -------------------------------------------------------------------------- */
.problema {
  max-width: var(--maxw);
  margin: 16px auto 0;
  padding: 56px 40px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}
.problema h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  margin: 0 0 20px;
}
.problema p { font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 46ch; }
.errors { display: flex; flex-direction: column; gap: 14px; }
.error-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #f9fafb;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--r-sm);
  padding: 20px 24px;
}
.error-item__n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #cbd5e1;
  line-height: 1.2;
}
.error-item h4 { font-size: 14px; font-weight: 600; margin: 0 0 4px; letter-spacing: 0; }
.error-item p { font-size: 13px; line-height: 1.7; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Servicios
   -------------------------------------------------------------------------- */
.services { max-width: var(--maxw); margin: 16px auto 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.service {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.service--dark { background: var(--ink-deep); border: none; box-shadow: none; color: #fff; }
.service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
}
.service--dark .service__tag { color: var(--green-light); }
.service__n {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
}
.service--dark .service__n { color: rgba(255, 255, 255, 0.35); }
.service h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin: 0 0 14px;
}
.service--dark h3 { color: #fff; }
.service > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 28px;
}
.service--dark > p { color: rgba(255, 255, 255, 0.6); }
.service__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.service__list div {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink);
}
.service--dark .service__list div { color: rgba(255, 255, 255, 0.9); }
.service__list span { color: var(--green); }
.service--dark .service__list span { color: var(--green-light); }
.service__foot {
  margin-top: auto;
  border-top: 1px solid #eef2f6;
  padding-top: 24px;
}
.service--dark .service__foot {
  border-top-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.service__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--ink);
}
.service--dark .service__price { color: #fff; }
.service__note { font-size: 12px; color: var(--faint); margin-top: 4px; }
.service--dark .service__note { color: rgba(255, 255, 255, 0.45); }

/* --------------------------------------------------------------------------
   Proceso / Cómo funciona
   -------------------------------------------------------------------------- */
.process { max-width: var(--maxw); margin: 16px auto 0; }
.process__head { padding: 48px 16px 32px; }
.process__head h2 { font-size: clamp(32px, 3.4vw, 48px); margin: 0; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}
.step__n {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 20px;
}
.step__title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13px; line-height: 1.7; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Recomendaciones / testimonios
   -------------------------------------------------------------------------- */
.testi { max-width: var(--maxw); margin: 16px auto 0; }
.testi__head h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  margin: 0;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote__mark { font-family: var(--font-display); font-size: 34px; line-height: 1; color: #e2e8f0; }
.quote blockquote { margin: 0; font-size: 15px; line-height: 1.8; color: var(--ink); }
.quote figcaption { margin-top: auto; padding-top: 22px; border-top: 1px solid #eef2f6; }
.quote__name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.quote__role { font-size: 12.5px; color: var(--faint); margin-top: 3px; }

/* --------------------------------------------------------------------------
   Club Talentos
   -------------------------------------------------------------------------- */
.club {
  max-width: var(--maxw);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.club__info {
  background: var(--ink-deep);
  border-radius: var(--r-lg);
  padding: 56px 44px;
  color: #fff;
}
.club__info h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1;
  margin: 0 0 18px;
  color: #fff;
}
.club__info > p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px;
  max-width: 44ch;
}
.club__points { display: flex; flex-direction: column; gap: 18px; }
.club__point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.club__point:last-child { padding-bottom: 0; border-bottom: none; }
.club__point > span { color: var(--green-light); }
.club__point strong { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 4px; }
.club__point em { font-style: normal; font-size: 12.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); }

.club__form-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 56px 44px;
}
.club__form-card h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin: 0 0 8px;
}
.club__form-card > p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 32px;
}

/* --------------------------------------------------------------------------
   Formularios
   -------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 18px; }
.empresa-fields, .profesional-fields { display: flex; flex-direction: column; gap: 18px; }
.field { display: block; }
.field__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.input, .select, .textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.input, .select { border-radius: var(--pill); padding: 12px 20px; }
.select { appearance: none; }
.textarea { border-radius: var(--r-sm); padding: 16px 20px; line-height: 1.7; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--green); }

.form-ok {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--green);
  padding: 20px 0;
}

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
}
.checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green); }

/* Selector Empresa / Profesional (recomendacion.html) */
.toggle { display: flex; gap: 8px; flex-wrap: wrap; }
.toggle button {
  border-radius: var(--pill);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: #f9fafb;
  color: var(--muted);
  border: 1px solid var(--line);
}
.toggle button[aria-pressed="true"] {
  background: var(--ink-deep);
  color: #fff;
  border-color: var(--ink-deep);
}

/* --------------------------------------------------------------------------
   Contacto
   -------------------------------------------------------------------------- */
.contacto {
  max-width: var(--maxw);
  margin: 16px auto 0;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 96px 40px;
  text-align: center;
}
.contacto h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 20ch;
  text-wrap: balance;
}
.contacto p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 56ch;
}
.contacto__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.contacto__sign { font-size: 12.5px; color: var(--faint); margin: 32px 0 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  max-width: var(--maxw);
  margin: 16px auto 0;
  background: var(--ink-deep);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { width: 28px; height: 28px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; }
.footer__logo span { font-size: 14px; font-weight: 600; color: #fff; }
.footer__copy { font-size: 11.5px; color: rgba(255, 255, 255, 0.45); }
.footer__links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.footer__links a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  font-weight: 500;
}
.footer__links a:hover { color: var(--green-light); }

.spacer { height: 32px; }

/* --------------------------------------------------------------------------
   Cabecera de subpáginas (Club Talentos, etc.)
   -------------------------------------------------------------------------- */
.subpage-nav {
  max-width: var(--maxw);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 4px 24px;
}
.subpage-nav__logo { display: flex; align-items: center; gap: 9px; }
.subpage-nav__logo img { width: 24px; height: 24px; object-fit: contain; }
.subpage-nav__logo span { font-size: 14px; font-weight: 600; color: var(--ink); }
.subpage-nav__back { font-size: 13px; font-weight: 600; color: var(--muted); }
.subpage-nav__back:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   Página "El sistema" — usa .section-head, .kicker, cards como la home
   -------------------------------------------------------------------------- */
.sistema-page { max-width: var(--maxw); margin: 0 auto; }

.sistema-intro {
  max-width: 62ch;
  padding: 0 16px 8px;
}
.sistema-intro p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}
.sistema-intro strong { color: var(--ink); font-weight: 600; }

/* Lista de funciones: el texto manda, la captura es chica y secundaria */
.feat-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feat {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 36px;
  align-items: center;
}
.feat__n {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--green);
  margin-bottom: 10px;
}
.feat__body h3 { font-size: 19px; letter-spacing: -0.4px; margin: 0 0 9px; }
.feat__body p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }
.feat__shot {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px -16px rgba(10, 21, 45, 0.18);
  display: block;
}
.feat__shot img { width: 100%; height: auto; display: block; }

/* Bloque destacado: el diferencial (mismo estilo que las secciones oscuras de la home) */
.callout {
  max-width: var(--maxw);
  margin: 16px auto 0;
  background: var(--ink-deep);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  color: #fff;
}
.callout .kicker { color: var(--green-light); }
.callout h2 {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.8px;
  margin: 0 0 14px;
  max-width: 26ch;
}
.callout p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   Página "Dejar una recomendación"
   -------------------------------------------------------------------------- */
.rec-page {
  min-height: 100vh;
  background: var(--bg);
  padding: 40px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.rec-shell { width: 100%; max-width: 760px; animation: tos-up 0.7s ease both; }
.rec-hero {
  background: linear-gradient(160deg, #14213f 0%, #0a152d 45%, #060c1d 100%);
  border-radius: var(--r-lg);
  padding: 56px 44px;
  color: #fff;
  text-align: center;
}
.rec-hero img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto; }
.rec-hero__brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-top: 16px;
}
.rec-hero__brand span { color: var(--green-light); }
.rec-hero__rule {
  width: 150px;
  height: 1px;
  margin: 24px auto;
  background: linear-gradient(90deg, rgba(93,202,165,0) 0%, rgba(93,202,165,0.85) 50%, rgba(93,202,165,0) 100%);
}
.rec-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}
.rec-hero p { font-size: 14.5px; line-height: 1.8; color: rgba(255, 255, 255, 0.6); margin: 0 auto; max-width: 52ch; }
.rec-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 48px 44px;
  margin-top: 16px;
}
.rec-card .form-ok { text-align: center; padding: 32px 0; }
.rec-card .form-ok__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--green);
  margin-bottom: 12px;
}
.rec-card .form-ok__body { font-size: 14.5px; line-height: 1.8; color: var(--muted); }
.rec-back { text-align: center; font-size: 12px; color: var(--faint); margin-top: 24px; }

.is-hidden { display: none !important; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero { height: auto; min-height: 560px; padding-bottom: 96px; }
  .hero__inner { padding: 40px 24px 0; }
  .problema, .service, .club__info, .club__form-card { padding: 40px 28px; }
  .contacto { padding: 64px 24px; }
  .pillnav { flex-wrap: wrap; justify-content: center; }
  .callout { padding: 40px 26px; }
  .feat {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 26px;
  }
  .feat__shot { max-width: 440px; }
}

@media (max-width: 620px) {
  .page { padding: 16px 12px 0; }
  .hero__title { font-size: 34px; }
  .pillnav a:not(.pillnav__logo):not(.pillnav__cta) { padding: 8px 10px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
}
