/* ═══════════════════════════════════════
   YARDA 20 — inicio.css
   Hoja de estilos EXCLUSIVA de index.html (la página de inicio /
   portafolio personal de Arturo López). Ningún equipo ni temporada
   la usa — esos usan team-ncaa(-green).css / temporada-nike.css.
   Colores propios: naranja + teal (no los del equipo, verde/naranja).
   Orden del archivo: Variables · Reset · Nav (.y20-nav) · Hero ·
   Secciones genéricas · Sección "Próximos partidos" (ver script en
   index.html) · Servicios · Portafolio · CTA final · Footer · Responsive.
═══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --orange:  #F15A22;
  --teal:    #00C4B4;
  --bg:      #050E0D;
  --bg2:     #091514;
  --bg3:     #0F1F1E;
  --line:    rgba(255,255,255,0.07);
  --muted:   #6B8C8A;
  --white:   #F2FAF9;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── WRAP ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.y20-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: rgba(5,14,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.y20-nav.is-scrolled {
  height: 48px;
  background: rgba(3,9,8,0.98);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.y20-nav.is-scrolled .y20-logo-text { font-size: 1.3rem; }

.y20-logo { display: flex; align-items: center; }
.y20-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.y20-logo-text span { color: var(--orange); }

.y20-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.y20-menu > li { position: relative; }
.y20-social-item { display: flex; align-items: center; gap: 2px; margin-left: 6px; padding-left: 10px; border-left: 1px solid var(--line); }
.y20-social-item .y20-social-link { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; padding: 0; border-radius: 50%; color: var(--muted); transition: color 0.15s, background 0.15s; }
.y20-social-item .y20-social-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.y20-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.y20-menu > li > a:hover,
.y20-menu > li.inicio > a { color: var(--white); }
.y20-menu > li > a:hover { background: rgba(255,255,255,0.04); }

.season-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid rgba(0,196,180,0.3);
  color: var(--teal);
  border-radius: 3px;
}

.y20-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}

/* Dropdown */
.y20-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
}
#infantil-item:hover .y20-dropdown,
#infantil-item:focus-within .y20-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
#infantil-item:hover .y20-arrow { transform: rotate(180deg); }

.y20-dropdown-header {
  padding: 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.y20-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.12s;
}
.y20-dropdown > a:last-child { border-bottom: none; }
.y20-dropdown > a:hover { background: rgba(0,196,180,0.05); }
.y20-dropdown-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.y20-dropdown-sub {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
}
.y20-dropdown-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(0,196,180,0.3);
  color: var(--teal);
  border-radius: 3px;
  white-space: nowrap;
}

/* Burger */
.y20-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.y20-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  overflow: hidden;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5,14,13,0.55) 0%,
    rgba(5,14,13,0.45) 50%,
    rgba(5,14,13,0.85) 100%
  );
}

.hero-line {
  position: absolute;
  left: 48px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(241,90,34,0.4), transparent);
  z-index: 2;
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  max-width: 760px;
}

