/*
  ZEM Abogadas — Elizabeth / Derecho Deportivo page styles (V3)
  Scoped to this page only — nothing here touches tokens.css / base.css /
  home.css, so the homepage is unaffected.

  V3: genuine structural recomposition, not a color pass. Most sections are
  now dark/immersive with distinct compositions (editorial portrait band,
  full-bleed tactical board, dossier file list, pitch-track methodology).
  Light sections are the exception, kept only where legal/credential text
  needs maximum readability.
*/
:root {
  /* pitch-cyan is ZEM's own icy-blue/light-teal logo tone (--zem-logo-ice
     family), reused here for tactical paths, active nodes and interactive
     accents — not an unrelated brand color. */
  --pitch-cyan: #5fd6de;
}

/* ===========================================================
   HERO — tightened on mobile, atmosphere strengthened
   =========================================================== */
.sports-hero {
  overflow: hidden;
  background: radial-gradient(120% 130% at 85% 0%, var(--zem-teal) 0%, var(--zem-teal-dark) 55%, var(--zem-navy) 100%);
  padding-block: calc(var(--space-7) + 0.5rem) var(--space-6);
}

@media (min-width: 900px) {
  .sports-hero {
    padding-block: calc(var(--space-10) + 1.5rem) var(--space-9);
  }
}

.stadium-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(38rem 22rem at 12% -10%, rgba(211, 230, 237, 0.18), transparent 60%),
    radial-gradient(30rem 20rem at 100% 10%, rgba(95, 214, 222, 0.14), transparent 65%),
    radial-gradient(26rem 18rem at 60% 110%, rgba(76, 103, 112, 0.28), transparent 60%);
}

/* ---------- Pitch formation graphic ---------- */
.pitch-formation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}

.pitch-formation .tf-outline {
  stroke: rgba(211, 230, 237, 0.4);
  stroke-width: 1.6;
  fill: none;
}

.pitch-formation .tf-outline--center {
  stroke: rgba(211, 230, 237, 0.46);
}

.pitch-formation circle.tf-node {
  fill: var(--zem-logo-ice);
  opacity: 0.9;
}

.pitch-formation circle.tf-node--cyan {
  fill: var(--pitch-cyan);
}

.pitch-formation line.tf-link,
.pitch-formation path.tf-link {
  stroke: var(--zem-logo-ice);
  stroke-width: 1.3;
  opacity: 0.55;
  fill: none;
}

.pitch-formation .tf-outline,
.pitch-formation .tf-link {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: pitch-draw 1.8s var(--ease-out-expo) forwards;
}

.pitch-formation .tf-outline--center {
  animation-delay: 120ms;
}

.pitch-formation .tf-link {
  animation-duration: 1.2s;
  animation-delay: 500ms;
}

.pitch-formation circle.tf-node {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: pitch-node-in 500ms var(--ease-out-expo) forwards;
  animation-delay: 900ms;
}

@keyframes pitch-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pitch-node-in {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 0.9;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pitch-formation .tf-outline,
  .pitch-formation .tf-link {
    stroke-dashoffset: 0;
    animation: none;
  }
  .pitch-formation circle.tf-node {
    opacity: 0.9;
    transform: none;
    animation: none;
  }
}

.hero-trajectory {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  pointer-events: none;
}

.hero-trajectory path {
  fill: none;
  stroke: var(--pitch-cyan);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: pitch-draw 1.6s var(--ease-out-expo) forwards;
  animation-delay: 1.3s;
}

.hero-trajectory circle {
  fill: var(--pitch-cyan);
  opacity: 0;
  animation: pitch-node-in 400ms ease forwards;
  animation-delay: 2.7s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-trajectory path {
    stroke-dashoffset: 0;
    animation: none;
  }
  .hero-trajectory circle {
    opacity: 1;
    animation: none;
  }
}

.sports-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (max-width: 900px) {
  .sports-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.football-hero__nametag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
  .football-hero__nametag {
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
  }
}

.football-hero__nametag strong {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--zem-white);
  font-size: var(--fs-sm);
}

.football-hero__nametag span {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pitch-cyan);
}

.football-hero__nametag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pitch-cyan);
  box-shadow: 0 0 0 4px rgba(95, 214, 222, 0.18);
}

.sports-hero__title {
  margin-bottom: var(--space-3);
}

@media (min-width: 900px) {
  .sports-hero__title {
    margin-bottom: var(--space-4);
  }
}

.sports-hero__title .reveal-line > span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 5.5vw, 4.25rem);
  line-height: 1.03;
  color: var(--zem-white);
}

.sports-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  max-width: 34rem;
  margin-bottom: var(--space-4);
}

@media (min-width: 900px) {
  .sports-hero__subtitle {
    font-size: var(--fs-md);
    margin-bottom: var(--space-5);
  }
}

