
/* Hero AppHabitat */
.hero-apphabitat {
  width: 100%;
  background: #f4f4f4;
  padding: 3.5rem 0 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 380px;
  box-shadow: 0 2px 16px rgba(12,43,78,0.07);
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
}
.hero-left {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  background: #fff;
}
.hero-logo-box {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  height: 80px;
  width: auto;
  display: block;
}
.hero-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0C2B4E;
  margin-bottom: 1.1rem;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 1.13rem;
  color: #1A3D64;
  font-family: 'Inter', 'Montserrat', sans-serif;
  line-height: 1.6;
  margin-bottom: 0;
}
.hero-right {
  flex: 0 0 40%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #e9eef6;
}
.hero-img-edificios {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
}

.hero-demo-btn {
  display: block;
  margin-top: 1.2rem;
  margin-left: 0;
  margin-right: 0;
  padding: 0.7em 2.1em;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #0C2B4E 0%, #1A3D64 100%);
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(12,43,78,0.10);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.hero-demo-btn:hover {
  background: linear-gradient(90deg, #1A3D64 0%, #0C2B4E 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(12,43,78,0.18);
  transform: scale(1.07) rotate(-2deg);
}

@media (max-width: 900px) {
    .hero-demo-btn {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .hero-title {
        text-align: center;
    }
  .hero-content {
    flex-direction: column;
    min-height: unset;
    border-radius: 1rem;
  }
  .hero-left, .hero-right {
    flex: unset;
    width: 100%;
    padding: 0rem 1.2rem;
    border-radius: 0;
  }
  .hero-left {
    padding: 1.5rem 1.2rem;
  }

  .hero-right img{
    width: 100vw;
    border-radius: 0px;
  }
  .hero-logo {
    display: none;
  }
  .hero-content {
    border-radius: 0px;
    margin-top: -5rem;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
}