:root {
  /* ==========================================
     🌐 GLOBAL VARIABLES
  ========================================== */

  /* Colores */

  /* Genomcore Black */
  --color-black: #000000;
  --color-black-gc: #1D2B36;

  /* Genomcore White */
  --color-white-gc: #FDFDFD;
  --color-white: #FFFFFF;

  /* Genomcore Gray */
  --color-gray: #8F979D;
  --color-gray-100: #F7F8FA;
  --color-gray-300: #DADEE1;
  --color-gray-600: #6B777E;
  --color-gray-800: #3F4C56;
  --color-dark-gray: #677489;
  --color-ultra-light-gray: #59636A;
  --color-ultra-dark-gray: #3F4C56;
  --color-medium-gray: #DFE4EC;
  --color-gc-gray: #DFE4EC;
  --color-light-gray: #F5F7FB;
  --color-bkg-gray: #f7f7f7;

  /* Genomcore Blue */
  --color-blue: #377EF7;
  --color-blue-dark: #035694;

  /* Genomcore Green */
  --color-green: #25C3C1;
  --color-green-light: #EBF7F7;
  --color-green-bkg: #25c3c180;

  /* Genomcore Yellow */
  --color-yellow: #FECC2E;

  /* Genomcore Yellow */
  --color-pink: #FF977A;

  /* Genomcore Gradients */
  --gradient-blue-color: linear-gradient(42deg, #377EF7 4.8%, var(--color-blue) 98.12%);
  --gradient-yellow-color: linear-gradient(42deg, #FECC2E 59.86%, #FF977A 98.12%);


  /* ⏳ Transiciones y Animaciones */
  --transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, all 0.3s ease-in-out;
  --animation: cubic-bezier(0.4, 0, 0.2, 1);


  /* ==========================================
     🌑 SHADOWS
  ========================================== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);


  /* ==========================================
     🖋️ TYPOGRAPHY
  ========================================== */
  --font-family-primary: 'Lato', sans-serif;

}

body {
  line-height: 1;
  z-index: -100;
  position: relative;
  background-color: var(--color-white-gc);
  color: var(--color-black);
  font-family: var(--font-family-primary);
  margin-top: 70px;
}

html {
  margin-top: 0 !important;
}

main {
  margin-top: 0px;
}

.row {
  margin: 0;
  padding: 0;
}

.column {
  margin: 0;
  padding: 0;
}


/* Fuentes  */




/* Botones general */

.btn.large {
  display: inline-flex;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: var(--font-family-primary);
  justify-content: center;
  align-items: center;
  border-radius: 66px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  height: 68px;
  padding: 20px 40px;
  gap: 12px;
  flex-shrink: 0;
}

.btn.medium {
  display: inline-flex;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: var(--font-family-primary);
  justify-content: center;
  align-items: center;
  border-radius: 66px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  height: 48px;
  padding: 16px 32px;
  gap: 8px;
  flex-shrink: 0;
}

.btn.small {
  display: inline-flex;
  background-color: var(--color-yellow);
  color: var(--color-black);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  border-radius: 66px;
  height: 44px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;

  &:hover {
    color: var(--color-white) !important;
    background-color: var(--color-black);
  }
}

.btn:hover {
  background-color: var(--color-black);
  box-shadow: var(--sombra-fuerte);
  color: var(--color-white);
}


.btn-secundary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  border-radius: 52px;
  color: var(--color-black);
  height: 52px;
  padding: 0 24px 0 68px;
  gap: 16px;
  font-family: var(--font-family-primary);
  font-size: 20.8px;
  font-style: normal;
  font-weight: 600;
  line-height: 29.9px;
  letter-spacing: 0.208px;
  position: relative;
  border: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;

  & .icon {
    position: absolute;
    left: 0;
    right: 0;
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    border-radius: 52px;
    transition: var(--transition);

    & svg {
      height: 24px;
      width: 24px;
      color: var(--color-white);
    }
  }

  &:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 0 68px 0 24px;
    color: var(--color-white) !important;
    background-color: var(--color-black) !important;

    & .icon {
      right: 0;
      left: calc(100% - 52px);
    }

  }

  &.large {
    height: 52px;
    padding: 0 32px 0 68px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    background-color: var(--color-yellow);
    color: var(--color-black);

    & .icon {
      position: absolute;
      left: 0;
      right: 0;
      height: 52px;
      width: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-black);
      border-radius: 52px;
      transition: var(--transition);

      & svg {
        height: 24px;
        width: 24px;
        color: var(--color-white);
      }
    }

    &:hover {
      padding: 0 68px 0 32px;

      & .icon {
        right: 0;
        left: calc(100% - 52px);
      }
    }
  }

  &.medium {
    height: 68px;
    padding: 0 20px 0 40px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }

  &.small {
    height: 44px;
    padding: 12px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }
}

