/* ═══════════════════════════════════════════════════════════════
   N3T AGENCY — v2 — Modern Sports Agency
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #0a0a0a;
  --bg-2:     #111111;
  --bg-3:     #1a1a1a;
  --ink:      #ffffff;
  --ink-soft: rgba(255,255,255,0.72);
  --ink-mute: rgba(255,255,255,0.45);
  --line:     rgba(255,255,255,0.08);
  --line-2:   rgba(255,255,255,0.16);
  --accent:   #FF6B35;
  --accent-d: #e85a25;
  --gold:     #FFC107;

  --radius:   14px;
  --radius-l: 22px;
  --container: 1280px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Montserrat", system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 1000;
  background: var(--accent); color: #000; padding: 0.6rem 1rem;
  font-weight: 800; border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

/* ═════════════ Typography helpers ═════════════ */
.kicker {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 1.5rem;
}
.kicker-gold { color: var(--gold); }

.display {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900; line-height: 0.98; letter-spacing: -0.035em;
  color: var(--ink);
}
.display em {
  font-style: italic; font-weight: 800;
  color: var(--accent);
}
.accent { color: var(--accent); font-style: italic; }
.accent-gold { color: var(--gold); font-style: italic; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft); line-height: 1.7;
  max-width: 56ch;
}

/* ═════════════ Buttons ═════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.95rem 1.75rem;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 100px; transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #0a0a0a;
  box-shadow: 0 12px 36px -10px rgba(255,107,53,0.6);
}
.btn-primary:hover {
  background: var(--accent-d); transform: translateY(-2px);
  box-shadow: 0 18px 48px -10px rgba(255,107,53,0.75);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ═════════════ Screen (full viewport) ═════════════ */
.screen {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6rem, 10vw, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem);
}

/* ═════════════ NAV ═════════════ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav-wrap.is-scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav {
  max-width: var(--container); margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  font-weight: 900; letter-spacing: -0.04em;
}
.logo-mark {
  font-size: 1.45rem; color: var(--accent);
  line-height: 1; letter-spacing: -0.05em;
}
.logo-mark-lg { font-size: 2.5rem; }
.logo-three { color: #fff; }
.logo-sub {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink-mute);
}

.nav-links {
  display: none;
  align-items: center; gap: 2.2rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links a {
  color: var(--ink-soft); transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: none;
  padding: 0.65rem 1.3rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: #0a0a0a;
  border-radius: 100px; transition: all 0.25s var(--ease);
}
.nav-cta:hover { background: var(--accent-d); transform: translateY(-1px); }

.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn {
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border-radius: 100px;
  color: var(--ink-mute);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active {
  background: var(--accent);
  color: #0a0a0a;
}

.nav-burger {
  display: flex; flex-direction: column; gap: 6px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.nav-burger span {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile a { color: var(--ink); }
.nav-mobile a:hover { color: var(--accent); }

/* ═════════════ HERO ═════════════ */
.hero {
  text-align: left;
  overflow: hidden;
  align-items: stretch;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.4) contrast(1.05) brightness(0.55);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,107,53,0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 70%, #0a0a0a 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%;
  margin: auto;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  text-align: left;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,107,53,0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(255,107,53,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 8.5vw, 7rem);
  font-weight: 900; letter-spacing: -0.045em;
  line-height: 0.95; margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic; font-weight: 800;
  color: var(--accent);
}
.hero-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft); line-height: 1.6;
  max-width: 48ch; margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}

.hero-meta {
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%;
  margin: 3rem auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line-2);
  padding-top: 1.5rem;
}
.meta-item {
  display: flex; flex-direction: column; gap: 0.3rem;
  min-width: 0;
}
.meta-item strong {
  font-size: 1rem; font-weight: 900; color: var(--accent);
  letter-spacing: 0.02em;
}
.meta-item span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 720px) {
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
  }
  .meta-item {
    flex-direction: row; align-items: baseline; gap: 0.7rem;
  }
  .meta-item strong { font-size: 0.85rem; }
  .meta-item span { font-size: 0.68rem; letter-spacing: 0.12em; }
}

