{#@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');
#}
.hero-section {
  background-image: var(--bg-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}
.flex_hero {
  display: flex;
  justify-content: space-between;
}
.left-content {
  max-width: 55%;
  z-index: 2;
  padding: 50px 0;
  display: flex;
}
.heading * {
  font-size: 50px;
  font-family: 'Helvetica', sans-serif;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.subtext * {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}
.stats {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.avatars {
  display: flex;
  margin-right: 10px;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white; /* Placeholder para fotos */
  margin-right: -10px;
  border: 2px solid #3b4acc;
}
.stat-text {
  font-size: 16px;
}
.cta-button_hero {
  background-color: #bfff00; /* Verde lima */
  color: #3b4acc;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}
.right-image {
  max-width: 45%;
  position: relative;
}
.people-image {
  width: 100%;
  height: auto;
}
.bubble {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: #3b4acc;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.bubble1 {
  top: 42%;
  left: 10%;
  width: 150px;
}
.bubble2 {
  right: 34%;
  top: 58%;
  width: 200px;
}
.bubble3 {
  bottom: 10%;
  right: 10%;
  width: 180px;
}

@media (max-width: 1200px){
  .nav-links ul {
    gap: 0;
  }
  .nav-links ul li.hs-menu-item.hs-menu-depth-1 {
    display: flex;
    align-items: center;
  }
  .nav-links ul li a {
    padding: 10px 20px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flex_hero {
    flex-direction: column;
    align-items: center;
  }
  .left-content {
    max-width: 100%;
  }
  .right-image {
    max-width: 60%;
  }
  .heading * {
    font-size: 35px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flex_hero {
    flex-direction: column;
  }
  .left-content {
    max-width: 100%;
  }
  .right-image {
    max-width: 80%;
  }
  .heading * {
    font-size: 30px;
    text-align: center;
  }
  .subtext * {
    font-size: 16px;
    text-align: center;
  }
}