.hero-overline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(242,250,249,0.75);
  line-height: 1.65;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  border-top: 1px solid var(--line);
  background: rgba(9,21,20,0.7);
  backdrop-filter: blur(8px);
}
.stat {
  flex: 1;
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dots .dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* Arrows */
.hero-arrows {
  position: absolute;
  bottom: 68px;
  right: 48px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.harrow {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s;
}
.harrow:hover {
  background: rgba(241,90,34,0.15);
  border-color: rgba(241,90,34,0.4);
}

/* ══════════════════════════════════════
   BOTONES
══════════════════════════════════════ */
.btn {
  position: relative;
  overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 28px;
  display: inline-block;
  border-radius: 3px;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg); transition: left 0.5s ease; pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  border-color: var(--orange);
  background: rgba(241,90,34,0.08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   SECCIONES GENERALES
══════════════════════════════════════ */
.section {
  padding: 88px 0;
  background: var(--bg);
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--orange); }

.section-body {
  font-size: 1rem;
  color: rgba(242,250,249,0.65);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 52px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   SERVICIOS (cobertura deportiva)
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.svc {
  background: var(--bg2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.svc:hover { border-color: rgba(241,90,34,0.3); }

.svc-icon { font-size: 2rem; }

.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-list li {
  font-size: 0.88rem;
  color: rgba(242,250,249,0.7);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

/* ══════════════════════════════════════
   CTA FINAL
══════════════════════════════════════ */
.cta-final {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  text-align: center;
}

.big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.big-text em {
  font-style: normal;
  color: var(--orange);
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  padding: 32px 24px;
  background: #000;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
footer .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
footer .logo span { color: var(--orange); }

/* ══════════════════════════════════════
   AGENCY BAR — franja superior fija
══════════════════════════════════════ */
.agency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: 34px; background: #000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; border-bottom: 1px solid var(--line);
}
.agency-bar-msg {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.agency-bar-msg strong { color: var(--white); }
.agency-bar-cta {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); text-decoration: none;
  flex-shrink: 0; margin-left: 12px;
}
.agency-bar-cta:hover { color: var(--white); }
.y20-nav { top: 34px; }

/* ══════════════════════════════════════
   HERO AGENCIA — home personal
══════════════════════════════════════ */
.hero-agency {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 168px 0 96px;
  overflow: hidden;
}
.ha-bg-photo {
  position: absolute; inset: 0; z-index: 0;
  background: url('imag/fondo-pagina-web-opt.jpg') center/cover no-repeat;
}
.hero-agency::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5,14,13,0.35) 0%, rgba(5,14,13,0.25) 35%, rgba(5,14,13,0.65) 72%, rgba(5,14,13,0.95) 100%),
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(241,90,34,0.12) 0%, transparent 60%);
}
.ha-eyebrow {
  position: relative; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.ha-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); }
.ha-title {
  position: relative; z-index: 2;
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.3rem, 9vw, 8.5rem);
  line-height: 0.92; letter-spacing: 0.005em; margin-bottom: 26px;
  max-width: 100%;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.ha-title em {
  font-style: normal;
  background: linear-gradient(180deg, #ffd9c4 0%, var(--orange) 45%, #b8300a 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 30px rgba(241,90,34,0.45));
}
.ha-sub {
  position: relative; z-index: 2;
  font-size: 1.1rem; color: rgba(242,250,249,0.85); max-width: 640px;
  line-height: 1.65; margin-bottom: 38px; font-weight: 300;
}
.ha-ctas { position: relative; z-index: 2; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .agency-bar-msg span.long { display: none; }
  .hero-agency { padding: 150px 0 56px; min-height: 92vh; }
  .ha-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; margin-bottom: 14px; }
  .ha-title { margin-bottom: 18px; }
  .ha-sub { font-size: 0.95rem; margin-bottom: 28px; }
}

/* ══════════════════════════════════════
   PRÓXIMOS PARTIDOS — tiles con foto, estilo Nike
══════════════════════════════════════ */
.games-head { margin-bottom: 24px; }
.games-eyebrow {
  display:block; font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--muted); margin-bottom:10px;
}
.games-title {
  font-family:'Bebas Neue',sans-serif; font-size:clamp(1.8rem,3.2vw,2.6rem); line-height:1;
  letter-spacing:0; color:var(--white);
}
.games-title span { color:var(--orange); }

.games-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.games-strip::-webkit-scrollbar { height: 6px; }
.games-strip::-webkit-scrollbar-thumb { background: var(--bg3); }

.game-card {
  position: relative;
  flex: 1 1 240px;
  min-width: 220px;
  aspect-ratio: 3/4;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--bg2);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.game-card:hover { transform: translateY(-4px); }