.hero-scroll {
  position: absolute; bottom: 2rem; right: 2.5rem; z-index: 2;
  display: none; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═════════════ AGENCIA ═════════════ */
.agencia { background: var(--bg); }
.agencia-inner {
  max-width: var(--container); width: 100%;
  margin: auto;
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: end;
}
.ag-text { display: flex; flex-direction: column; }
.ag-text .display { margin-bottom: 2rem; }
.ag-text .lead + .lead { margin-top: 1.25rem; }

.ag-pillars {
  margin-top: 2.75rem;
  display: grid; gap: 1.25rem;
}
.pillar {
  padding: 1.5rem 1.5rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.pillar:hover {
  border-color: rgba(255,107,53,0.35);
  transform: translateY(-3px);
}
.pillar-num {
  display: block;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 0.7rem;
}
.pillar h3 {
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 0.4rem;
}
.pillar p {
  font-size: 0.85rem; color: var(--ink-soft);
  line-height: 1.65;
}

.ag-visual {
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 720px) {
  .ag-visual { padding-top: clamp(7rem, 16vw, 13rem); }
}
.ag-image {
  position: relative; width: 100%; max-width: 480px;
  aspect-ratio: 4/5; border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.ag-image::before {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--line-2); border-radius: inherit;
  z-index: 2; pointer-events: none;
}
.ag-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.7s var(--ease);
}
.ag-image:hover img { transform: scale(1.04); }
.ag-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  padding: 0.7rem 1rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-size: 0.72rem; color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.ag-tag strong {
  display: block; color: var(--accent);
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

/* ═════════════ IVÁN ═════════════ */
.ivan { background: var(--bg-2); }
.ivan-inner {
  max-width: var(--container); width: 100%;
  margin: auto;
}
.ivan-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ivan-head .display { max-width: 18ch; margin-inline: auto; }

.ivan-grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}

/* ═════════════ Slider ═════════════ */
.slider {
  position: relative;
  width: 100%;
  padding: 0 56px;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-l);
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s var(--ease);
  touch-action: pan-y;
}
.slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* Slide card — contiene vídeo + info */
.slide-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.slider-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 300; line-height: 1;
  color: var(--ink);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.slider-arrow:hover {
  background: var(--accent); color: #0a0a0a;
  border-color: var(--accent);
}
.slider-arrow-prev { left: 0; }
.slider-arrow-next { right: 0; }
.slider-arrow[disabled] {
  opacity: 0.3; pointer-events: none;
}

@media (max-width: 719px) {
  .slider { padding: 0; }
  .slider-arrow {
    top: auto; bottom: -64px;
    transform: none;
    width: 44px; height: 44px;
  }
  .slider-arrow-prev { left: calc(50% - 60px); }
  .slider-arrow-next { right: calc(50% - 60px); }
  .slider-dots { margin-top: 5rem; }
}

.slider-dots {
  display: flex; justify-content: center; gap: 0.6rem;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}
.slider-dot {
  width: 32px; height: 4px;
  background: var(--line-2);
  border-radius: 100px;
  transition: background 0.3s ease, width 0.3s var(--ease);
}
.slider-dot:hover { background: var(--ink-mute); }
.slider-dot.is-active {
  background: var(--accent);
  width: 56px;
}

/* Próximamente card */
.slide-soon { display: flex; align-items: center; justify-content: center; }
.soon-card {
  width: 100%; max-width: 640px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.soon-mark {
  font-size: 2.2rem; color: var(--gold);
  opacity: 0.8;
}
.soon-kicker {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
}
.soon-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.soon-desc {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 0.5rem;
}

@media (min-width: 720px) {
  .slider-arrow { width: 56px; height: 56px; font-size: 2rem; }
  .slider-arrow-prev { left: -8px; }
  .slider-arrow-next { right: -8px; }
}

.ivan-video-wrap {
  position: relative;
  aspect-ratio: 9/16; max-height: 620px;
  width: 100%; margin: 0 auto;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.ivan-video {
  width: 100%; height: 100%; object-fit: cover;
}
.ivan-play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
  transition: opacity 0.3s ease, background 0.3s ease;
}
.ivan-play:hover { background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.4)); }
.play-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(255,107,53,0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.play-tri {
  width: 0; height: 0;
  border-left: 18px solid #0a0a0a;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.ivan-play:hover .play-circle {
  transform: scale(1.08);
  box-shadow: 0 0 0 16px rgba(255,107,53,0.18);
}
.play-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
}
.ivan-video-wrap.is-playing .ivan-play { display: none; }

