.hero-section {
  background: #1a1a1a;
  height: 100vh;          /* ← cambia min-height por height */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 52%;
  padding: 0 40px 0 60px;
  flex-shrink: 0;
}
.hero-title {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-diagonal {
  position: absolute;
  top: 0;
  left: calc(46% - 30px);
  width: 60px;
  height: 100%;
  background: #f5a800;
  clip-path: polygon(70% 0%, 100% 0%, 30% 100%, 0% 100%);
  z-index: 3;
}
.hero-image {
  position: absolute;
  right: 0; top: 0;
  width: 56%; height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.5);
}
.hero-fade {
  position: absolute;
  top: 0; left: 0;
  width: 62%; height: 100%;
  background: linear-gradient(to right, #1a1a1a 65%, transparent 100%);
  z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-content {
    width: 100%;
    padding: 150px 24px 32px;  /* ← 124px = alto exacto de tu nav */
    position: relative;
    z-index: 4;
  }

  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-diagonal { display: none; }

  .hero-image {
    position: relative;
    right: auto; top: auto;
    width: 100%;
    height: 250px;
    filter: brightness(0.75);
    display: block;
    flex-shrink: 0;
  }

  .hero-fade { display: none; }
}