@media (max-width: 768px) {
  .btn-secundary {
    font-size: 18px !important;
    border-radius: 45px !important;
    height: 45px !important;
    padding: 0 28px 0 58px !important;
    -webkit-border-radius: 45px !important;
    -moz-border-radius: 45px !important;
    -ms-border-radius: 45px !important;
    -o-border-radius: 45px !important;

    & .icon {
      height: 45px !important;
      width: 45px !important;
    }

    &:hover {
      padding: 0 58px 0 28px !important;
      color: var(--color-white) !important;
      background-color: black !important;

      & .icon {
        right: 0;
        left: calc(100% - 45px);
      }
    }
  }
}

.btn-tertiary {
  width: fit-content;
  display: flex;
  height: 40px;
  padding: 8px 45px 8px 22px;
  align-items: center;
  gap: 9px;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  border-radius: 40px;
  border: solid 1px var(--color-green);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--color-green);
  position: relative;
  transition: var(--transition);
  text-wrap: nowrap;

  & .icon {
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 22px;


    & svg {
      height: 20px;
      width: 20px;
      color: var(--color-green);
      fill: var(--color-green);

      & path {
        fill: var(--color-green);
      }
    }
  }

  &:hover {
    background-color: var(--color-green);
    color: var(--color-white);
    border: solid 1px var(--color-green);

    & .icon {
      right: 15px;
      transition: var(--transition);

      & svg {
        & path {
          fill: var(--color-white);
        }
      }
    }
  }

  &.white {
    background-color: transparent;
    color: var(--color-white);
    border: solid 1px var(--color-white);
    padding: 8px 45px 8px 22px;

    & .icon {
      right: 20px;

      & svg {
        & path {
          fill: var(--color-white);
        }
      }
    }

    &:hover {
      background-color: var(--color-green);
      color: var(--color-white);
      border: solid 1px var(--color-green);

      & .icon {
        right: 15px;

        & svg {
          & path {
            fill: var(--color-white);
          }
        }
      }
    }
  }
}

.btn-link {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  color: var(--color-blue);
  text-decoration: none;

  & svg {
    padding-left: 8px;
    height: 24px;
    width: 24px;
    color: var(--color-blue);
    fill: var(--color-blue);
  }
}

.btn.btn-link-blue {
  width: fit-content;
  text-align: center;
  color: var(--color-blue);
  text-align: center;
  font-family: 'Lato';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: fit-content;
  padding: 0;
  background: none;
  border: none;

  &:hover {
    gap: 12px;
    background: none;
    border: none;
  }

  &:active {
    gap: 12px;
    background: none;
    border: none;
  }

  &:hover::after {
    width: 100%;
  }

  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--color-blue);
    transition: width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
  }

  & svg {
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    & path {
      fill: var(--color-blue);
    }
  }



}



.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filters button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: var(--color-blue);
  color: var(--color-white);
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.filters button:hover {
  background-color: var(--color-blue);
}