.ivan-info {
  display: flex; flex-direction: column;
  text-align: left;
}
.ivan-badge {
  display: inline-flex; align-items: center;
  align-self: flex-start;
  padding: 0.45rem 0.95rem;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.ivan-name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.045em;
  line-height: 0.92; margin-bottom: 1.75rem;
}

.ivan-meta {
  display: grid; gap: 0;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--line);
}
.ivan-meta li {
  display: grid; grid-template-columns: 110px 1fr; gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.ivan-meta li span {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.ivan-meta li strong {
  font-size: 0.95rem; font-weight: 700;
  color: var(--ink);
}
.ivan-meta li a { transition: color 0.2s ease; }
.ivan-meta li a:hover strong { color: var(--accent); }

.ivan-bio {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--ink-soft); line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 56ch;
}

.ivan-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}

.ivan-strip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 1000px; margin-inline: auto;
}
.strip-img {
  aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.strip-img:hover { transform: translateY(-4px); }
.strip-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}
.strip-img:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.08);
}

/* ═════════════ SPONSORS ═════════════ */
.sponsors { background: var(--bg); }
.sponsors-inner {
  max-width: var(--container); width: 100%;
  margin: auto;
}
.sp-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px; margin-inline: auto;
}
.sp-head .display { margin-bottom: 1.5rem; }
.sp-head .lead { margin-inline: auto; }

.sp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.stat {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 0.35rem;
  line-height: 1;
}
.stat span {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}

.sp-benefits {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.sp-form-wrap { margin-top: clamp(2rem, 4vw, 3rem); scroll-margin-top: 100px; }
.benefit {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.benefit:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-3px);
}
.b-num {
  display: block;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.22em; color: var(--accent);
  margin-bottom: 0.85rem;
}
.benefit h3 {
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 0.45rem;
}
.benefit p {
  font-size: 0.88rem; color: var(--ink-soft);
  line-height: 1.65;
}

.sp-cta {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

/* ═════════════ CONTACTO ═════════════ */
.contacto { background: var(--bg-2); }
.contacto-inner {
  max-width: var(--container); width: 100%;
  margin: auto;
}
.contacto .sp-head { margin-inline: auto; }

/* Form */
.sp-form-wrap {
  max-width: 760px; margin-inline: auto; width: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
}
.form-head {
  text-align: center; margin-bottom: 2rem;
}
.form-head h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900; letter-spacing: -0.025em;
  margin-bottom: 0.45rem;
}
.form-head p {
  color: var(--ink-mute); font-size: 0.9rem;
}

