.section-hero-secundario {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 20px;
    border-radius: 24px;
    background-color: #f2f2f2;
    flex-direction: row;
  }

  .section-hero-secundario.image-right {
    flex-direction: row-reverse;
  }

  .hero-secundario-img,
  .hero-secundario-text {
    flex: 1;
  }

  .hero-secundario-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
.hero-secundario-text h2 {
    font-family: 'Montserrat';
    font-size: 50px;
    font-weight: 600;
    line-height: 118%;
    color: #1c1c1c;
    letter-spacing: -0.16px;
    max-width: 500px;
	margin-bottom: 20px;
}

.hero-secundario-text p {
    font-family: 'Open Sans';
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.8px;
    font-weight: 500;
    color: #1c1c1c;
	max-width: 550px;
}
  @media (max-width: 900px) {
    .section-hero-secundario {
      flex-direction: column !important;
      padding: 20px;
      gap: 30px;
      text-align: center;
    }
  }