/* =============================================
   ELEVENGOATS11 — style.css
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: #FFFFFF;
  color: #0A0A0A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 54px;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  z-index: 1000;
  padding: 0 40px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px; color: #C9920A; letter-spacing: 0.06em;
}
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.nav-links a:hover { color: #C9920A; }
.nav-right { margin-left: auto; }

/* Botón IG pill — navbar */
.ig-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(201, 146, 10, 0.55);
  border-radius: 999px;
  padding: 6px 14px 6px 11px;
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}
.ig-pill svg { flex-shrink: 0; }
.ig-pill:hover {
  color: #C9920A;
  border-color: #C9920A;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
  touch-action: manipulation;
}
.hamburger span {
  display: block; width: 22px; height: 1px; background: #FFFFFF;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 54px; left: 0; right: 0;
  background: #0A0A0A; z-index: 999;
  flex-direction: column; align-items: center;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-menu.open { max-height: 320px; padding: 24px 0 28px; }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 12px 0; transition: color 0.2s;
}
.mobile-menu a:hover { color: #C9920A; }
.ig-link-mobile { margin-top: 8px; display: flex; align-items: center; }


/* =============================================
   HERO — SPLIT 50/50 — MEJORADO
   ============================================= */
.hero {
  height: 100vh;
  padding-top: 54px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Columna izquierda */
.hero-text {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 52px 0 64px;
  position: relative;
  overflow: hidden;
}

/* Eyebrow: línea — label — línea */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-rule {
  display: block;
  flex: 1;
  height: 1px;
  background: #E2E2E2;
  max-width: 40px;
}
.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9920A;
  white-space: nowrap;
}

/* Título principal */
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}
.ht-main {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(64px, 7.5vw, 108px);
  letter-spacing: 0.04em;
  color: #0A0A0A;
  /* Outline sutil para diferenciar de GOATS */
  -webkit-text-stroke: 0px;
}
/* GOATS en dorado — el corazón visual */
.ht-accent {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(64px, 7.5vw, 108px);
  letter-spacing: 0.04em;
  color: #C9920A;
}

/* Bloque inferior: número + subtítulo + CTA */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 28px;
}

/* Número 11 grande decorativo con borde */
.hero-num-block {
  flex-shrink: 0;
  line-height: 1;
  border-right: 1px solid #E2E2E2;
  padding-right: 20px;
}
.hero-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 6vw, 80px);
  color: transparent;
  -webkit-text-stroke: 1px #C9920A;
  line-height: 1;
  display: block;
}

/* Subtítulo + CTA */
.hero-sub-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1.3vw, 14px);
  color: #6B6B6B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
}
.hero-cta {
  display: inline-block;
  border: 1px solid #C9920A;
  color: #C9920A;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 38px;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  align-self: flex-start;
}
.hero-cta:hover { background: #C9920A; color: #0A0A0A; }

/* Columna derecha — imagen */
.hero-image {
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
/* Fade negro en el borde inferior — corte elegante */
.hero-img-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}
/* Vignette izquierda muy sutil */
.hero-img-vignette::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70px; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.12), transparent);
}


/* =============================================
   STATS STRIP — entre hero y clubes
   ============================================= */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 64px;
  height: 86px;
  background: #0A0A0A;
  border-top: 0.5px solid #1A1A1A;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #C9920A;
  line-height: 1;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: #2A2A2A;
  flex-shrink: 0;
}

/* =============================================
   SECCIONES
   ============================================= */