.form-toggle {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
.form-toggle legend {
  grid-column: 1 / -1;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}
.toggle-opt {
  position: relative;
  cursor: pointer;
}
.toggle-opt input {
  position: absolute; opacity: 0; pointer-events: none;
}
.toggle-opt span {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.95rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  transition: all 0.2s var(--ease);
}
.toggle-opt span strong {
  font-size: 0.95rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.toggle-opt span em {
  font-style: normal;
  font-size: 0.72rem; font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.toggle-opt:hover span { border-color: var(--line-2); }
.toggle-opt input:checked + span {
  border-color: var(--accent);
  background: rgba(255,107,53,0.08);
}
.toggle-opt input:checked + span strong { color: var(--accent); }
.toggle-opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.form-row {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.1rem;
}
#sponsor-form > .field { margin-bottom: 1.75rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit; font-size: 0.92rem;
  color: var(--ink);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,107,53,0.04);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23ffffff80' stroke-width='1.5'><polyline points='1 1 6 6 11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.field select option { background: var(--bg-2); color: var(--ink); }

.form-submit {
  display: block; width: 100%;
  margin-top: 0.5rem;
  padding: 1.05rem 1.5rem;
  background: var(--accent); color: #0a0a0a;
  font-size: 0.85rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 12px 32px -8px rgba(255,107,53,0.6);
}
.form-submit:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px rgba(255,107,53,0.75);
}
.form-submit:disabled {
  opacity: 0.5; cursor: wait; transform: none;
}

.form-feedback {
  margin-top: 1rem; text-align: center;
  font-size: 0.85rem; font-weight: 700;
  min-height: 1.2em;
}
.form-feedback.ok { color: var(--gold); }
.form-feedback.err { color: #ff5151; }

/* ═════════════ BLOG ═════════════ */
.blog { background: var(--bg-2); }
.blog-inner {
  max-width: var(--container); width: 100%;
  margin: auto;
}
.blog-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.blog-head .display { margin-bottom: 1.25rem; }
.blog-head .lead { margin-inline: auto; }

.blog-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}

/* Blog slider — más compacto y centrado, formato horizontal */
.blog-slider {
  max-width: 720px;
  margin: 0 auto;
}
.blog-slider .slide { padding: 0; }
.blog-slider .post { margin: 0 auto; display: flex; flex-direction: column; }
.blog-slider .post-media { aspect-ratio: 4/3; }
.blog-slider .post-body { padding: clamp(1.4rem, 2.5vw, 2rem); }
.blog-slider .post-title { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.blog-slider .post-excerpt { font-size: 0.92rem; }
.blog-slider .post-soon { min-height: 320px; justify-content: center; }

/* Ensure hidden fields really collapse (overrides .field display:flex) */
.field[hidden] { display: none !important; }

.post {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.post:hover { border-color: var(--line-2); transform: translateY(-3px); }

.post-media {
  position: relative; display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: saturate(1.05) contrast(1.05);
}
.post:hover .post-media img { transform: scale(1.04); }
.post-tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--accent); color: #0a0a0a;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 100px;
}

.post-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.post-meta {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.post-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 1rem;
  color: var(--ink);
}
.post-excerpt {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.post-full {
  display: none;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.post-full p {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.post-full p strong { color: var(--ink); font-weight: 700; }
.post-full a { color: var(--accent); border-bottom: 1px solid rgba(255,107,53,0.3); }
.post-full a:hover { border-color: var(--accent); }
.post-full h4 {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.01em;
  margin: 1.5rem 0 0.75rem;
  color: var(--ink);
}
.post-list { margin: 0.5rem 0 1.25rem 1.25rem; }
.post-list li {
  font-size: 0.92rem; line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  list-style: disc;
}
.post-list li strong { color: var(--ink); }
.post-sign {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.post-sign em { color: var(--accent); font-style: italic; }

.post.is-open .post-full { display: block; animation: postOpen 0.4s var(--ease); }
.post.is-open .lbl-more { display: none; }
.post:not(.is-open) .lbl-less { display: none; }
@keyframes postOpen {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.post-toggle {
  display: inline-flex; align-items: center;
  margin-top: 0.5rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1.5px solid rgba(255,107,53,0.4);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.post-toggle:hover {
  background: var(--accent); color: #0a0a0a;
  border-color: var(--accent);
}

.post-soon {
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-style: dashed;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem;
}
.post-soon .soon-mark { font-size: 1.8rem; color: var(--gold); opacity: 0.7; }
.post-soon .post-meta { color: var(--gold); margin-bottom: 0; }
.post-soon .post-title { font-size: 1.4rem; margin-bottom: 0.5rem; }
.post-soon .post-excerpt { max-width: 42ch; margin-bottom: 0; }

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
  .post-featured { grid-row: span 2; }
}

/* ═════════════ FOOTER ═════════════ */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 5vw, 4rem);
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand p {
  margin-top: 0.85rem;
  color: var(--ink-mute);
  font-size: 0.88rem; line-height: 1.6;
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  gap: 0.8rem; justify-content: space-between;
  font-size: 0.72rem; color: var(--ink-mute);
  letter-spacing: 0.05em;
}

/* ═════════════ Reveal animation ═════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ═════════════ Responsive — tablet ≥ 720px ═════════════ */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none; }

  .hero-scroll { display: flex; }

  .agencia-inner { grid-template-columns: 1.1fr 1fr; }
  .ivan-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4rem); }
  .ivan-strip { grid-template-columns: repeat(4, 1fr); }

  .sp-benefits { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

/* ═════════════ Responsive — desktop ≥ 1024px ═════════════ */
@media (min-width: 1024px) {
  .agencia-inner { gap: 5rem; }
  .ivan-name { font-size: clamp(3rem, 5.5vw, 5rem); }
}

/* ═════════════ Reduced motion (sólo efectos intrusivos) ═════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow .dot { animation: none; }
  .scroll-line { animation: none; }
}
