/* Ajuste específico del hero: texto con aire y mockup sin deformación. */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 72px;
}

.hero-copy {
  max-width: 570px;
}

.hero h1 {
  font-size: clamp(3.25rem, 4.5vw, 4.85rem);
  line-height: 1.04;
}

.hero-img {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.hero-img img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 74% center;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.orbit {
  inset: -18px;
  border-radius: 44%;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.2rem);
  }

  .hero-img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 650px) {
  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.65rem);
    line-height: 1.02;
  }

  .hero-img {
    aspect-ratio: 1 / 1;
  }

  .hero-img img {
    object-position: 76% center;
  }

  .orbit {
    display: none;
  }
}
