.docu-hero-section {
  background: #10191D;
  padding: 24px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

  .lh-container-larger.docu-hero-container {
    width: 100%;
    padding: 0;
    max-width: none;
  }
}

.docu-hero-grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 56px 32px 56px;
  z-index: 1;
  position: relative;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(255, 223, 111, 0.35), 0 0 72px 0 rgba(249, 226, 159, 0.20);

  .docu-hero {
    width: 100%;
    min-height: calc(100vh - 160px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    .docu-nav-logo {
      position: absolute;
      top: 0;
    }
  }
}

/* Logo Learning Heroes */
.docu-hero .docu-nav-logo {
  width: 120px;
  height: 32px;
}

/* Main Content container */
.docu-main-content {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  width: 50%;

  .docu-hero-pretitle,
  .docu-hero-title,
  .docu-hero-description {
    font-family: "Monument Grotesk", sans-serif;
    color: #FFF;
  }

  .docu-hero-pretitle {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    font-style: italic;
    margin-bottom: 12px;
    text-shadow: 0 4.665px 75.46px rgba(0, 0, 0, 0.70);
  }

  .docu-hero-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 8px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.30)
  }

  .docu-hero-description {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.30)
    font-weight: 400;
    font-size: 18px;
    margin: 0 0 24px 0;

    p {
      margin: 0;
      line-height: 26px;
      letter-spacing: 0.5px;
    }
  }

  .docu-hero-cta {
    margin: 0;
  }

}

/* Colab content */
.docu-colab-content {
  margin: 55px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;


  .docu-colab-title {
    font-family: "Monument Grotesk", sans-serif;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
  }

  .docu-colab-logos {
    display: inline-flex;
    /* gap: 50px; */
    align-items: center;
  }

}

/* Logo Docuserie */
.docu-hero .docu-logo {
  width: 385px;
  height: 188px;
  margin-bottom: 16px;
}

/* Bottom Content container */
.docu-bottom-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;

  .docu-info-content {
    max-width: 327px;
    display: inline-flex;
    flex-direction: column;
    font-family: "Monument Grotesk", sans-serif;
    color: #FFF;
    font-size: 14px;

    .docu-info-title {
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.30);
      margin: 0 0 8px 0;
    }

    .docu-info-calificacion {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 16px 0;
    }

    .docu-info-reparto {
      line-height: 135%;
    }

  }
}

/* Barra de progreso */
.progress-bar-container {
  margin-bottom: 24px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.progress-bar-wrapper {
  padding: 4px;
  border-radius: 100000px;
  border: 0.834px solid #0c9494;
  background: rgba(12, 148, 148, 0.3);
  box-shadow: 0 0 20.02px 6.673px rgba(12, 148, 148, 0.15);
}
.progress-bar {
  width: 100%;
  height: 32px;
  background: rgba(12, 148, 148, 0);
  border-radius: 16px;
  border-radius: 100000px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  align-items: center;
  background: #10bdbd;
  display: flex;
  height: 100%;
  border-radius: 100000px;
  justify-content: flex-end;
  padding-right: 16px;
  transition: width 0.3s ease;
  width: 0%; /* Inicia en 0% */
  animation: progressAnimation 2s ease-out forwards; /* Animación de 2 segundos */
}

/* Animación de la barra de progreso */
@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}

.progress-text {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  opacity: 1; /* Siempre visible */
}

.lh-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: "MonumentGrotesk", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lh-btn-primary {
  background: #FF2878;
  border-color: #FF2878;
  color: #E9ECED;
}
.lh-btn-primary:hover {
  background: #FF5393;
  border-color: #FF5393;
  color: #E9ECED;
}
.lh-btn-primary:active,
.lh-btn-primary:focus {
  background: #E8246D;
  border-color: #E8246D;
  color: #E9ECED;
}

.comparativa-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.comparativa-social-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -36px;
}

.comparativa-social-img:first-child {
  margin-left: 0;
}

.comparativa-social-text {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
  max-width: 190px;
}
.comparativa-social-img:nth-child(1) {
  z-index: 4;
}
.comparativa-social-img:nth-child(2) {
  z-index: 3;
}
.comparativa-social-img:nth-child(3) {
  z-index: 2;
}
.comparativa-social-img:nth-child(4) {
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .docu-hero-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .docu-hero-section {
    min-height: auto;
    padding: 24px 16px;
  }

  .docu-main-content {
    width: 100%;
    align-items: center;

    .docu-hero-description {
      display: none;
    }

    .docu-hero-title {
      margin: 0 0 24px 0;
      text-align: center;
    }
  }

  .docu-bottom-content {
    flex-direction: column;
    align-items: center;

    .docu-info-content {
      display: none;
    }

    .docu-colab-content {
      align-items: center;
      margin: 32px 0 0 0;

      .docu-colab-logos {
        flex-wrap: wrap;
        justify-content: space-evenly;
        /* gap: 20px;  */
      }
    }
  }

  .docu-hero .docu-logo {
    width: 283px;
    height: auto;
  }

  .docu-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
    /* padding: 40px 16px; */
    padding: 48px;
    &.no-gap {
      gap: 0;
    }
  }

  .docu-hero-container {
    padding: 0 16px;
  }


  .comparativa-social {
    justify-content: left;
  }

}

@media (max-width: 600px) {

  /* Estilos mobile específicos según especificaciones */
  .progress-bar-container {
    margin-bottom: 24px;
  }

  .progress-bar {
    height: 28px;
  }

  .progress-text {
    font-size: 14px;
  }

  /* Ajustes de animación para mobile */
  .progress-fill {
    animation-duration: 1.5s; /* Animación más rápida en mobile */
  }
}

@keyframes b2b-partners-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {

  .docu-hero .docu-logo {
    width: 260px;
  }

  .docu-hero-grid {
    padding: 32px 24px;

    .docu-hero {
      min-height: calc(100vh - 110px);
    }
  }

  .docu-main-content {
    .docu-hero-title {
      margin: 0 0 16px 0;
    }
    .docu-hero-pretitle {
      margin-bottom: 8px;
    }
  }

  .docu-bottom-content {

    .docu-colab-content {
      margin: 10px 0 0 0;
    }

    .docu-colab-logos {
        flex-wrap: wrap;
        justify-content: space-evenly;
        /* gap: 8px;  */
      
      img {
        width: 90px;
        height: auto;
      }
      
      }
    }
  
}
