.main-article-product-intern {
  padding: 62px 0px 62px 0px;
}

.main-article-product-intern-flex-container {
  width: 90%;
  display: flex;
  margin: 0 auto;
  max-width: 1300px;
  flex-direction: column;
}

.image-box-article {
  margin-bottom: 16px;
}

.main-article-product-intern__title {
  color: #1e1e1f;
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
}

.main-article-product-intern__sub-title {
  color: #696a6d;
  font-weight: bold;
  font-size: 28px;
  line-height: 36px;
}

.main-article-product-intern__separator {
  height: 6px;
  background-color: #0594a8;
  max-width: 200px;
  border-radius: 50px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.main-article-product-intern h2 {
  color: #1e1e1f;
  font-weight: bold;
  font-size: 28px;
  line-height: 36px;
  text-align: left;
  margin-bottom: 16px;
}

.main-article-product-intern h3 {
  color: #1e1e1f;
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  text-align: left;
  margin-bottom: 16px;
}

.main-article-product-intern ul {
  margin-bottom: 16px;
}

.main-article-product-intern li {
  color: #696a6d;
  font-size: 16px;
  line-height: 32px;
  margin-left: 16px;
}

.main-article-product-intern p {
  color: #696a6d;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 16px;
}

.image-box-article--flex {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}

/* HELPER */

.products-helper {
  background-color: #6a6b6d;
  border-radius: 4px;
  padding: 32px 0px;
  margin-bottom: 32px;
  background-image: url(../images/abstract-featured-products.webp);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.products-helper-container {
  gap: 16px;
  width: 95%;
  display: flex;
  margin: 0 auto;
  max-width: 1300px;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.products-helper__title {
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: bold !important;
  text-align: center !important;
  margin-bottom: unset !important;
}

.products-helper__button {
  color: #fff;
  font-weight: bold;
  background-color: #0594a8;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 52px;
  position: relative;
  bottom: 0px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

.products-helper__button:hover {
  bottom: 5px;
  position: relative;
  background-color: #035a66;
  transition: 0.3s ease-in-out;
}

/* HELPER */

/* MORE PRODUCTS -> INÍCIO */

.more-products {
  margin: 32px 0px;
}

/* MORE PRODUCTS -> FIM */

/* COLLAPSIBLE */

.collapsible {
  background-color: #0594a8;
  color: #fff;
  font-weight: bold;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  line-height: 20px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 16px;
  height: 52px;
  border-radius: 4px;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.collapsible:after {
  content: "\002B";
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  position: relative;
  bottom: 0px;
}

.active:after {
  content: "\002D";
  font-size: 38px;
  color: #fff;
  font-weight: bold;
  position: relative;
  bottom: 3px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.collapsible:hover {
  background-color: #035a66;
  transition: 0.3s ease-in-out;
}

/* Style the collapsible content. Note: hidden by default */
.content-collapsible {
  padding: 0px 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  margin-bottom: 24px;
}

.content-collapsible p {
  margin-top: 16px;
}

.content-collapsible .active {
  max-height: unset;
}

/* COLLAPSIBLE */

@media only screen and (min-width: 1100px) {
  .main-article-product-intern-flex-container {
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
  }

  .main-article-product-intern-container {
    width: 90%;
  }

  .image-box-article--flex {
    align-items: end;
    flex-direction: row;
  }

  /* PRODUCTS CONTACT -> INÌCIO */
  .products-helper-container {
    width: 90%;
  }

  .products-helper {
    min-width: 360px;
    height: 180px;
    display: flex;
    padding: unset;
    align-items: center;
    justify-content: center;
  }

  .products-helper__button {
    width: 100%;
  }
}

@media only screen and (min-width: 1300px) {
  .main-article-product-intern-flex-container {
    flex-direction: row;
    gap: 16px;
  }

  .products-helper {
    width: 420px;
  }
}