.section { padding: 88px 64px; }
.section--alt { background: #FAFAFA; }
.section-header { margin-bottom: 40px; }
.section-label {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #C9920A; margin-bottom: 8px;
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(28px, 4vw, 46px); letter-spacing: 0.06em; color: #0A0A0A;
}
.section-line { width: 32px; height: 1px; background: #C9920A; margin-top: 16px; }


/* =============================================
   GRID
   ============================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


/* =============================================
   TARJETA DE PRODUCTO
   ============================================= */
.card {
  background: #FFFFFF;
  border: 0.5px solid #E2E2E2;
  border-radius: 0;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}
.card.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.card:nth-child(4n+2) { transition-delay: 0.07s; }
.card:nth-child(4n+3) { transition-delay: 0.14s; }
.card:nth-child(4n+4) { transition-delay: 0.21s; }

/* Área imagen — object-position: top para uniformar el zoom de las camisetas */
.card-img-wrap {
  aspect-ratio: 3 / 4;
  background: #F0F0F0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease, opacity 0.15s ease;
  will-change: transform;
}
.card-img-wrap:hover img { transform: scale(1.05); }

.side-label {
  position: absolute; top: 8px; left: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.5); color: #FFFFFF;
  padding: 2px 7px; border-radius: 3px;
  pointer-events: none; z-index: 2;
}
.badge-brand {
  position: absolute; top: 8px; right: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.85); border: 0.5px solid #E2E2E2;
  border-radius: 3px; padding: 2px 6px; color: #6B6B6B;
  pointer-events: none; z-index: 2;
}
.dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; pointer-events: none; z-index: 2;
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: #D8D8D8; transition: background 0.2s; }
.dot.active { background: #C9920A; }

.card-body { padding: 12px 14px 14px; }
.card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 17px; letter-spacing: 0.04em; color: #0A0A0A; margin: 0;
}
.card-desc {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 11px; color: #6B6B6B; margin-top: 3px;
}
.card-badge {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #C9920A; margin-bottom: 3px;
}
.card-btn {
  display: block; width: 100%; margin-top: 10px;
  background: #0A0A0A; color: #FFFFFF;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px; border-radius: 4px; border: none;
  text-align: center; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.card-btn:hover { background: #C9920A; color: #0A0A0A; }


/* =============================================
   TOGGLE VERSIÓN UNITED
   ============================================= */
.version-toggle { padding: 10px 14px 0; display: flex; gap: 6px; }
.version-btn {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 14px; border-radius: 4px; cursor: pointer;
  transition: all 0.2s; border: 0.5px solid #E2E2E2;
  color: #6B6B6B; background: #FFFFFF;
}
.version-btn.active { border: 1px solid #C9920A; color: #C9920A; background: transparent; }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0A0A0A; padding: 52px 40px 44px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-logo img { height: 30px; width: auto; }
.footer-logo-text {
  font-family: 'Bebas Neue', cursive; font-size: 20px; color: #C9920A; letter-spacing: 0.06em;
}
.footer-ig { margin-top: 18px; }
.footer-copy {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 11px; color: #555555; margin-top: 14px;
}


/* =============================================
   RESPONSIVE ≤1100px
   ============================================= */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .stats-strip { padding: 0 32px; }
  .stat-label { font-size: 9px; }
}


/* =============================================
   RESPONSIVE ≤768px
   ============================================= */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .navbar { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh 55vh;
    height: 100vh;
  }
  .hero-image { order: 1; }
  .hero-text { order: 2; padding: 24px 28px; justify-content: center; }
  .hero-num-block { display: none; }

  /* Stats strip mobile — 2 columnas, altura auto, sin overflow */
  .stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 0;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 18px 12px;
    flex: none;
  }
  .stat-item:nth-child(1) { border-right: 1px solid #2A2A2A; border-bottom: 1px solid #2A2A2A; }
  .stat-item:nth-child(3) { border-right: 1px solid #2A2A2A; border-bottom: 1px solid #2A2A2A; }
  .stat-item:nth-child(2) { border-bottom: 1px solid #2A2A2A; }
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 8.5px; letter-spacing: 0.1em; text-align: center; }

  .section { padding: 60px 24px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}


/* =============================================
   RESPONSIVE ≤420px
   ============================================= */
@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; }
  .hero-text { padding: 20px 24px; }
}