* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #080808; color: #fff; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #080808; position: sticky; top: 0; z-index: 100;
}
.logo img { height: 38px; width: auto; }
.nav { display: flex; gap: 48px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav a { color: #888; text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 14px; font-weight: 600; color: #fff; cursor: pointer; }
.user-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all .3s; }

/* ══════════════════════════════
   PAGE HEADER
══════════════════════════════ */
.page-header {
  padding: 72px 48px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.page-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: #E8272A;
  margin-bottom: 20px;
}

.page-title {
  font-size: 44px; font-weight: 800;
  line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.page-subtitle {
  font-size: 16px; color: #777;
  line-height: 1.6;
}

/* ══════════════════════════════
   FILTER BAR
══════════════════════════════ */
.clubs-filter {
  display: flex; justify-content: center; gap: 10px;
  padding: 0 20px 48px;
  flex-wrap: wrap;
}

.cf-btn {
  padding: 11px 22px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: #888; font-size: 13.5px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}
.cf-btn.active { background: #E8272A; border-color: #E8272A; color: #fff; }
.cf-btn:hover:not(.active) { border-color: rgba(255,255,255,0.35); color: #fff; }

/* ══════════════════════════════
   GRID DE CLUBS
══════════════════════════════ */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 40px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.club-card {
  position: relative;
  display: block;
  height: 480px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.club-card.featured {
  grid-row: span 1;
}

.cc-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.club-card:hover .cc-img {
  transform: scale(1.06);
}

.cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,8,8,0.05) 0%,
    rgba(8,8,8,0.15) 40%,
    rgba(8,8,8,0.92) 100%);
  transition: background .3s;
}

.cc-overlay.dark {
  background: linear-gradient(180deg,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.95) 100%);
}

.cc-badge {
  position: absolute; top: 18px; left: 18px;
  z-index: 3;
  background: rgba(232,39,42,0.15);
  border: 1px solid rgba(232,39,42,0.5);
  color: #E8272A;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.cc-badge.gold {
  background: rgba(201,162,39,0.15);
  border-color: rgba(201,162,39,0.5);
  color: #C9A227;
}

.cc-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}

.cc-type {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.cc-name {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.1;
  transition: margin .3s;
}

.cc-zone {
  display: block;
  font-size: 12.5px; color: rgba(255,255,255,0.55);
}

.cc-hover {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .35s ease;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.club-card:hover .cc-name {
  margin-bottom: 12px;
}

.club-card:hover .cc-hover {
  max-height: 60px;
  opacity: 1;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cc-next {
  font-size: 12px; color: rgba(255,255,255,0.7);
}

.cc-cta {
  font-size: 13px; font-weight: 700;
  color: #E8272A;
}

/* ══════════════════════════════
   WHATSAPP
══════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  z-index: 999; transition: transform .2s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-tooltip {
  position: absolute; right: 70px;
  background: #fff; color: #080808;
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: #fff;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .clubs-grid { grid-template-columns: repeat(2, 1fr); }
  .page-title { font-size: 34px; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .nav { display: none; }
  .user-btn { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; z-index: 999; display: flex !important;
  }
  .nav.open a { font-size: 28px; font-weight: 700; color: #fff; }

  .page-header { padding: 40px 20px 28px; }
  .page-title { font-size: 26px; }
  .page-subtitle { font-size: 14px; }
  .clubs-filter { padding: 0 16px 32px; }
  .clubs-grid { grid-template-columns: 1fr; padding: 0 16px 60px; gap: 14px; }
  .club-card { height: 340px; }
  .cc-hover { max-height: 60px; opacity: 1; margin-top: 10px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); }
  .cc-name { margin-bottom: 12px; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