.section__use-cases.tree-use-cases {
  padding: 248px 0;
  background: var(--GC-MainGradient, linear-gradient(42deg, #25C3C1 4.8%, #377EF7 98.12%));
  display: flex;
  flex-flow: column;
  gap: 48px;
  position: relative;


  &::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 364px;
    background-image: url(../img/bkg-use-cases-tree.png);
    background-repeat: no-repeat;
    background-size: 100%;

  }



  & .use-cases__hero-container {
    display: flex;
    align-items: center;
    text-align: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    max-width: 1140px;
    width: calc(100% - 48px);
    padding: 0;

    & .use-cases__hero-h2 {
      color: var(--color-white);
      text-align: left;
      font-family: var(--font-family-primary);
      font-size: 63px;
      font-style: normal;
      font-weight: 500;
      line-height: 63px;
      letter-spacing: -1.26px;
      margin-bottom: 24px;
      width: calc(100% - 24px);
    }
  }

  .use-cases-grid {
    width: calc(100% - 42px);
    flex-flow: row nowrap;
    max-width: 1140px;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 1;

    & .use-case-card {
      max-width: 32%;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      text-decoration: none;

      &.first {
        width: 100%;
        max-width: 360px;

        & .use-card__principal-link {
          display: flex;
          flex-flow: column nowrap;
          grid-template-rows: 68px 96px 44px auto;
          border-radius: 20px;
          background: var(--color-white);
          transition: background-color 0.5s ease-in-out;
          text-decoration: none;
          width: 100%;
          -webkit-transition: background-color 0.5s ease-in-out;
          -moz-transition: background-color 0.5s ease-in-out;
          -ms-transition: background-color 0.5s ease-in-out;
          -o-transition: background-color 0.5s ease-in-out;

          &:hover {
            text-decoration: none;
          }

          & .card-image {
            width: 100%;
            height: 50%;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
            position: relative;
            margin-bottom: 0;
            -webkit-border-radius: 20px 20px 0 0;
            -moz-border-radius: 20px 20px 0 0;
            -ms-border-radius: 20px 20px 0 0;
            -o-border-radius: 20px 20px 0 0;

            & img {
              border-radius: 20px 20px 0 0;
              -webkit-border-radius: 20px 20px 0 0;
              -moz-border-radius: 20px 20px 0 0;
              -ms-border-radius: 20px 20px 0 0;
              -o-border-radius: 20px 20px 0 0;
              -webkit-border-radius: 20px 20px 0 0;
            }
          }

          & .card-content {
            height: 50%;
            align-items: flex-start;
            width: 100%;
            margin: 0;
            display: flex;
            flex-flow: column nowrap;
            padding: 24px;

            & h2 {
              color: var(--color-black);
              font-family: var(--font-family-primary);
              font-size: 25px;
              font-style: normal;
              font-weight: 500;
              line-height: 27.5px;
              letter-spacing: 0.25px;
              text-decoration: none;
              text-decoration-color: var(--color-white);
              text-align: left;
              margin-left: 0;
              margin-right: 0;
              margin-bottom: 0;
              display: -webkit-box;
              -webkit-line-clamp: 3;
              -webkit-box-orient: vertical;
              overflow: hidden;
              height: auto;
              -moz-text-decoration-color: var(--color-white);
            }

            & .subtitle {
              display: none !important;
            }

            & .use-card__learn-more-link {
              text-decoration: underline;
              text-decoration-color: var(--color-white);
              margin: 0;
              color: var(--color-blue);
              text-align: left;
              color: var(--color-blue);
              font-family: var(--font-family-primary);
              font-size: 16px;
              font-style: normal;
              font-weight: 400;
              line-height: 16px;
              letter-spacing: 0.56px;
              display: inline-flex;
              align-items: center;
              transition: color 0.3s ease;
              -moz-text-decoration-color: var(--color-white);
            }
          }
        }
      }



      & .card-image {
        width: 100%;
        height: 240px;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        position: relative;
        margin-bottom: 0;
        margin: 0;


        & img {
          border-radius: 20px 20px 0 0;
          -webkit-border-radius: 20px 20px 0 0;
          -moz-border-radius: 20px 20px 0 0;
          -ms-border-radius: 20px 20px 0 0;
          -o-border-radius: 20px 20px 0 0;
          object-fit: cover;
          max-width: 100%;
          height: 100%;
        }

        & .logo {
          padding: 1rem;
        }
      }

      & .card-content {
        align-items: flex-start;
        width: 100%;
        margin: 0;
        display: flex;
        flex-flow: column nowrap;
        padding: 24px;
        gap: 24px;
        border-radius: 0 0 20px 20px;
        -webkit-border-radius: 0 0 20px 20px;
        -moz-border-radius: 0 0 20px 20px;
        -ms-border-radius: 0 0 20px 20px;
        -o-border-radius: 0 0 20px 20px;
        background-color: var(--color-white);

        & .category {
          margin: 0;
          margin-left: 0;
        }

        & h2 {
          color: var(--color-black);
          font-family: var(--font-family-primary);
          font-size: 25px;
          font-style: normal;
          font-weight: 500;
          line-height: 27.5px;
          letter-spacing: 0.25px;
          text-decoration: none;
          text-align: left;
          margin-left: 0;
          margin-right: 0;
          margin-bottom: 0;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
          height: auto;
          text-decoration: none;
          text-decoration-color: var(--color-white);
        }

        & .subtitle {
          display: none !important;
        }


      }
    }

    & .use-case-card:hover {
      & .use-card__principal-link {
        text-decoration: none !important;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;

        &.card-content {
          background-color: var(--color-green-light);

          & h2 {
            color: var(--text-white);
            text-decoration: none;
          }

          & .use-card__learn-more-link {
            text-decoration: none !important;
            text-decoration-color: rgb(46, 155, 209) !important;
            -moz-text-decoration-color: rgb(46, 155, 209) !important;
            color: var(--text-white);
          }
        }
      }
    }
  }
}

@media (max-width: 1200px) {
  .section__use-cases.tree-use-cases {
    & .use-cases__hero-container {
      flex-flow: column;

      & .use-cases__hero-h2 {
        color: var(--color-white);
        text-align: center;
        font-family: var(--font-family-primary);
        font-size: 42px;
        font-style: normal;
        font-weight: 500;
        line-height: 63px;
        letter-spacing: -1.26px;
        margin-bottom: 24px;
        width: calc(100% - 24px);
      }
    }
  }
}

@media (max-width: 768px) {
  .section__use-cases.tree-use-cases {
    padding: 280px 0px;

    & .use-cases__hero-container {
      display: flex;
      flex-flow: column;

      & .use-cases__hero-h2 {
        font-size: 32px;
        line-height: 32px;
        text-align: center;

      }
    }

    & .use-cases-grid {
      max-width: 340px;
      display: flex;
      flex-flow: column;

      & .use-case-card {
        width: 100%;
        max-width: 340px;

        &.first {
          width: 100%;
          max-width: 340px;

          & .use-card__principal-link {
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;

            &.card-content {
              & h1 {
                margin-left: 0;
                margin-right: 0;
                margin-bottom: 24px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                height: auto;
              }

              & .category {
                width: 100%;
                display: flex;
                margin-left: auto;
                margin-right: 0;
              }

              & .use-card__learn-more-link {
                grid-area: learn-more;
                height: fit-content;
                margin-left: 0;
              }
            }
          }
        }
      }

      & .use-case-card:hover {
        &.first {
          & .use-card__principal-link {
            background: linear-gradient(42deg, var(--color-blue) 4.8%, #377EF7 98.12%);
            text-decoration: none !important;
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
          }
        }
      }
    }
  }
}



.section_use-cases {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-green-light);
  position: relative;
  padding-top: 102px;
  background: var(--GC-MainGradient, linear-gradient(42deg, #25C3C1 4.8%, #377EF7 98.12%));

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: var(--color-blue-dark);
    z-index: 1;
    display: none;
  }

  & .container {
    z-index: 2;
    padding: 0;
  }

  & .section__content-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 242px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;

    & .h3-title {
      color: var(--White, var(--color-white));
      /* H2 */
      font-family: var(--font-family-primary);
      font-size: 54px;
      font-style: normal;
      font-weight: 600;
      line-height: 110%;
      /* 59.4px */
      letter-spacing: -0.54px;
    }

    & .btn-container {
      display: flex;
      justify-content: center;

      & .btn-terteary.white {
        color: var(--color-white);
        transition: var(--transition);
      }
    }
  }

  .slider-container {
    max-width: 1156px;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto 48px auto;
    background-color: var(--color-white);
    height: 460px;
    margin-bottom: 128px;
  }

  .slick-slider-2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 460px;
  }

  .slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1156px;
    width: 100%;
    height: 460px;
  }

  .slide-image {
    max-width: 40%;
    width: 100%;
    border-radius: 8px;
    height: 460px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
  }

  .slide-text {
    width: 445px;
    height: 100%;
    padding: 32px 0 0;
    border-radius: 0 8px 8px 0;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: center;

    & .slide-version {
      font-family: var(--font-family-primary);
      font-size: 10px;
      font-weight: 400;
      line-height: 12px;
      letter-spacing: 0.04em;
      text-align: center;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      color: var(--text-secundary);
      width: fit-content;
      width: Hug(136px) px;
      padding: 10px 16px;
      border-radius: 42px;
      border: 1px solid var(--text-tertiary);
      opacity: 0px;
      text-transform: uppercase;
      margin-bottom: 85px;
      display: none;
    }

    & .slide-title {
      font-family: var(--font-family-primary);
      font-size: 40px;
      font-weight: 600;
      line-height: 40px;
      text-align: left;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      color: var(--color-blue-dark);
      margin-bottom: 16px;
    }

    & .slide-subtitle {
      font-family: var(--font-family-primary);
      font-size: 16px;
      font-weight: 500;
      line-height: 23px;
      letter-spacing: 0.01em;
      text-align: left;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      color: var(--text-color);
      margin-bottom: 16px;
    }

    & .btn-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;


    }
  }

  .slide-text h2 {
    margin: 0 0 10px;
    font-size: 24px;
  }

  .slide-text p {
    margin: 0;
    font-size: 16px;
    color: #555;
  }

  .slick-prev,
  .slick-next {
    font-size: 24px !important;
    z-index: 10;
    top: 89%;
    width: 52px;
    height: 52px;

    &::before {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-blue-dark);
      color: var(--color-white);
      border-radius: 50%;
      opacity: 1;
      content: "";
      background-repeat: no-repeat;
      background-position: center;
    }
  }

  .slick-prev {
    left: calc(93% - 76px);

    &::before {
      background-image: url(../img/icon-arrow-left.svg);
    }
  }

  .slick-next {
    left: 93%;

    &::before {
      background-image: url(../img/icon-arrow-right.svg);
    }
  }

  .slick-prev:before,
  .slick-next:before {
    color: var(--color-black-gc);
  }
}

