/* ============================================================
   SLWORLDTEAM — style.css
   Premium football agency site — pure CSS, no frameworks
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  /* Brand colors */
  --blue:          #3D7BD9;
  --blue-light:    #5BA8E8;
  --green:         #2BB673;
  --green-light:   #4FCB8E;
  --yellow:        #FFD23F;
  --red:           #E63946;
  --red-light:     #FF6B73;

  /* Backgrounds */
  --bg-primary:    #14171f;
  --bg-secondary:  #14171f;
  --bg-card:       #111111;
  --bg-card-hover: #161616;

  /* Text */
  --text-primary:  #ffffff;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted:    rgba(255,255,255,0.35);

  /* Borders */
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(255,255,255,0.15);

  /* Typography */
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:    Georgia, 'Times New Roman', serif;

  /* Layout */
  --max-width:     1280px;
  --header-h:      80px;
  --section-py:    96px;
  --radius:        4px;
  --radius-lg:     8px;

  /* Transitions */
  --t-fast:        0.15s ease;
  --t-base:        0.25s ease;
  --t-slow:        0.4s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--t-base);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.btn-primary:hover { background: rgba(255,255,255,0.88); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--text-primary); background: rgba(255,255,255,0.06); }

.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover { color: var(--text-primary); border-bottom-color: var(--text-primary); }

.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-light); }

.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Fade-in animation (triggered by JS) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-slow), backdrop-filter var(--t-slow), border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(20,23,31,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 52px;
  width: auto;
}
@media (max-width: 1280px) {
  .header__logo img { height: 40px; }
}
@media (max-width: 768px) {
  .header__logo img { height: 36px; }
}

/* Nav */
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .header__nav { gap: 32px; }
}

.header__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}
.header__nav a:hover { color: var(--text-primary); }
.header__nav a:hover::after { transform: scaleX(1); }
.header__nav a.active { color: var(--text-primary); }
.header__nav a.active::after { transform: scaleX(1); }

/* Right controls */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-switcher button {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: 2px;
  transition: color var(--t-fast);
}
.lang-switcher button.active { color: var(--text-primary); }
.lang-switcher button:hover  { color: var(--text-secondary); }
.lang-switcher span { color: var(--border-hover); font-size: 10px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--t-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(20,23,31,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  z-index: 999;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-nav a:last-child { border-bottom: none; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* CSS animated background (fallback when no video) */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c1a35 0%, #0a0a0a 40%, #0c1a35 60%, #091508 80%, #0a0a0a 100%);
  background-size: 400% 400%;
  animation: bgShift 12s ease infinite;
  z-index: 0;
}

@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 100% 50%; }
  50%  { background-position: 100% 0%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

/* Floating color blobs */
.hero__bg-gradient::before {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  top: -20vw; left: -10vw;
  background: radial-gradient(circle, rgba(30,136,229,0.18) 0%, transparent 70%);
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.hero__bg-gradient::after {
  content: '';
  position: absolute;
  width: 50vw;
  height: 50vw;
  bottom: -10vw; right: -10vw;
  background: radial-gradient(circle, rgba(43,182,115,0.14) 0%, transparent 70%);
  animation: blobFloat 18s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, 8%) scale(1.1); }
}

/* Video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.28) 100%
  );
  z-index: 2;
}

/* REC badge */
.hero__rec {
  position: absolute;
  top: calc(var(--header-h) + 24px);
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 3;
}
.hero__rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@media (min-width: 768px)  { .hero__rec { right: 40px; } }
@media (min-width: 1024px) { .hero__rec { right: 64px; } }

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 96px);
}

.hero__content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__est {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--text-primary);
  max-width: 820px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   SECTIONS — common
   ============================================================ */
.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--bg-secondary);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.section__header-left { flex: 1; }


/* ============================================================
   TALENTS SECTION
   ============================================================ */
.filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.filter-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--t-base);
  background: transparent;
}
.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
}
.filter-btn.active {
  border-color: var(--blue);
  color: var(--text-primary);
  background: rgba(30,136,229,0.1);
}

