*{
    transition: all 0.6s ease;
    scroll-padding-top: 90px;
}

.bg-transition-blue{
    background: linear-gradient(90deg, rgba(63,138,193,1) 0%, rgba(9,9,121,1) 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.bg-body {
    background-color: var(--bg-capa-1-background);
    background-image:var(--bg-capa-1-background-image)
}

.banner {
    position: relative;
    display: inline-block;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según tus necesidades */
    pointer-events: none; /* Esto asegura que la capa no interfiera con la interacción del usuario */
}

.banner>img{
    height: 100vh;
    object-fit: cover;
    object-position: top;
}
.navHome a {
    position: relative;
}

.navHome a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px; /* Puedes ajustar el grosor de la línea */
    background-color: currentColor; /* Usa el color del texto */
    transition: width 0.3s ease; /* Efecto suave */
  }

  .navHome a:hover::after {
    width: 100%; /* Extiende la línea al ancho completo del texto */
  }

.cardsSwiper {
    width: 240px;
    height: 320px;
  }

  .cardsSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
  }

  .scrolled{
    background-color:  var(--bs-white) !important;
    padding: 0px !important;
    margin: 0px !important;
}

.bg-capa-1{
    background-image: url('../img/bg-capa1.png');
    background-position: left;
    background-size:cover;
    background-repeat: no-repeat;

}

.nav-links a{
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    color: black !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--bs-primary) !important;
}

@keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
