:root {
  --orange: #e86b00;
  --blue: #1653bf;
  --dark: #07111f;
  --light: #f3f3f3;
  --text: #1f2937;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #dcdcdc;
  color: var(--text);
}

.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 360px 1fr;
}

.sidebar {
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
}

.sidebar-inner {
  width: 100%;
  max-width: 270px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #5b6470;
  margin: 0 0 28px;
}

.contacto h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--blue);
}

.item {
  margin-bottom: 16px;
}

.label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.item a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 83, 191, 0.25);
}

.item a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 60px 70px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("assets/gym-bg.jpeg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0)),
    radial-gradient(ellipse at 20% 100%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(ellipse at 60% 100%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(255, 255, 255, 0.08), transparent 50%);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.lead {
  margin: 24px 0 20px;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  line-height: 1.55;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.divider {
  width: min(420px, 80%);
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.15));
  margin: 28px 0 20px;
}

.mini {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    padding: 30px 22px;
  }

  .sidebar-inner {
    max-width: 100%;
  }

  .logo {
    max-width: 320px;
  }

  .hero {
    min-height: 58vh;
    padding: 42px 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .lead {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 20px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .eyebrow {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
    margin: 18px 0;
  }

  .divider {
    width: 100%;
    margin: 22px 0 18px;
  }

  .mini {
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 560px) {
  .intro,
  .item p {
    font-size: 0.95rem;
  }

  .hero {
    padding: 28px 16px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 11vw, 2.8rem);
    letter-spacing: 0;
  }

  .lead {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .mini {
    font-size: 0.72rem;
    line-height: 1.45;
  }
}