/* Talents grid */
.talents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (min-width: 768px)  { .talents-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .talents-grid { grid-template-columns: repeat(6, 1fr); gap: 2px; } }

/* Athlete card */
.athlete-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--t-base);
}

.athlete-card:hover { z-index: 2; }

.athlete-card__bg {
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow);
}
.athlete-card:hover .athlete-card__bg { transform: scale(1.04); }

/* Category gradient overlay */
.athlete-card[data-cat="player"]  .athlete-card__bg { background: linear-gradient(180deg, rgba(30,136,229,0.25) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.95) 100%); }
.athlete-card[data-cat="young"]   .athlete-card__bg { background: linear-gradient(180deg, rgba(43,182,115,0.25) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.95) 100%); }
.athlete-card[data-cat="coach"]   .athlete-card__bg { background: linear-gradient(180deg, rgba(230,57,70,0.25) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.95) 100%); }

/* Silhouette placeholder */
.athlete-card__silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30%;
}
.athlete-card__silhouette svg {
  width: 60%;
  max-width: 120px;
  opacity: 0.06;
}

/* Photo (real image when available) */
.athlete-card__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.athlete-card:hover .athlete-card__photo { transform: scale(1.05); }

/* Category bar top */
.athlete-card__cat-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1;
}
.athlete-card[data-cat="player"]  .athlete-card__cat-bar { background: var(--blue); }
.athlete-card[data-cat="young"]   .athlete-card__cat-bar { background: var(--green); }
.athlete-card[data-cat="coach"]   .athlete-card__cat-bar { background: var(--red); }

/* Info bottom */
.athlete-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 18px;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 60%, transparent);
  z-index: 1;
}

.athlete-card__position {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.athlete-card[data-cat="player"]  .athlete-card__position { color: var(--blue-light); }
.athlete-card[data-cat="young"]   .athlete-card__position { color: var(--green-light); }
.athlete-card[data-cat="coach"]   .athlete-card__position { color: var(--red-light); }

.athlete-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.2px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.athlete-card__club {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Arrow on hover */
.athlete-card__arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--t-base);
  background: rgba(255,255,255,0.05);
  z-index: 2;
}
.athlete-card:hover .athlete-card__arrow {
  opacity: 1;
  transform: scale(1);
}
.athlete-card__arrow svg {
  width: 12px; height: 12px;
}

/* Full-card link overlay */
.athlete-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Hidden cards (filtered out) */
.athlete-card.hidden {
  display: none;
}

/* More link */
.talents__more {
  text-align: center;
  margin-top: 40px;
}


/* ============================================================
   WHO WE ARE
   ============================================================ */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base);
}
.stat-card:hover { background: rgba(255,255,255,0.05); }

.stat-card__accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.stat-card:nth-child(1) .stat-card__accent { background: var(--blue); }
.stat-card:nth-child(2) .stat-card__accent { background: var(--green); }
.stat-card:nth-child(3) .stat-card__accent { background: var(--yellow); }
.stat-card:nth-child(4) .stat-card__accent { background: var(--red); }

.stat-card__value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__actions {
  margin-top: 32px;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  gap: 2px;
}

@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; } }

.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base);
  border: 1px solid var(--border);
}
.service-card:hover { background: var(--bg-card-hover); }

.service-card__number {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.service-card__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-card__accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__accent-line { transform: scaleX(1); }

.service-card:nth-child(1) .service-card__accent-line { background: var(--blue); }
.service-card:nth-child(2) .service-card__accent-line { background: var(--green); }
.service-card:nth-child(3) .service-card__accent-line { background: var(--yellow); }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-base);
}
.service-card:nth-child(1):hover .service-card__link { color: var(--blue-light); }
.service-card:nth-child(2):hover .service-card__link { color: var(--green-light); }
.service-card:nth-child(3):hover .service-card__link { color: var(--yellow); }