/* ---------- Portrait ---------- */
.football-hero__portrait-wrap {
  position: relative;
}

.football-hero__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  max-height: 34vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: portrait-in 900ms var(--ease-out-expo) forwards;
  animation-delay: 500ms;
}

@keyframes portrait-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .football-hero__frame {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (min-width: 900px) {
  .football-hero__frame {
    max-height: 56vh;
  }
}

.football-hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.03);
}

.football-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(58, 79, 86, 0) 38%, rgba(58, 79, 86, 0.6) 100%),
    linear-gradient(0deg, var(--zem-teal-dark) 0%, transparent 24%),
    linear-gradient(90deg, rgba(76, 103, 112, 0.24), transparent 45%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.football-hero__frame--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--zem-navy) 0%, var(--zem-teal-dark) 55%, var(--zem-teal) 100%);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: var(--space-5);
}

.football-hero__lower-third {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: rgba(58, 79, 86, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 3px solid var(--pitch-cyan);
  border-radius: var(--radius-sm);
}

@media (min-width: 900px) {
  .football-hero__lower-third {
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
    padding: var(--space-3) var(--space-4);
  }
}

.football-hero__lower-third strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--zem-white);
  font-size: var(--fs-sm);
}

@media (min-width: 900px) {
  .football-hero__lower-third strong {
    font-size: var(--fs-md);
  }
}

.football-hero__lower-third span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--zem-logo-ice);
  letter-spacing: 0.03em;
}

.football-hero__frame-note {
  display: none;
}

@media (min-width: 640px) {
  .football-hero__frame-note {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
  }
}

/* ===========================================================
   TRAJECTORY RAIL (persistent scroll progress, desktop only)
   =========================================================== */
.trajectory-rail {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 50vh;
  z-index: 60;
  pointer-events: none;
  opacity: 0.85;
}

.trajectory-rail svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.trajectory-rail__track {
  fill: none;
  stroke: rgba(15, 23, 42, 0.14);
  stroke-width: 2.5;
}

.trajectory-rail__progress {
  fill: none;
  stroke: var(--zem-teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.trajectory-rail__tick {
  fill: rgba(15, 23, 42, 0.3);
}

.trajectory-rail__ball {
  fill: var(--zem-navy);
  stroke: var(--pitch-cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(95, 214, 222, 0.6));
}

@media (max-width: 1180px) {
  .trajectory-rail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trajectory-rail {
    display: none;
  }
}

/* ===========================================================
   DIVISION NAVIGATION
   =========================================================== */
.division-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-navy-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
}

.division-nav__inner {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  padding-block: var(--space-2);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 900px) {
  .division-nav__inner {
    padding-block: var(--space-3);
  }
}

.division-nav__inner::-webkit-scrollbar {
  display: none;
}

.division-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.division-nav a:hover {
  color: var(--zem-logo-ice);
}

.division-nav a.is-active {
  color: var(--pitch-cyan);
  border-color: var(--pitch-cyan);
}

/* ===========================================================
   SOBRE ELIZABETH — dark editorial portrait band
   (REPLACES the old white two-column intro-grid entirely)
   =========================================================== */
.editorial-portrait {
  position: relative;
  overflow: hidden;
  background: var(--zem-teal-dark);
}

.editorial-portrait__band {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 16rem;
  overflow: hidden;
}

@media (max-width: 700px) {
  .editorial-portrait__band {
    aspect-ratio: 4 / 5;
    min-height: 22rem;
  }
}

.editorial-portrait__band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.75) contrast(1.15) brightness(0.9);
}

/* This rule must stay AFTER the base .editorial-portrait__band img rule above —
   equal specificity means source order decides the winner, and a mobile
   override placed before the base rule gets silently overwritten by it. */
@media (max-width: 700px) {
  .editorial-portrait__band img {
    object-position: center 8%;
  }
}

.editorial-portrait__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--zem-teal-dark) 0%, rgba(58, 79, 86, 0.15) 45%, rgba(58, 79, 86, 0.55) 100%),
    linear-gradient(100deg, rgba(58, 79, 86, 0.75) 0%, rgba(58, 79, 86, 0.1) 55%),
    linear-gradient(200deg, rgba(95, 214, 222, 0.22), transparent 50%);
}

.editorial-portrait__caption {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  z-index: 2;
  max-width: 26rem;
}

@media (min-width: 900px) {
  .editorial-portrait__caption {
    left: var(--space-8);
    bottom: var(--space-7);
  }
}

.editorial-portrait__caption p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--zem-white);
  margin-bottom: 0;
}

.editorial-portrait__body {
  position: relative;
  z-index: 1;
  padding-block: var(--space-7);
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: var(--space-7);
  align-items: start;
}

