.explore-hero {
  position: relative;

  .hero {
    padding: 4rem 1.5rem;
    display: flex;
    align-items: center;
    height: calc(100vw * 820 / 1440);
    max-height: 720px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: relative;
    overflow: hidden;

    .subtitle {
      color: var(--white-color);
      font-family: var(--font-regular-400);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px;
    }

    .title {
      color: var(--white-color);
      font-family: var(--font-semibold-600);
      font-size: clamp(2.188rem, 5vw + 1rem, 3.75rem);
      font-style: normal;
      font-weight: 600;
      line-height: 64px;
    }

    p {
      color: var(--white-color);
      font-family: var(--font-regular-400);
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px;
    }

  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1.5rem;
  }

  .hero-footer {
    position: absolute;
    z-index: 3;
    bottom: 6rem;
    right: 6rem;

    .btn-play-video {
      color: var(--white-color);
      font-family: var(--font-light-300);
      font-size: 26px;
      font-style: normal;
      font-weight: 400;
      line-height: 140%;
      transition: .1s ease;

      svg path {
        transition: .1s ease;
      }

      span {
        display: inline-block;
        padding-right: 1rem;
        transition: .3s ease-in-out;
      }

      &:hover {
        color: var(--primary-color);
      }

      &:hover span {
        padding-right: .7rem;
      }

      &:hover svg path {
        stroke: var(--primary-color);
      }

    }

  }

}

.explore-subhero {
  background-color: var(--white-color);

  .subhero {
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #009CAB;
  }

  .number {
    display: block;
    margin-bottom: 1.75rem;
    color: var(--white-color);
    font-family: var(--font-medium-500);
    font-size: clamp(2.125rem, 5vw + 1rem, 2.5rem);
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
  }

  .titleh2 {
    color: var(--white-color);
    font-family: var(--font-semibold-600);
    font-size: clamp(1.8rem, 5vw + 1rem, 2.813rem);
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 0.7rem;
  }

  p {
    color: var(--white-color);
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  }

}

.explore-servicios {
  .container {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
  }

  .subtitle {
    color: var(--black-color);
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  }

  .titleh2 {
    color: var(--secondary-color);
    font-family: var(--font-semibold-600);
    font-size: clamp(2.125rem, 5vw + 1rem, 2.5rem);
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
  }

  .masonry {
    margin-top: 2rem;
    margin-bottom: 2rem;

    >div:nth-child(2) {
      margin-top: 10%;
    }

  }

}

.explore-cards {
  background-color: #E3E7F3;
  border-radius: var(--border-radius24);
  padding: 3rem;
  text-align: left;
  height: auto;

  .img-container {

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 16 / 9;
      border-radius: var(--border-radius24) !important;
      margin-bottom: 1rem;
    }
  }

  .titleh3 {
    color: var(--secondary-color);
    font-family: var(--font-semibold-600);
    font-size: clamp(1.625rem, 5vw + 1rem, 2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    margin-top: .6rem;
    margin-bottom: .6rem;
  }

  p {
    color: var(--black-color);
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  }

  .btn {
    margin-top: 1.5rem;
  }

}

.explore-cab {

  .container {
    padding: 2rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    text-align: center;

    .subtitle {
      color: var(--black-color);
      font-family: var(--font-regular-400);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px;
    }

    .title {
      color: var(--secondary-color);
      font-family: var(--font-semibold-600);
      font-size: clamp(2.188rem, 5vw + 1rem, 3.75rem);
      font-style: normal;
      font-weight: 600;
      line-height: 64px;
    }

  }

}