/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  gap: 2px;
}

@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }

.news-card {
  background: var(--bg-card);
  padding: 32px 28px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--t-base);
  cursor: pointer;
}
.news-card:hover { background: var(--bg-card-hover); }

.news-card__border {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-card__date {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-card__category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.news-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.news-card__excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.news-card__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}
.news-card:hover .news-card__link { gap: 10px; }

.news-section__more {
  margin-top: 40px;
  text-align: center;
}


/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.partners__label {
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color var(--t-base);
  white-space: nowrap;
}
.partner-item:hover { color: rgba(255,255,255,0.6); }

.partner-item img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.25;
  transition: opacity var(--t-base);
}
.partner-item:hover img { opacity: 0.6; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 64px; } }

.footer__brand img {
  height: 32px;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--text-primary); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.footer__social a:hover { color: var(--text-primary); }

.footer__social-icon {
  width: 28px; height: 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.footer__social a:hover .footer__social-icon {
  border-color: var(--blue);
  background: rgba(30,136,229,0.08);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copyright {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer__legal a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--text-secondary); }


/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,136,229,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
}

.page-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}


/* ============================================================
   PLAYERS PAGE — full grid
   ============================================================ */
.players-section {
  padding: 64px 0 96px;
}

.position-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 640px)  { .players-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .players-grid { grid-template-columns: repeat(5, 1fr); } }


/* ============================================================
   ATHLETE PROFILE PAGE
   ============================================================ */
.athlete-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-secondary);
}

.athlete-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c1a35, #0a0a0a);
}

.athlete-hero__photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  object-fit: cover;
  object-position: top center;
}

.athlete-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.98) 40%, rgba(10,10,10,0.4) 100%);
}

.athlete-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 64px) 0 64px;
  width: 100%;
  max-width: 600px;
}

.athlete-hero__position {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.athlete-hero__name {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 24px;
}

.athlete-hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.athlete-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.athlete-meta-item__label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.athlete-meta-item__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Career timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0 20px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 28px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--bg-primary);
}

.timeline-item__years {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 2px;
}

.timeline-item__club {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-item__detail {
  font-size: 12px;
  color: var(--text-muted);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 80px 0;
}

.about-story__grid {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .about-story__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.about-story p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story p strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--t-base);
}
.team-card:hover { background: var(--bg-card-hover); }

.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-secondary);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.team-card__avatar svg { opacity: 0.3; width: 40px; }

.team-card__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail__grid {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-detail__grid { grid-template-columns: 1fr 1fr; }
  .service-detail:nth-child(even) .service-detail__grid { direction: rtl; }
  .service-detail:nth-child(even) .service-detail__grid > * { direction: ltr; }
}

.service-detail__num {
  font-size: 64px;
  font-weight: 200;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--border-hover);
  margin-bottom: 16px;
}

.service-detail__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.service-detail p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}
.service-detail__feature::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.service-detail__visual {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail__visual-inner {
  text-align: center;
  color: var(--text-muted);
}
.service-detail__visual-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}
.service-detail__visual-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-list {
  padding: 64px 0;
}

.news-list-grid {
  display: grid;
  gap: 2px;
}
@media (min-width: 768px)  { .news-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .news-list-grid { grid-template-columns: repeat(3, 1fr); } }

.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background var(--t-base);
  cursor: pointer;
}
.news-item:hover { background: var(--bg-card-hover); }

.news-item__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item__thumb-placeholder {
  font-size: 32px;
  opacity: 0.15;
}