@media (max-width: 800px) {
  .editorial-portrait__body {
    grid-template-columns: 1fr;
    padding-block: var(--space-6);
  }
}

.editorial-portrait__lead h2 {
  color: var(--zem-white);
  font-size: var(--fs-xl);
}

.profile-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.profile-card__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-sm);
}

.profile-card__row:first-child {
  padding-top: 0;
}

.profile-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-card__label {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.profile-card__value {
  color: var(--zem-white);
  font-weight: 700;
  text-align: right;
}

.profile-card__value--accent {
  color: var(--pitch-cyan);
}

.editorial-portrait__body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-md);
}

.editorial-portrait__body p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
}

/* ===========================================================
   "FUERA DE LA CANCHA" — full-width editorial quote
   =========================================================== */
.pitch-quote {
  background: var(--zem-teal);
  position: relative;
  overflow: hidden;
}

.pitch-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(58, 79, 86, 0.4), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.pitch-quote::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.pitch-quote__inner {
  position: relative;
  max-width: 42rem;
  padding-block: var(--space-7);
}

@media (min-width: 900px) {
  .pitch-quote__inner {
    padding-block: var(--space-9);
  }
}

.pitch-quote__coords {
  display: flex;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

.pitch-quote__statement {
  margin: 0 0 var(--space-6);
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  color: var(--zem-white);
  border-left: 3px solid var(--pitch-cyan);
  padding-left: var(--space-5);
}

.pitch-quote__body {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-md);
  margin-bottom: 0;
}

/* ===========================================================
   "A QUIÉN ASESORA" — full-bleed tactical board (dominant)
   =========================================================== */
.tactical-board {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, var(--zem-teal) 0%, var(--zem-teal-dark) 55%, var(--zem-navy) 100%);
  padding-block: var(--space-7) var(--space-8);
}

.tactical-board .section-heading h2,
.tactical-board .section-eyebrow {
  color: var(--zem-white);
}

.tactical-board .section-eyebrow {
  color: var(--pitch-cyan);
}

.tactical-board__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tactical-board__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 20rem;
  margin-block: var(--space-6);
}

@media (max-width: 760px) {
  .tactical-board__stage {
    aspect-ratio: 4 / 5;
    min-height: 24rem;
  }
}

.tactical-board__stage svg {
  width: 100%;
  height: 100%;
}

.tactical-board__stage .tf-outline {
  stroke: rgba(211, 230, 237, 0.32);
  stroke-width: 1.4;
  fill: none;
}

.tf-node {
  fill: rgba(211, 230, 237, 0.6);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
  cursor: pointer;
  transition: fill 260ms var(--ease-out-expo), r 260ms var(--ease-out-expo), stroke 260ms var(--ease-out-expo);
}

.tf-node.is-active {
  fill: var(--pitch-cyan);
  stroke: var(--zem-white);
  r: 16;
  filter: drop-shadow(0 0 8px rgba(95, 214, 222, 0.75));
}

.tf-node-label {
  fill: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: fill 260ms ease;
}

.tf-node-label.is-active {
  fill: var(--zem-white);
}

.tactical-board__panel {
  display: none;
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 2;
  background: rgba(58, 79, 86, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--pitch-cyan);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

@media (min-width: 760px) {
  .tactical-board__panel {
    left: var(--space-6);
    right: auto;
    bottom: var(--space-6);
    max-width: 24rem;
  }
}

.tactical-board__panel h3 {
  color: var(--zem-white);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}

.tactical-board__panel p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

#board-deportistas:checked ~ .tactical-board__stage #panel-deportistas,
#board-clubes:checked ~ .tactical-board__stage #panel-clubes,
#board-entrenadores:checked ~ .tactical-board__stage #panel-entrenadores,
#board-agentes:checked ~ .tactical-board__stage #panel-agentes,
#board-academias:checked ~ .tactical-board__stage #panel-academias,
#board-organizaciones:checked ~ .tactical-board__stage #panel-organizaciones {
  display: block;
}

.tactical-board__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .tactical-board__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    min-width: 0;
    padding-bottom: var(--space-2);
    scrollbar-width: none;
  }

  .tactical-board__tabs::-webkit-scrollbar {
    display: none;
  }
}

.tactical-board__tab {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.tactical-board__input:focus-visible + .tactical-board__tab {
  outline: 3px solid var(--pitch-cyan);
  outline-offset: 2px;
}

.tactical-board__input:checked + .tactical-board__tab {
  color: var(--zem-navy);
  background: var(--pitch-cyan);
  border-color: var(--pitch-cyan);
}

/* ===========================================================
   SERVICES — dossier file list (dark, expandable)
   =========================================================== */
.dossier-section {
  background: var(--zem-teal-dark);
  position: relative;
}

.dossier-section .section-heading h2,
.dossier-section .section-eyebrow {
  color: var(--zem-white);
}

.dossier-section .section-eyebrow {
  color: var(--pitch-cyan);
}

.dossier-section .section-heading p {
  color: rgba(255, 255, 255, 0.6);
}

.dossier-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--pitch-cyan);
  background: rgba(95, 214, 222, 0.1);
  border: 1px solid rgba(95, 214, 222, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-3);
}