@media screen and (max-width: 991px) {
  .section_use-cases {
    max-width: 100%;
    width: 100%;
    padding: 0;



    & .section__content-title {
      max-width: calc(100% - 42px);
      gap: 24px;
      flex-flow: column;
      margin-bottom: 42px;
      margin-top: 300px;
      text-align: center;

      & .h3-title {
        color: var(--White, var(--color-white));
        font-family: var(--font-family-primary);
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        letter-spacing: -0.54px;
      }
    }

    & .slider-container {
      max-width: 472px;
      width: calc(100% - 42px);
      height: auto;
      margin-top: -1;

      & .slick-slider-2 {
        height: 100%;
        justify-content: stretch;
        align-items: stretch;

        & .slick-list {
          & .slick-track {
            & .slick-slide {
              padding: 0;

              & .slide-content {
                max-width: 100%;
                flex-flow: column;
                height: auto;

                & .slide-image {
                  max-width: 100%;
                  border-radius: 8px 8px 0 0;
                }

                & .slide-text {
                  width: 100%;
                  padding: 32px 32px 64px;

                  & .slide-version {
                    margin-bottom: 16px;
                  }
                }
              }
            }
          }
        }

        & .slick-prev,
        .slick-next {
          font-size: 24px !important;
          z-index: 10;
          top: 94%;
          width: 52px;
          height: 52px;
        }

        & .slick-prev {
          left: calc(85% - 76px);
        }

        .slick-next {
          left: 85%;
        }
      }
    }





  }
}