.news-item__body {
  padding: 24px;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-item__date {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-item__cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}

.news-item__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.news-item__excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:first-child { padding-top: 0; }

.contact-info__icon {
  width: 36px; height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-info__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 14px;
  color: var(--text-primary);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--t-base), background var(--t-base);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: rgba(30,136,229,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-size: 13px;
}

.form-group select {
  color: var(--text-muted);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-group select option { background: #1a1a1a; color: var(--text-primary); }

.form-group textarea { min-height: 140px; }

.form-submit {
  padding-top: 8px;
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* Map placeholder */
.map-placeholder {
  margin-top: 64px;
  height: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(30,136,229,0.06) 0%, transparent 70%);
}
.map-placeholder__inner {
  text-align: center;
  color: var(--text-muted);
  position: relative;
}
.map-placeholder__icon { font-size: 32px; margin-bottom: 8px; opacity: 0.4; }
.map-placeholder__label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }


/* ============================================================
   FOCUS VISIBLE (accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}


/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }


/* ============================================================
   POSITION CATEGORY CARDS
   ============================================================ */

/* Centered icon area — replaces silhouette */
.pos-card__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 28%; /* push icon up so it doesn't overlap info */
}

.pos-card__icon svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
  transition: opacity var(--t-base), transform var(--t-slow);
  filter: drop-shadow(0 0 18px rgba(30,136,229,0.2));
}
@media (min-width: 1024px) {
  .pos-card__icon svg { width: 44px; height: 44px; }
}

/* Slightly larger icon for coach card */
.athlete-card[data-cat="coach"] .pos-card__icon svg {
  filter: drop-shadow(0 0 18px rgba(230,57,70,0.2));
}
.athlete-card[data-cat="young"] .pos-card__icon svg {
  filter: drop-shadow(0 0 18px rgba(43,182,115,0.2));
}

.athlete-card--position:hover .pos-card__icon svg {
  opacity: 0.65;
  transform: translateY(-6px) scale(1.06);
}

/* Richer gradient for position cards */
.athlete-card--position[data-cat="player"]  .athlete-card__bg {
  background: linear-gradient(180deg,
    rgba(30,136,229,0.30) 0%,
    rgba(30,136,229,0.08) 45%,
    rgba(10,10,10,0.96)   100%
  );
}
.athlete-card--position[data-cat="young"]   .athlete-card__bg {
  background: linear-gradient(180deg,
    rgba(43,182,115,0.30) 0%,
    rgba(43,182,115,0.08) 45%,
    rgba(10,10,10,0.96)   100%
  );
}
.athlete-card--position[data-cat="coach"]   .athlete-card__bg {
  background: linear-gradient(180deg,
    rgba(230,57,70,0.30)  0%,
    rgba(230,57,70,0.08)  45%,
    rgba(10,10,10,0.96)   100%
  );
}

/* Info area tweaks for position cards */
.athlete-card--position .athlete-card__info {
  padding: 20px 18px 16px;
}

.athlete-card--position .athlete-card__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

@media (min-width: 1024px) {
  .athlete-card--position .athlete-card__info { padding: 14px 12px 12px; }
  .athlete-card--position .athlete-card__name { font-size: 13px; margin-bottom: 4px; }
  .athlete-card--position .athlete-card__club { margin-bottom: 6px; }
}

.athlete-card--position .athlete-card__club {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* "Ver todos →" CTA inside card */
.pos-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-base), gap var(--t-fast);
  margin: 0;
}

.athlete-card--position[data-cat="player"]:hover  .pos-card__cta { color: var(--blue-light); gap: 8px; }
.athlete-card--position[data-cat="young"]:hover   .pos-card__cta { color: var(--green-light); gap: 8px; }
.athlete-card--position[data-cat="coach"]:hover   .pos-card__cta { color: var(--red-light); gap: 8px; }

/* Subtle border glow on hover */
.athlete-card--position {
  border: 1px solid transparent;
  transition: border-color var(--t-base), z-index 0s;
}
.athlete-card--position[data-cat="player"]:hover  { border-color: rgba(30,136,229,0.25); }
.athlete-card--position[data-cat="young"]:hover   { border-color: rgba(43,182,115,0.25); }
.athlete-card--position[data-cat="coach"]:hover   { border-color: rgba(230,57,70,0.25); }


/* ============================================================
   UTILITY COLOR HELPERS
   ============================================================ */
