/* =========================
   RESET + VARIABLES
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: rgb(231, 49, 85);
  --accent: #333;
  --secondary: #ffe3e5;

  --text: #1f1f1f;
  --line: rgba(0, 0, 0, .10);

  --shadow: 0 20px 55px rgba(0, 0, 0, .16);
  --radius: 18px;
}

a {
  color: rgb(231, 49, 85);
}

/* =========================
   BODY + CONTENEDOR
========================= */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #fff4f4 45%, #333 100%);
  min-height: 100vh;
  color: var(--text);
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 16px 60px;
}

/* =========================
   CARDS
========================= */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .4);
  overflow: hidden;
  margin-bottom: 24px;
}

/* =========================
   TOTALFIT
========================= */
.club-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: 28px;
  align-items: center;
}

.club-text h1 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.club-text p {
  color: #2c2c2c;
  line-height: 1.55;
  margin-bottom: 18px;
}

.club-image {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #333;
  background: #333;
}

.club-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BOTONES
========================= */
.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: .92rem;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid #333;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(217, 31, 38, .28);
}

.btn.secondary {
  background: var(--secondary);
  color: rgb(231, 49, 85);
}

/* =========================
   FOOTER CLUB
========================= */
.club-footer {
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  font-size: .86rem;
  text-align: center;
}

/* =========================
   TPV CLUB
========================= */
.tpvclub {
  padding: 24px;
}

.tpv-layout {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 20px;
  align-items: start;
}

.tpv-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tpv-left h2 {
  font-size: 1.2rem;
  letter-spacing: -.3px;
  color: var(--primary);
  text-transform: lowercase;
  line-height: 1.2;
}

.tpv-right {
  color: #3f3f3f;
  line-height: 1.6;
  max-width: 80ch;
}

.tpv-footer-line {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #333;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.tpv-tagline {
  font-weight: 900;
  color: var(--primary);
  font-size: 1rem;
}

.tpv-tagline span {
  font-weight: 700;
  color: #4b4b4b;
}

.tpv-logo-inline {
  display: flex;
  align-items: center;
}

.tpv-logo-inline img {
  width: auto;
  max-width: 60px;
  height: auto;
  display: block;
}

.tpv-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.tpv-logo-small img {
  width: 100%;
  max-width: 180px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 860px) {
  .club-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .club-image {
    height: 220px;
  }

  .buttons {
    justify-content: center;
  }

  .tpv-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tpv-left {
    align-items: center;
  }

  .tpv-cta {
    justify-content: center;
  }

  .tpv-footer-line {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tpv-logo-inline {
    justify-content: center;
  }
}