@media screen and (max-width: 568px) {
  .section_use-cases {
    max-width: 100%;
    width: 100%;
    padding: 0;

    & .section__content-title {
      max-width: calc(100% - 42px);
      gap: 24px;

      & .h3-title {
        color: var(--color-white);
        font-family: var(--font-family-primary);
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        letter-spacing: -0.54px;
      }
    }

    & .slider-container {
      max-width: 472px;
      width: calc(100% - 42px);
      height: auto;
      margin-top: -1;

      & .slick-slider-2 {
        height: 100%;
        justify-content: stretch;
        align-items: stretch;

        & .slick-list {
          & .slick-track {
            & .slick-slide {
              padding: 0;

              & .slide-content {
                max-width: 100%;
                flex-flow: column;
                height: auto;

                & .slide-image {
                  max-width: 100%;
                  border-radius: 8px 8px 0 0;
                  height: auto;
                }

                & .slide-text {
                  width: 100%;
                  padding: 32px 32px 64px;

                  & .slide-title {
                    font-size: 24px;
                    line-height: 24px;
                  }

                  & .slide-subtitle {
                    font-size: 16px;
                    line-height: 16px;
                  }

                  & .slide-version {
                    margin-bottom: 16px;
                  }
                }
              }
            }
          }
        }

        & .slick-prev,
        .slick-next {
          font-size: 24px !important;
          z-index: 10;
          top: 94%;
          width: 52px;
          height: 52px;
        }

        & .slick-prev {
          left: calc(80% - 76px);
        }

        .slick-next {
          left: 80%;
        }
      }
    }





  }
}




.interested_container {
  z-index: 100;
  display: flex;
  max-width: 1140px;
  width: 100%;
  padding: 64px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  position: absolute;
  margin: 0 auto;
  border-radius: 24px;
  background-image: url("../img/background-interested.png");
  background-size: cover;
  left: -50%;
  right: -50%;
  margin-top: -198px;
}