.color-blue   { color: var(--blue); }
.color-green  { color: var(--green); }
.color-yellow { color: var(--yellow); }
.color-red    { color: var(--red); }

.bg-blue   { background: var(--blue); }
.bg-green  { background: var(--green); }
.bg-yellow { background: var(--yellow); }
.bg-red    { background: var(--red); }

.bg-blue-soft   { background: rgba(30,136,229,0.12); color: var(--blue-light); }
.bg-green-soft  { background: rgba(43,182,115,0.12); color: var(--green-light); }
.bg-yellow-soft { background: rgba(255,210,63,0.12);  color: var(--yellow); }
.bg-red-soft    { background: rgba(230,57,70,0.12);   color: var(--red-light); }


/* ============================================================
   VISUAL DEPTH — texture, watermarks, personality
   ============================================================ */

/* ── 1. SITE-WIDE NOISE GRAIN ─────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* ── 2. SECTION WATERMARKS ────────────────────────────────── */
.has-wm { position: relative; overflow: hidden; }

.wm {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.wm-br {
  right: -6%;
  bottom: -12%;
  width: 62vw;
  max-width: 760px;
}
.wm-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55vw;
  max-width: 640px;
}
.wm-left {
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 48vw;
  max-width: 580px;
}
.wm-tr {
  top: -80px;
  right: -80px;
  width: clamp(400px, 50vw, 800px);
}
.wm-bl {
  bottom: -80px;
  left: -80px;
  width: clamp(400px, 50vw, 800px);
}
@media (max-width: 768px) {
  .wm-tr,
  .wm-bl { width: clamp(250px, 70vw, 450px); opacity: 0.08 !important; }
  .wm-tr  { top: -50px;    right: -50px; }
  .wm-bl  { bottom: -50px; left:  -50px; }
  .wm-center { width: clamp(200px, 60vw, 380px); }
}
.has-wm > .container { position: relative; z-index: 1; }

/* ── 3. SECTION LINE DIVIDERS ─────────────────────────────── */
.section-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.09) 30%, rgba(255,255,255,0.09) 70%, transparent 100%);
}
.section-line--angled {
  height: 56px;
  position: relative;
  overflow: hidden;
}
.section-line--angled::after {
  content: '';
  position: absolute;
  left: -5%; right: -5%; top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  transform: rotate(-0.8deg);
}

