/* Media query breakpoints */
.c-beneficios {
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
}
.c-beneficios__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  max-width: 290px;
  height: auto;
  margin: 40px auto 0;
  padding: 24px 0;
  border: solid 1px var(--darkGrayishBlue300);
  border-radius: 8px;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .c-beneficios__items {
    flex-wrap: nowrap;
    gap: 32px;
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .c-beneficios__items {
    gap: 64px;
  }
}
.c-beneficios__items > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}
@media (min-width: 768px) {
  .c-beneficios__items > div {
    flex-direction: row;
    align-items: unset;
    gap: 32px;
    width: unset;
  }
}
@media (min-width: 1025px) {
  .c-beneficios__items > div {
    gap: 64px;
  }
}
.c-beneficios__items > div::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 243px;
  height: 2px;
  background-color: var(--darkGrayishBlue300);
}
@media (min-width: 768px) {
  .c-beneficios__items > div::after {
    width: 2px;
    max-width: unset;
    height: 84px;
  }
}
.c-beneficios__items > div:last-child::after {
  content: none;
}
/*# sourceMappingURL=beneficios.css.map */