.game-card-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-color: var(--bg3);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.game-card:hover .game-card-photo { transform: scale(1.08); }
.game-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(3,8,7,0.95) 0%, rgba(3,8,7,0.55) 42%, rgba(3,8,7,0.05) 62%, rgba(3,8,7,0.3) 100%);
}
.game-card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px; background: rgba(5,14,13,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(241,90,34,0.4);
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); white-space: nowrap;
}
.game-card-tag.weekend::before { content:''; display:block; width:5px; height:5px; border-radius:50%; background: var(--orange); animation: y20Pulse 1.5s ease infinite; }
.game-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 16px 18px; }
.game-card-cat {
  display: block;
  font-family:'Barlow Condensed',sans-serif; font-size:0.62rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase; color: rgba(242,250,249,0.6); margin-bottom: 6px;
}
.game-card-match {
  font-family:'Bebas Neue',sans-serif; font-size:1.35rem; letter-spacing:0.01em; color:var(--white); line-height:1.05; margin-bottom: 8px;
  transition: color 0.2s;
}
.game-card:hover .game-card-match { color: var(--orange); }
.game-card-match em { font-style:normal; color:var(--muted); font-size:0.75rem; margin:0 5px; }
.game-card-loc {
  display: inline-block;
  font-family:'Barlow Condensed',sans-serif; font-size:0.58rem; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase; color: var(--teal); border: 1px solid rgba(0,196,180,0.35); padding: 3px 9px;
}
.game-card-loc.away { border-color: rgba(241,90,34,0.35); color: var(--orange); }
.game-card-empty-txt {
  font-family:'Barlow Condensed',sans-serif; font-size:0.72rem; font-weight:600;
  letter-spacing:0.08em; color: rgba(242,250,249,0.7);
}
.game-card-loading { display:flex; align-items:center; justify-content:center; flex: 1 1 100%; aspect-ratio: auto; min-height: 140px; }

@media (max-width:700px) {
  .game-card { flex-basis: 68vw; min-width: 200px; }
}

.ticker { height:34px; background:#000; border-bottom:1px solid rgba(0,196,180,0.15); display:flex; align-items:center; overflow:hidden; position:relative; }
.ticker-label { flex-shrink:0; background:var(--teal); height:100%; display:flex; align-items:center; padding:0 14px; z-index:2; font-family:'Bebas Neue',sans-serif; font-size:0.75rem; letter-spacing:0.2em; color:#000; white-space:nowrap; }
.ticker-track { display:flex; white-space:nowrap; animation:tickerScroll 28s linear infinite; padding-left:28px; }
.ticker-item { display:inline-flex; align-items:center; gap:8px; padding-right:40px; font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--gray-lt,#9BB5B3); }
.ticker-item strong { color:var(--white); }
.ticker-dot { width:4px; height:4px; border-radius:50%; background:var(--teal); flex-shrink:0; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   PORTAFOLIO WEB SHOWCASE
   Naranja = institucional/empresarial · Teal = deportivo
══════════════════════════════════════ */
.port-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card destacada */
.port-featured {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  background: var(--bg3);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
  position: relative;
}
.port-featured:hover { transform: translateY(-2px); }
.port-featured:hover .pb-arrow { color: var(--orange); }

/* Marco de "pantalla" — ya no es mockup de navegador Mac, es placa de transmisión */
.port-browser {
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}
.port-featured .port-browser { border-right: none; }

.port-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: #000;
  flex-shrink: 0;
}

.pb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.pb-dot:nth-child(2) { display: none; }
.pb-dot:nth-child(3) { display: none; }

.pb-url {
  flex: 1;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.62rem;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-arrow {
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0;
  transition: color .2s;
}

.port-browser-screen {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  flex: 1;
  filter: saturate(1.05);
}

.port-featured .port-browser-screen { height: 360px; }

/* Mosaico Yarda 20 — en vez de una sola captura, un collage con fotos
   reales de varias de las páginas que arma la plataforma (Rabbits
   Especial, y demás categorías), para transmitir de un vistazo que es
   un producto con muchas páginas, no un solo sitio. */
.port-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--bg);
  position: relative;
}
.port-mosaic-tile {
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) brightness(0.85);
  transition: filter 0.3s, transform 0.4s;
}
.port-card:hover .port-mosaic-tile { filter: saturate(1.1) brightness(1); transform: scale(1.04); }
.port-mosaic-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(5,14,13,0.55) 0%, transparent 75%);
  pointer-events: none;
}
.port-mosaic-badge span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.port-mosaic-badge span em { font-style: normal; color: var(--orange); }

/* Info lateral */
.port-info {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-left: 1px solid var(--line);
}

.port-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}
.port-tag::before { content:''; display:block; width:16px; height:2px; background: var(--orange); }

.port-proj-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: .02em;
}