/* Estilos dentro del contenedor .container */
.interested_container .container {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}

/* Título h2 */
.interested_container .container .h2-title {
  color: var(--color-blue-dark);
  font-family: var(--font-family-primary);
}

.interested_container .container .h2-title strong {
  color: var(--color-blue-dark);
  font-family: var(--font-family-primary);
  font-weight: 700;
}

/* Subtítulo */
.interested_container .container .p-subtitle {
  color: var(--color-dark-gray);
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.4px;
}

/* Botón */
.interested_container .container .btn-container {
  margin-top: 32px;
}

.interested_container .container .btn-container a.btn-secundary {
  border-radius: 52px;
  background: var(--color-yellow);
  height: 52px;
}

.interested_container .container .btn-container a.btn-secundary .icon {
  background: var(--color-black-gc);
}

/* ======================== Media Queries ======================== */

/* Para dispositivos móviles */
@media (max-width: 767px) {
  .interested_container {
    padding: 80px 16px;
    margin-top: -150px;
    left: 0;
    right: 0;
    max-width: 350px;
    background-position: center center;
    background-size: cover;
    background-position: bottom left;
    /* background-blend-mode: overlay; */
    background-repeat: no-repeat;
    width: calc(100% - 2rem);
    background-image: url(../img/background-interested-mobile.png);

  }

  .interested_container .container .h2-title {
    font-size: 28px;
    /* Reducir el tamaño del título */
    text-align: center;

    /* Alinear el título al centro */
    & strong {
      font-size: 28px;
      text-align: center;
    }
  }

  .interested_container .container .p-subtitle {
    font-size: 16px;
    /* Reducir el tamaño del subtítulo */
    text-align: center;
    /* Alinear el subtítulo al centro */
  }

  .interested_container .container .btn-container {
    text-align: center;
    margin: 16px 0;
    /* Centrar el contenedor del botón */
  }

  .interested_container .container .btn-container a.btn-secundary {
    width: fit-content;
    /* Hacer que el botón ocupe todo el ancho */
    height: 48px;
    /* Ajustar el tamaño del botón */
    font-size: 18px;
    /* Reducir el tamaño del texto en el botón */
  }
}

/* Para tabletas */
@media (min-width: 768px) and (max-width: 1024px) {
  .interested_container {
    padding: 32px;
    margin-top: -115px;
    max-width: calc(768px - 42px);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: -417px;
  }

  .interested_container .container .h2-title {
    font-size: 40px;
    /* Reducir el tamaño del título */
    text-align: center;

    /* Centrar el título */
    & strong {
      font-size: 40px;
      text-align: center;
    }
  }

  .interested_container .container .p-subtitle {
    font-size: 18px;
    /* Reducir el tamaño del subtítulo */
    text-align: center;
    /* Centrar el subtítulo */
  }

  .interested_container .container .btn-container {
    display: flex;
    justify-content: center;
    width: 100%;

    & {
      a.btn-secundary {
        width: auto;
        /* Restaurar el ancho del botón */
        font-size: 20px;
        /* Ajustar el tamaño del texto en el botón */
      }
    }
  }
}

/* Para pantallas grandes de escritorio */
@media (min-width: 1025px) {
  .interested_container {
    padding: 64px;
    /* Padding original */
    margin-top: -198px;
    /* Posición original */
    max-width: 1140px;
    width: calc(100% - 44px);
  }

  .interested_container .container .h2-title {
    font-size: 54px;
    /* Tamaño original */
  }

  .interested_container .container .p-subtitle {
    font-size: 20px;
    /* Tamaño original */
  }

  .interested_container .container .btn-container a.btn-secundary {
    font-size: 20px;
    /* Tamaño original del texto en el botón */
  }
}


.section_use-cases {
  display: none;
}

.home .section_use-cases {
  display: flex;
}

.home .section__use-cases.tree-use-cases {
  display: none;
}

.page-template-page-use-cases {
  & .interested_container {
    display: none;
  }

  & .section__use-cases.tree-use-cases {
    display: none;
  }
}

.use_cases-template-default {
  & .interested_container {
    display: none;
  }

  & .section__use-cases.tree-use-cases {
    display: none;
  }
}

.page-template-page-contact-us {
  & .interested_container {
    display: none;
  }

  & .section__use-cases.tree-use-cases {
    display: none;
  }
}