.hero-home {
    position: relative;
    min-height: calc(100vh - 90px); /* deja espacio para tu header si lo hay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }

  .hero-home__bg {
    position: absolute;
    inset: 0;
    /* 📸 Imagen externa tipo familia en casa */
    background-image: url("https://images.pexels.com/photos/1080696/pexels-photo-1080696.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center right;
    filter: brightness(0.7);
    z-index: -2;
  }

  .hero-home__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.65)
    );
    z-index: -1;
  }

  .hero-home__content {
    width: 100%;
    max-width: 960px;
    padding: 2rem 1.5rem 3rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-home__title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .hero-home__tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
  }

  .hero-home__tab {
    padding: .55rem 1.5rem;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
  }

  .hero-home__search {
    border-radius: 999px;
    padding: .6rem .6rem .6rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: stretch;
  }

  .hero-home__field {
    flex: 1 1 180px;
    border: none;
    outline: none;
    font-size: .9rem;
  }

  .hero-home__select {
    flex: 0 1 180px;
    border: none;
    outline: none;
    font-size: .9rem;
  }

  .hero-home__button {
    flex: 0 0 auto;
    border: none;
    padding: 0 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }

  .container{
    margin: 0 !important;
    max-width: none !important;
  }