.explore-consulting {
  background-color: var(--color-gris-claro);
  border-radius: var(--border-radius24);

  .container {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;

    .row {
      align-items: center !important;
    }

    .subtitle {
      color: var(--black-color);
      font-family: var(--font-regular-400);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px;
    }

    .titleh2 {
      color: var(--secondary-color);
      font-family: var(--font-semibold-600);
      font-size: clamp(1.875rem, 3vw + 0.5rem, 2.563rem);
      font-style: normal;
      font-weight: 600;
      line-height: 56px;
      margin-bottom: 1.5rem;
    }

    p {
      line-height: 1.9;
    }

    .imggroup {
      border-radius: var(--border-radius24);
      overflow: hidden;

      img {
        width: 100%;
        height: auto;
      }

    }

    .text-content {
      padding-right: 4rem;
    }

  }

}

.explore-solutions {

  .container {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;

    .cab {

      .titleh2 {
        color: var(--secondary-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(1.875rem, 3vw + 0.5rem, 2.563rem);
        font-style: normal;
        font-weight: 600;
        line-height: 56px;
      }

    }

    .explore-solutions-hero {
      margin-top: 5rem;
    }

    .card-custom {
      border-radius: var(--border-radius24);
      background-color: var(--primary-color);
      border: none;

      .image-column {
        background-size: cover;
        background-position: center center;
        border-radius: var(--border-radius24);
        min-height: 320px;
        aspect-ratio: 16 / 9;
      }

      .coltext {
        padding: 4.5rem !important;
      }

      .card-number {
        color: var(--white-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(1.875rem, 3vw + 0.75rem, 2.5rem);
        font-style: normal;
        font-weight: 600;
        line-height: 60px;
        display: block;
        margin-bottom: 3rem;
      }

      .card-subtitle {
        color: var(--white-color);
        font-family: var(--font-regular-400);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
      }

      .card-title {
        color: var(--white-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(1.875rem, 3vw + 0.75rem, 2.5rem);
        font-style: normal;
        font-weight: 600;
        line-height: 56px;
      }

      .card-text {
        color: var(--white-color);
        font-family: var(--font-regular-400);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
      }

    }

    .explore-solution__body {
      .cards {
        margin: 1rem auto;
      }

    }

  }

}

.explore-ai {

  .container {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;

    .cab {
      .subtitle {
        color: var(--black-color);
        font-family: var(--font-regular-400);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
      }

      .title {
        color: var(--secondary-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(1.938rem, 3vw + 0.75rem, 2.563rem);
        font-style: normal;
        font-weight: 600;
        line-height: 56px;
        margin-bottom: 2rem;
      }

    }

    .hero {
      padding: 4rem 1.5rem;
      display: flex;
      align-items: center;
      height: calc(100vw * 530 / 1440);
      max-height: 530px;
      border-radius: var(--border-radius24);
      position: relative;
      overflow: hidden;

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;

        .hero-bg-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

      }

      .hero-content {
        position: relative;
        z-index: 2;
        padding: 4rem 1.5rem;

        .title {
          color: var(--white-color);
          font-family: var(--font-semibold-600);
          font-size: clamp(2.188rem, 5vw + 1rem, 3.75rem);
          font-style: normal;
          font-weight: 600;
          line-height: 64px;
        }

      }

      .hero-footer {
        position: absolute;
        z-index: 3;
        bottom: 6rem;
        right: 6rem;

        .btn-play-video {
          color: var(--white-color);
          font-family: var(--font-light-300);
          font-size: 26px;
          font-style: normal;
          font-weight: 400;
          line-height: 140%;
          transition: .1s ease;

          svg path {
            transition: .1s ease;
          }

          span {
            display: inline-block;
            padding-right: 1rem;
            transition: .3s ease-in-out;
          }

          &:hover {
            color: var(--primary-color);
          }

          &:hover span {
            padding-right: .7rem;
          }

          &:hover svg path {
            stroke: var(--primary-color);
          }

        }

      }

    }

  }

}

.explore-innovative {

  background-color: var(--color-gris-claro);
  border-radius: 24px;
  margin-top: 2rem;
  margin-bottom: 4rem;

  .container {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;

    .imggroup {
      border-radius: var(--border-radius24);
      overflow: hidden;

      img {
        width: 100%;
        height: auto;
      }
    }

    .text-content {
      padding-left: 4rem;
    }

    .subtitle {
      color: var(--color-negro70);
      font-family: var(--font-regular-400);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 1, 2;
      margin-bottom: 1.5rem;
    }

    .titleh2 {
      color: var(--secondary-color);
      font-family: var(--font-semibold-600);
      font-size: clamp(2.188rem, 3vw + 1rem, 2.563rem);
      font-style: normal;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    p {
      color: var(--color-negro40);
      font-family: var(--font-regular-400);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

  }

}

.explore-subhero {
  margin-top: -30px;
}


/* Responsive Styles */
@media (max-width: 1200px) {

  .explore-servicios {
    .titleh2 {
      line-height: 1.15;
    }
  }

  .explore-cards {
    .titleh3 {
      line-height: 1.2;
    }
  }

}

@media (max-width: 1024px) {}

@media (max-width: 992px) {

  .explore-solutions {
    .container {
      padding: 1.5rem;
    }
  }

  .explore-subhero {
    .titleh2 {
      font-size: 34px;
      line-height: 1.2;
    }
  }

}

@media (max-width: 768px) {

  .hero {
    min-height: 460px;
  }

  .explore-hero {
    .title {
      line-height: 1.3;
    }

    .hero {
      height: auto;
      max-height: 100%;
    }

  }

  .explore-servicios {
    .masonry {
      >div:nth-child(2) {
        margin-top: 0;
      }
    }

    .titleh2 {
      line-height: 1.35;
    }

  }

  .explore-solutions {
    .container {
      padding: 2rem 1.5rem;

      .card-custom {
        .coltext {
          padding: 2.5rem !important;
        }

        .card-title {
          line-height: 1.4;
          margin-bottom: 1rem;
        }

        .card-number {
          margin-bottom: 1.5rem;
        }

      }

    }

  }

  .explore-ai {
    .container {
      padding: 2rem;

      .hero {
        .hero-content {
          .title {
            line-height: 1.3;
          }

        }

        .hero-footer {
          bottom: 2.5rem;
          right: 2.5rem;
        }

      }

    }

  }

  .explore-cards {
    padding: 2rem;

    .titleh3 {
      line-height: 1.3;
    }

  }

  .explore-innovative {
    .container {
      .text-content {
        padding-left: 1rem;
      }
    }
  }

  .explore-consulting {
    .container {
      .text-content {
        padding-right: 1rem;
      }
    }
  }

}


@media (max-width: 600px) {}

@media (max-width: 560px) {}

@media (max-width: 480px) {

  .explore-solutions {
    .container {
      padding: 2rem 0;
    }
  }

  .explore-cab {
    .container {
      padding: 0 1.5rem 1rem;
    }
  }

  .explore-ai {
    .container {
      padding: 1.5rem 1rem;
    }
  }

  .explore-hero {
    .hero {
      .title {
        line-height: 1.25;
      }
    }
  }

  .explore-solutions {
    .container {
      .explore-solutions-hero {
        margin-top: 2rem;
      }
    }
  }

  .explore-ai {
    .container {
      .hero {
        .hero-content {
          .title {
            color: var(--white-color);
            font-family: var(--font-semibold-600);
            font-size: 38px;
            font-style: normal;
            font-weight: 600;
            line-height: 1.2;
          }
        }
      }
    }
  }

}


@media (max-width: 420px) {

  .explore-solutions {
    .container {
      .explore-solutions-hero {
        margin-top: 1rem;
      }
    }
  }

}


@media (max-width: 320px) {

  .explore-ai {
    .container {
      .hero {
        .hero-content {
          .title {
            font-size: 1.95rem;
            line-height: 1.15;
          }
        }
      }
    }
  }

  .explore-hero {
    .hero {
      .title {
        line-height: 1.25;
        font-size: 2.23rem;
      }
    }
  }

}