#productos {
  .products__container {
    max-width: 1246px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    .products__container__inner__item {
      .products__container__item {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        .products__item__banner {
          width: 100%;
        }
        .products__container__item__arrow {
          position: absolute;
          right: 35px;
          top: 55px;
          transition: all 0.6s ease;
          transform: rotate(180deg);

          /* transform: translateY(-50%); */
          &.is-rotated {
            transform: rotate(360deg);
            transition: all 0.6s ease;
          }
        }
        h3 {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 60px;
          color: var(--white);
          font-family: "Goldplay Bold";
          margin: 0;
        }
      }
      .products__item__content {
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 20px 0;
        gap: 20px;
        flex-flow: wrap;
        &.products__item__content--open {
          display: flex;
        }
        .products__item__content__element {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          width: 48%;
          max-width: 613px;
          border: 4px solid;
          border-radius: 20px;
          padding: 12px;
          &:nth-child(odd) {
            border-color: #dfecff;
          }
          &:nth-child(even) {
            border-color: #edf8c9;
          }
          p {
            color: #0049b7;
            font-size: 32px;
            font-family: "Goldplay Bold", sans-serif;
            font-weight: bold;
            margin: 0;
            text-align: center;
            width: 100%;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 1100px) {
  #productos {
    .products__container {
      .products__container__inner__item {
        .products__container__item {
          padding: 20px 0;
          .products__container__item__arrow {
            right: 35px;
            top: 65px;
            width: 40px;
          }
          h3 {
            font-size: 50px;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  #productos {
    .products__container {
      gap: 5px;
      .products__container__inner__item {
        .products__container__item {
          h3 {
            font-size: 26px;
            width: 100%;
            text-align: center;
            padding: 8px 0;
          }
          .products__container__item__arrow {
            width: 30px;
            top: 50%;
            transform: translateY(-50%) rotate(180deg);
            &.is-rotated {
              transform: translateY(-50%) rotate(360deg);
            }
          }
        }
        .products__item__content {
          margin: 4px 0;
          .products__item__content__element {
            width: 100%;
            gap: 8px;
            flex-direction: column;
            p {
              font-size: 22px;
            }
          }
        }
      }
    }
  }
}