.dossier-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dossier-file {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dossier-file__summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}

.dossier-file__summary::-webkit-details-marker {
  display: none;
}

.dossier-file__summary::marker {
  content: "";
}

.dossier-file__num {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  width: 2rem;
  flex-shrink: 0;
}

.dossier-file__title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--zem-white);
}

.dossier-file__tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pitch-cyan);
  border: 1px solid rgba(95, 214, 222, 0.4);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}

.dossier-file--other .dossier-file__tag {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

.dossier-file__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.5);
  transition: transform var(--transition-base);
}

.dossier-file[open] .dossier-file__chevron {
  transform: rotate(180deg);
}

.dossier-file__body {
  padding: 0 0 var(--space-5) calc(2rem + var(--space-4));
  max-width: 34rem;
}

.dossier-file__body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .dossier-file[open] .dossier-file__body {
    animation: dossier-reveal 260ms var(--ease-out-expo);
  }
}

@keyframes dossier-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .dossier-file__title {
    font-size: var(--fs-sm);
  }
  .dossier-file__body {
    padding-left: calc(1.5rem + var(--space-3));
  }
}

/* ===========================================================
   METHODOLOGY — pitch-track "plan de partido"
   =========================================================== */
.metodologia-dark {
  background: linear-gradient(180deg, var(--zem-teal-dark) 0%, var(--zem-teal) 100%);
  position: relative;
  overflow: hidden;
}

.metodologia-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(95, 214, 222, 0.05) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.metodologia-dark .section-heading h2,
.metodologia-dark .section-eyebrow {
  color: var(--zem-white);
}

.metodologia-dark .section-eyebrow {
  color: var(--pitch-cyan);
}

.metodologia-dark .section-heading p {
  color: rgba(255, 255, 255, 0.6);
}

.metodologia-dark .methodology-track {
  position: relative;
}

.metodologia-dark .methodology-track__line {
  background: rgba(255, 255, 255, 0.14);
}

.metodologia-dark .methodology-list li {
  border-top-color: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.metodologia-dark .methodology-list li:focus-visible {
  outline: 3px solid var(--pitch-cyan);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.metodologia-dark .methodology-list li.is-active {
  border-top-color: var(--pitch-cyan);
}

@media (max-width: 560px) {
  .metodologia-dark .methodology-list li {
    border-top: none;
    border-left-color: rgba(255, 255, 255, 0.14);
  }
  .metodologia-dark .methodology-list li.is-active {
    border-left-color: var(--pitch-cyan);
  }
}

.metodologia-dark .methodology-list h3 {
  color: var(--zem-white);
}

.metodologia-dark .methodology-list p {
  color: rgba(255, 255, 255, 0.6);
}

.metodologia-dark .methodology-list__num {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--zem-navy);
  background: var(--pitch-cyan);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.55rem;
  margin-bottom: var(--space-3);
  transition: background var(--transition-base);
}

.metodologia-dark .methodology-list li.is-active .methodology-list__num {
  background: var(--zem-white);
  color: var(--zem-navy);
}

.metodologia-dark .methodology-list__num::after {
  content: "'";
  color: inherit;
  opacity: 0.6;
}

/* ===========================================================
   CREDENTIALS — polished chips (not dev-facing placeholders)
   =========================================================== */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 980px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

.credentials-grid__item {
  background: var(--zem-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 3px solid var(--zem-teal-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--zem-teal-dark);
  background: var(--zem-lavender-light);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: var(--space-3);
}

.credential-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zem-teal);
}

.credentials-grid__item h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-2);
}

.credentials-grid__item p {
  font-size: var(--fs-sm);
  color: var(--zem-teal-soft);
  margin-bottom: 0;
}

/* ===========================================================
   CONSULTATION CTA
   =========================================================== */
.consult-cta--sports {
  /* Matches the homepage's .consult-cta gradient exactly (base.css) —
     kept as an explicit rule here for clarity/future tuning rather than
     silently relying on the shared default. */
  background: linear-gradient(135deg, var(--zem-teal) 0%, var(--zem-teal-dark) 100%);
}

.consult-cta__calendar-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--pitch-cyan);
}

.consult-cta__calendar-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pitch-cyan);
}

/* ===========================================================
   MOBILE SAFETY NET
   =========================================================== */
@media (max-width: 480px) {
  .whatsapp-float {
    right: var(--space-4);
    bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
  }
}
