/* ==========================================================================
   MB FITNESS — V1 (hero de sustitución, "plazas terminadas")
   ========================================================================== */

:root {
  --ink: #0A0A0A;
  --paper: #FFFFFF;
  --mut: #737373;
  --status-red: #E5484D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px 40px;
}

.hero-logo {
  width: 150px;
  height: auto;
}

.hero-tagline {
  margin-top: 8px;
  font-size: 14px;
  color: var(--mut);
}

.hero-status {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--status-red);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 640px;
}

.hero-subtitle {
  margin-top: 14px;
  font-size: clamp(16px, 4vw, 19px);
  color: var(--mut);
}

.hero-subtitle strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-mascot {
  width: 100%;
  max-width: 320px;
  margin-top: auto;
  padding-top: 64px;
}
