.Single-cultura {
  &._informacoes {
    .item-text {
      max-width: 452px;
      display: flex;
      flex-direction: column;
      justify-content: center;

      .Title {
        margin-bottom: 16px;
      }

      .Body {
        letter-spacing: 0.32px;
      }
    }
  }

  &._desafios {
    .Title {
      margin-bottom: 48px;
      text-align: center;
    }
    .cards-container {
      display: flex;
      gap: 16px 24px;
      flex-wrap: wrap;

      .card {
        padding: 24px;

        img {
          height: 32px;
        }

        h2 {
          color: $title;
          font-size: $text-df;
          max-width: 309px;
          font-weight: 600;
          line-height: normal;
          margin-top: 40px;
          margin-bottom: 12px;
        }

        .Body {
          font-size: $text-sm;
          max-width: 309px;
        }
      }
    }
  }

  &._beneficios {
    .Container {
      display: flex;
      justify-content: space-between;
      gap: 24px;

      .card-beneficio {
        position: relative;
        display: block;
        border-radius: 4px;
        overflow: hidden;
        aspect-ratio: 551/382;

        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) -29.32%,
            rgba(0, 0, 0, 0.9) 100%
          );
          transition: all 0.3s ease-in;
        }

        img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }

        h3 {
          position: absolute;
          bottom: 161px;
          left: 50%;
          z-index: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
          white-space: nowrap;
          font-size: 24px;
          font-weight: 600;
          color: #fff;
          transform: translateX(-50%);
          transition: all 0.3s ease-in;
        }

        span {
          position: absolute;
          z-index: 1;
          bottom: 30px;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          text-align: center;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: normal;
          color: #42cf7b;
          opacity: 0;
          transition: all 0.3s ease-in;
        }

        &:hover {
          h3 {
            bottom: 181px;
          }

          span {
            opacity: 1;
            bottom: 35px;
          }

          &::after {
            background: linear-gradient(
              180deg,
              rgba(0, 0, 0, 0) -29.32%,
              rgba(0, 0, 0, 0.9) 100%
            );
          }
        }
      }
    }
  }

  @media screen and (max-width: $md) {
    &._beneficios {
      .Container {
        flex-direction: column;
        gap: 24px;
      }
    }
  }
}
