/* =========================
   RESET + VARIABLES
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00575b;
  --accent: #e4022c;
  --secondary: #f5c6cb;

  --text: #083437;
  --line: rgba(0, 0, 0, .10);

  --shadow: 0 20px 55px rgba(0, 0, 0, .16);
  --radius: 18px;
}

/* =========================
   BODY + CONTENEDOR
========================= */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--accent) 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;
}

/* =========================
   FIGUERES (NO TOCAR)
========================= */
.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: 2.2rem;
}

.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 rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .04);
}

.club-image img {
  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 rgba(0, 0, 0, .10);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 87, 91, .35);
}

.btn.secondary {
  background: var(--secondary);
  color: #6a0012;
}

/* =========================
   FOOTER CLUB
========================= */
.club-footer {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  font-size: .86rem;
  text-align: center;
}

/* =========================
   TPV CLUB (25% / 75%)
========================= */
.tpvclub {
  padding: 24px;
}

/* CONTENEDOR PRINCIPAL */
.tpv-layout {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 20px;
  align-items: start;
}

/* IZQUIERDA: TÍTULO + LOGO */
.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-brand {
  display: flex;
  align-items: flex-start;
}

.tpv-brand img {
  width: auto;
  max-width: 160px;
  height: auto;
  display: block;
}

/* DERECHA: TEXTO */
.tpv-right {
  color: #4a0b15;
  line-height: 1.6;
  max-width: 80ch;
}

/* Línea final */
.tpv-footer-line {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, .10);
  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: #6a0012;
}

/* Logo inline a la derecha, sin fondo */
.tpv-logo-inline {
  display: flex;
  align-items: center;
}

.tpv-logo-inline img {
  width: auto;
  max-width: 60px;
  height: auto;
  display: block;
}

/* CTA */
.tpv-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}


.tpv-logo-small img {
  width: 100%;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 860px) {

  /* FIGUERES */
  .club-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .club-image {
    height: 220px;
  }

  .buttons {
    justify-content: center;
  }

  /* TPV CLUB */
  .tpv-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tpv-left {
    align-items: center;
  }

  .tpv-brand img {
    max-width: 180px;
  }

  .tpv-cta {
    justify-content: center;
  }
}