/* -------------------------------------------------------------------------- */
/* Hero — imagens grandes dentro da faixa cinza fixa (referência)             */
/* -------------------------------------------------------------------------- */

.hero {
  background: radial-gradient(ellipse 110% 90% at 68% 45%, #f7f7f7 0%, #ececec 55%, #e6e6e6 100%);
  border-bottom: 1px solid var(--color-gray-200);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 8px 16px;
  padding-block: 24px 20px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 420px;
}

.hero__badge {
  display: inline-block;
  padding: 7px 13px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-gray-600);
  max-width: 32ch;
  line-height: 1.5;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  margin-top: 2px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
}

.hero__cta:hover {
  opacity: 0.92;
  text-decoration: none;
}

/* Faixa cinza à direita — altura fixa, não cresce */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  height: clamp(272px, 31vw, 312px);
}

.hero__collage {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 100%;
  margin-left: auto;
  transform: scale(1.28);
  transform-origin: 90% 52%;
}

.hero__item {
  position: absolute;
  margin: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero__item img {
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.12)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.hero__item--white,
.hero__item--fisio,
.hero__item--long {
  align-items: flex-start;
  top: 0;
}

.hero__item--white img,
.hero__item--fisio img {
  height: clamp(268px, 31vw, 308px);
  object-position: 50% 0%;
}

.hero__item--long img {
  height: clamp(282px, 33vw, 322px);
  object-position: 50% 0%;
}

/* Branca — direita, atrás */
.hero__item--white {
  right: -5%;
  z-index: 1;
}

/* Cinza fisioterapia — esquerda */
.hero__item--fisio {
  left: 1%;
  z-index: 2;
}

/* Manga longa preta — centro entre as duas brancas */
.hero__item--long {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Boné — inferior esquerdo, no limite inferior da área cinza */
.hero__item--cap {
  left: -2%;
  bottom: 0;
  transform: translateY(8px);
  z-index: 4;
  align-items: flex-end;
}

.hero__item--cap img {
  height: clamp(112px, 14vw, 158px);
  object-position: 50% 100%;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 20px 18px;
  }

  .hero__visual {
    order: -1;
    justify-content: center;
    height: clamp(248px, 60vw, 292px);
  }

  .hero__collage {
    margin-inline: auto;
    transform: scale(1.15);
    transform-origin: 50% 52%;
  }

  .hero__item--white img,
  .hero__item--fisio img {
    height: clamp(248px, 60vw, 292px);
  }

  .hero__item--long img {
    height: clamp(260px, 63vw, 304px);
  }

  .hero__item--long {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__item--cap img {
    height: clamp(96px, 24vw, 132px);
  }
}
