
  /* -------------------------------------------------------------- */
  .hero-section {
    min-height: 560px;
    background: #494d55;
    position: relative;
}

.hero-section .figure-holder-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.hero-section .figure-holder {
    position: relative;
    height: 560px;
    width: 100%;
}

.hero-section .figure-holder .figure-image {
    position: absolute;
    bottom: 0;
    right: 15px;
    z-index: 10;
}

.hero-carousel {
    height: 560px;
    color: #fff;
}

.hero-carousel .carousel-inner .carousel-item {
    height: 560px;
    background-position: center center;
}

.hero-carousel .carousel-inner .item-1 {
    background-image: url("../images/hero-1.jpg");
    background-size: cover;
}

.hero-carousel .carousel-inner .item-2 {
    background-image: url("../images/hero-2.jpg");
    background-size: cover;
}

.hero-carousel .carousel-inner .item-3 {
    background-image: url("../images/hero-3.jpg");
    background-size: cover;
}

.hero-carousel .carousel-inner .heading {
    font-size: 30px;
    line-height: 1.4;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}

.hero-carousel .carousel-inner .intro {
    font-size: 18px;
}

.hero-carousel .carousel-inner .intro+.btn {
    margin-top: 15px;
}

  @media (max-width: 767.98px) {

    .hero-section .figure-image {
      width: 300px;
    }
    .hero-carousel .carousel-inner .heading {
      font-size: 26px;
    }
    .hero-carousel .carousel-inner .item-content-inner {
      padding-top: 100px;
    }
    .hero-section .figure-holder .figure-image {
      width: inherit;
      bottom: 0;
      top: inherit;
      right: inherit;
      left: 15px;
      max-width: 320px;
    }
    .technologies li {
      margin-bottom: 15px;
    }
    .members-wrapper .item {
      margin-bottom: 30px;
    }
    .members-wrapper .item:last-child {
      margin-bottom: 0;
    }
    .hero-carousel {
      height: 660px;
    }
    .hero-section .carousel-inner {
      height: 660px;
    }
    .hero-carousel .carousel-inner .item {
      height: 660px;
    }
  
  }
  
  @media (min-width: 768px) {
    .feature-nav {
      text-align: left;
      padding-left: 30px;
    }
    .hero-section .figure-holder .figure-image {
      width: 360px;
      bottom: inherit;
      top: 130px;
    }
    .hero-carousel .carousel-inner .item-content-inner {
      max-width: 300px;
      padding-top: 120px;
    }
  }
  
  @media (min-width: 992px) {
    .main-nav .nav .nav-item {
      margin-right: 25px;
    }
    .feature-nav {
      margin-top: 30px;
      padding-left: 15px;
    }
    .hero-section .figure-holder .figure-image {
      width: 420px;
      bottom: inherit;
      top: 130px;
    }
    .hero-carousel .carousel-inner .item-content-inner {
      max-width: 500px;
    }
  }
  
  @media (min-width: 1200px) {
    .hero-section .figure-holder .figure-image {
      width: 570px;
      bottom: 0;
      top: inherit;
    }
  }
  
  /* Imagen PNG superpuesta encima del carrusel */
#carouselExampleIndicators {
    position: relative;
}

.overlay-img {
    position: absolute;
    top: 20px; /* Ajusta según quieras */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none; /* No bloquea clics del slider */
    animation: flotando 3s ease-in-out infinite;
    z-index: 10; /* Asegura que esté encima */
    max-width: 150px; /* Ajusta tamaño */
}

/* Animación flotante */
@keyframes flotando {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}