/* ── 4. PITCH DIVIDER ─────────────────────────────────────── */
.pitch-divider {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.pitch-divider svg { width: 100%; height: 100%; display: block; }

/* ── 5. GIANT BG NUMBERS in service visuals ───────────────── */
.service-visual-bignum {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(130px, 20vw, 300px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
  font-family: var(--font);
}
.service-detail__visual { position: relative; overflow: hidden; }
.service-detail__visual-inner { position: relative; z-index: 1; }

.service-visual-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: block;
  stroke: rgba(255,255,255,0.2);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── 6. IMPROVED BUTTONS ──────────────────────────────────── */
.btn {
  transition: background 0.25s ease, box-shadow 0.25s ease,
              transform 0.15s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e4 100%);
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.18);
  background: linear-gradient(135deg, #ffffff 0%, #ebebeb 100%);
}
.btn-blue {
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  box-shadow: 0 4px 20px rgba(30,136,229,0.28);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,136,229,0.42);
  background: linear-gradient(135deg, #2196F3 0%, #1E88E5 100%);
}
.btn-outline:hover { transform: translateY(-2px); }

/* ── 7. SMOOTHER FADE-IN (spring curve) ───────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── 8. STATS STRIP ───────────────────────────────────────── */
.stats-strip {
  padding: 72px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.stats-strip::before,
.stats-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.stats-strip::before { top: 0; }
.stats-strip::after  { bottom: 0; }

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .stats-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-strip__item {
  padding: 36px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .stats-strip__item { border-bottom: none; }
  .stats-strip__item:last-child { border-right: none; }
}
.stats-strip__item:nth-child(2n) { border-right: none; }
@media (min-width: 640px) {
  .stats-strip__item:nth-child(2n) { border-right: 1px solid var(--border); }
  .stats-strip__item:nth-child(4n) { border-right: none; }
}

.stats-strip__number {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stats-strip__label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.stats-strip__number--blue   { color: var(--blue); }
.stats-strip__number--green  { color: var(--green); }
.stats-strip__number--yellow { color: var(--yellow); }
.stats-strip__number--red    { color: var(--red); }

/* ── 9. FLAG EMOJI ────────────────────────────────────────── */
.flag-emoji {
  font-size: 13px;
  line-height: 1;
  margin-right: 4px;
  vertical-align: -1px;
  display: inline-block;
}


/* ============================================================
   LOGO COM SÍMBOLO (header__logo-symbol + wordmark)
   ============================================================ */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo-symbol {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  background: transparent;
}
.header__logo-wordmark {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 1280px) {
  .header__logo-symbol { height: 40px; }
  .header__logo-wordmark { font-size: 15px; }
}
@media (max-width: 768px) {
  .header__logo-symbol { height: 36px; }
  .header__logo-wordmark { font-size: 14px; }
}
@media (max-width: 479px) {
  .header__logo-wordmark { display: none; }
}


/* ============================================================
   ATLETA — COMPACT INFO STRIP (no hero, substitui secção separada)
   ============================================================ */
.ap-hero__info-strip {
  display: flex;
  flex-wrap: nowrap;
  margin: 24px 0 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.ap-hero__info-item {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
}
.ap-hero__info-item:last-child { border-right: none; }
.ap-hero__info-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.ap-hero__info-value {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
@media (max-width: 600px) {
  .ap-hero__info-strip { flex-wrap: wrap; }
  .ap-hero__info-item  { flex: 1 1 calc(50% - 1px); min-width: calc(50% - 1px); }
  .ap-hero__info-item:nth-child(2) { border-right: none; }
  .ap-hero__info-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .ap-hero__info-item:nth-child(4) { border-top: 1px solid var(--border); }
}


/* ============================================================
   CONTACTOS — MAPA EMBED
   ============================================================ */
.contact-map-wrap {
  margin-top: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(25%) brightness(0.9);
}
.contact-map-address {
  padding: 14px 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.contact-map-address svg { flex-shrink: 0; color: var(--blue); }


/* ============================================================
   REDESIGN 2026 — Página inicial
   ============================================================ */

/* ---------- HERO REDESIGN ---------- */

.hero-redesign {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: #14171f;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Subtle radial glow */
.hero-redesign::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 60%, rgba(61,123,217,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(43,182,115,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative outline text */
.hero-redesign__bigword {
  position: absolute;
  bottom: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(72px, 16vw, 200px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 1;
}

/* Top indicators bar */
.hero-redesign__indicators {
  position: absolute;
  top: calc(var(--header-h) + 28px);
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
@media (min-width: 768px)  { .hero-redesign__indicators { padding: 0 40px; } }
@media (min-width: 1024px) { .hero-redesign__indicators { padding: 0 64px; } }

.hero-redesign__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.hero-redesign__status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-redesign__est {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* Content area */
.hero-redesign__content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(80px, 12vh, 120px);
}

.hero-redesign__content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-redesign__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #ffffff;
  max-width: 840px;
  margin-bottom: 24px;
}

.hero-redesign__title em {
  color: #3D7BD9;
  font-style: italic;
}

.hero-redesign__subtitle {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-redesign__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-redesign__actions .btn-primary {
  background: #3D7BD9;
  color: #fff;
  border: none;
}
.hero-redesign__actions .btn-primary:hover {
  background: #5592e8;
}

/* Bottom bar */
.hero-redesign__footer-bar {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
@media (min-width: 768px)  { .hero-redesign__footer-bar { padding: 0 40px; } }
@media (min-width: 1024px) { .hero-redesign__footer-bar { padding: 0 64px; } }

.hero-redesign__scroll {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.hero-redesign__step {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}


/* ---------- ATHLETES SECTION ---------- */

.section-athletes {
  background: #ebe5d8;
  padding: 72px 0 80px;
  color: #0a0a0a;
}

.section-athletes .section-label {
  color: rgba(0,0,0,0.4);
}

.section-athletes .section-title {
  color: #0a0a0a;
  margin-bottom: 0;
}

.section-athletes .section-title em {
  font-style: italic;
}

.athletes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.athletes-counter {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
  padding-bottom: 4px;
}

/* Pill filters */
.pill-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.18);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  line-height: 1;
}

.pill:hover {
  border-color: rgba(0,0,0,0.4);
  color: rgba(0,0,0,0.75);
}

.pill.active {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}

.pill--treinadores:hover {
  border-color: rgba(61,123,217,0.5);
  color: #3D7BD9;
}
.pill--treinadores.active {
  background: #3D7BD9;
  border-color: #3D7BD9;
  color: #fff;
}

.pill--jovens:hover {
  border-color: rgba(43,182,115,0.5);
  color: #2BB673;
}
.pill--jovens.active {
  background: #2BB673;
  border-color: #2BB673;
  color: #fff;
}

.pill__count {
  font-size: 9px;
  opacity: 0.55;
  font-weight: 500;
}
.pill.active .pill__count { opacity: 0.75; }

/* Athletes grid */
.athlete-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  min-height: 200px;
}
@media (min-width: 640px)  { .athlete-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .athlete-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

/* Individual athlete card v2 */
.athlete-card-v2 {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.athlete-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.athlete-card-v2__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.athlete-card-v2__photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e4e2dc;
}

.athlete-card-v2__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.athlete-card-v2:hover .athlete-card-v2__photo {
  transform: scale(1.06);
}

/* Position pill on photo */
.athlete-card-v2__pos-pill {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  line-height: 1;
}

.athlete-card-v2--treinador .athlete-card-v2__pos-pill {
  background: rgba(61,123,217,0.9);
}

/* Card info area */
.athlete-card-v2__info {
  padding: 13px 14px 15px;
}

.athlete-card-v2__name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1.25;
  margin-bottom: 5px;
}

.athlete-card-v2__name em {
  font-style: italic;
}

.athlete-card-v2__club {
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.2px;
}

/* Coach card: subtle blue top border */
.athlete-card-v2--treinador {
  border-top: 2px solid rgba(61,123,217,0.25);
}

/* Load more */
.athletes-load-more {
  text-align: center;
}

.athletes-load-more-btn {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(0,0,0,0.22);
  border-radius: 100px;
  background: transparent;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.athletes-load-more-btn:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}


/* ---------- STATS SECTION ---------- */

.section-stats {
  background: #14171f;
  padding: 80px 0;
}

.section-stats .section-label {
  color: rgba(255,255,255,0.3);
}

.section-stats .section-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 0;
}

.section-stats .section-title em {
  color: #3D7BD9;
  font-style: italic;
}

.stats-header {
  margin-bottom: 52px;
}

/* 4-column stats grid with dividers */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 52px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-item:nth-child(2n) { border-right: none; }

@media (min-width: 768px) {
  .stat-item               { border-bottom: none; }
  .stat-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child    { border-right: none; }
}

.stat-item__value {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item:nth-child(1) .stat-item__value { color: #3D7BD9; }
.stat-item:nth-child(2) .stat-item__value { color: #2BB673; }
.stat-item:nth-child(3) .stat-item__value { color: rgba(255,255,255,0.9); }
.stat-item:nth-child(4) .stat-item__value { font-style: italic; color: #3D7BD9; }

.stat-item__label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 140px;
}

/* Founder quote */
.founder-quote {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 44px;
  max-width: 680px;
}

.founder-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.founder-quote__attr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}


/* ---------- FOOTER WORDMARK ---------- */

.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer__wordmark-dot {
  color: #3D7BD9;
}
