.hero-section {
  height: 70vh;
  background-color: var(--color-white);
  margin-top: 1rem;
}

/* Contenido alineado a start */
.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-dark);
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons .btn {
  font-weight: 500;
}

/* Imagen */

/* Imagen controlada */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-image {
  max-height: 70vh; /* Nunca supera el hero */
  width: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {

  .hero-section {
    height: auto;
    padding: 5rem 0 3rem 0;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .hero-image-wrapper {
    justify-content: center !important;
  }

  .hero-title {
    font-size: 2.3rem;
  }

}