.proyectos {
  .texto_destacado {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 3rem;
    max-width: 900px;
  }

  .proyectos-list {
    list-style: none;
    padding: 0;
    position: relative;
    padding-bottom: 85px !important;
  }

  .proyectos-list li {
    cursor: pointer;
    padding: 0px !important;
    width: 100% !important;
    margin-bottom: 0px !important;
  }

  .proyecto-item {
    align-items: center;
    border-bottom: 1px solid hsl(0, 0%, 0%);
    display: flex;
    padding: 2rem 0;
    position: relative;
    text-decoration: none !important;
  }

  .proyecto-info {
    color: black;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
  }

  .proyecto-arrow-container {
    align-items: center;
    display: flex;
    gap: 1.25rem;
    justify-content: center;

    & img {
      margin-bottom: 0px !important;
      max-width: 70px;
    }
  }

  .proyecto-title {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
  }

  .proyecto-subtitle {
    font-size: 45px;
    line-height: 50px;
    margin-left: -4px;
  }

  .arrow-svg {
    transition: transform 0.3s ease;
  }

  .proyecto-thumb {
    background-position: center;
    background-size: cover;
    height: 300px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-40%);
    transition: opacity 0.3s ease;
    width: 550px;
  }

  .proyecto-item:hover .arrow-svg {
    transform: translateX(10px);
  }

  .proyecto-item:hover .proyecto-thumb {
    opacity: 1;
  }

  .proyecto-item:hover .proyecto-info {
    z-index: 2;
  }

  @media (max-width: 767px) {
    .proyecto-item {
      padding: 1.25rem 0;
    }

    .proyecto-info {
      gap: 14px;
    }

    .proyecto-subtitle {
      margin-left: 0px;
    }

    .proyecto-thumb {
      height: 185px;
      width: 300px;
    }
  }
}