.port-proj-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Grid de 3 cards pequeñas — track empresarial */
.port-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px;
}

.port-card.sport-single { border-top-color: var(--teal); }
.port-card.sport-single .pb-dot { background: var(--teal); }
.port-card.sport-single:hover .pb-arrow { color: var(--teal); }
.port-card.sport-single .port-tag { color: var(--teal); }
.port-card.sport-single .port-tag::before { background: var(--teal); }

.port-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  background: var(--bg3);
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.port-card:hover { transform: translateY(-3px); }
.port-card:hover .pb-arrow { color: var(--orange); }

/* Track deportivo — mismo componente, acento teal */
.port-trio.sport .port-card { border-top-color: var(--teal); }
.port-trio.sport .pb-dot { background: var(--teal); }
.port-trio.sport .port-card:hover .pb-arrow { color: var(--teal); }
.port-trio.sport .port-tag { color: var(--teal); }
.port-trio.sport .port-tag::before { background: var(--teal); }

.port-browser--sm .port-browser-screen { height: 190px; }

.port-card-meta {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
}

.port-card-meta .port-proj-name {
  font-size: 21px;
}

/* Tarjeta "tu equipo aquí" — CTA, no placeholder gris */
.port-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px dashed rgba(0,196,180,.35);
  background: var(--teal-dim, rgba(0,196,180,0.05));
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.port-cta-card:hover { border-color: var(--teal); background: rgba(0,196,180,0.09); }
.port-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--teal);
  text-align: center;
}
.port-cta-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* Separador de track con eyebrow, igual al resto del sitio */
.port-track-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal);
}
.port-track-head::before { content:''; display:block; width:18px; height:2px; background: var(--teal); }
.port-track-head.orange { color: var(--orange); }
.port-track-head.orange::before { background: var(--orange); }

/* Web bottom pills + CTA */
.web-bottom {
  margin-top: 48px;
  text-align: center;
}

.web-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}

.pill {
  padding: 8px 18px;
  border: 1px solid var(--line);
  background: var(--bg3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .port-featured { grid-template-columns: 1fr; }
  .port-browser { border-right: none; border-bottom: 1px solid var(--line); }
  .port-info {
    border-left: none;
    padding: 24px 20px;
  }
  .port-featured .port-browser-screen { height: 240px; }
}

@media (max-width: 700px) {
  .port-trio { grid-template-columns: 1fr; gap: 12px; }
  .port-browser--sm .port-browser-screen { height: 200px; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .y20-nav { padding: 0 18px; }
  .y20-menu {
    display: none; flex-direction: column;
    position: fixed; top: 94px; left: 0; right: 0;
    height: calc(100vh - 94px); height: calc(100dvh - 94px);
    background: var(--bg2); padding: 12px 18px 32px; gap: 0;
    overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 105;
  }
  .y20-menu.open { display: flex; }
  .y20-menu > li { border-bottom: 1px solid var(--line); }
  .y20-menu > li:last-child { border-bottom: none; }
  .y20-menu > li > a {
    font-size: 1.05rem; padding: 16px 4px;
    justify-content: space-between; gap: 10px;
  }
  .y20-menu > li > a .season-tag,
  .y20-menu > li > a .y20-arrow { flex-shrink: 0; }
  .y20-burger { display: flex; }
  .y20-dropdown {
    position: static; opacity: 1; pointer-events: all; transform: none;
    border: none; border-radius: 0;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid rgba(0,196,180,0.4);
    margin: 0 0 12px 4px;
  }
  .y20-dropdown-header { padding: 8px 14px; }
  .y20-dropdown > a { padding: 12px 14px; }
  .y20-arrow { display: none; }

  .hero-line { display: none; }
  .hero-content { padding-top: 40px; }
  .hero-arrows { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .stat { min-width: 33%; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 50%; border-bottom: 1px solid var(--line); }
  .hero-content { padding-top: 28px; padding-bottom: 28px; }
  .hero-title { font-size: clamp(3.6rem, 14vw, 5rem); margin-bottom: 16px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-dots { bottom: 76px; }
  .hero-overline { font-size: 0.62rem; letter-spacing: 0.22em; }
}