

.filter-dark {
  filter: invert(1) grayscale(100%) brightness(0.2);
}

.carousel-item p {
  color: #444444; /* Gris oscuro para lectura fácil */
  font-family: var(--heading-font);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.carousel-item span {
  color: #1977cc; /* Tu color de acento azul */
  font-weight: 600;
}

#textSlider {
  height: 140px;
  background: white;
  border-radius: 15px;
  padding: 40px 0;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 20); /* Sombra suave para resaltar del fondo */
}

#textSlider p {
  margin-top: 15px;
  color: #041912; /* Tu color verde oscuro institucional */
  padding: 0 40px; /* Espacio para que el texto no toque las flechas */
}

#textSlider img {
  width:45px;
  height:45px;
  margin-top: 5px;
}

#textSlider span {
  color: #B5F857 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 50%; /* Ajusta el tamaño de la flecha dentro del círculo */
}

.carousel-control-prev-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23041912'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23041912'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* 3. Quitar el efecto azul/sombra que Bootstrap pone al hacer click */
.carousel-control-prev:focus,
.carousel-control-next:focus {
  outline: none;
  box-shadow: none;
}

.logo-slide{
    position: absolute;
    inset: 0;
    display: block;
    width: 20px;
    height: 20px;
    object-fit: cover;
    z-index: 1;
}

.logo-text{
    position: absolute;
    inset: 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 480px) {
  .sm-logot{
    width: 60px !important;
    height: 60px !important;
    margin-left: 30px !important;
  }
}

.text-element{
  position: absolute;
  margin-left: 75px;
  margin-top: 10px;
}


.element {
  animation: skew-in 0.9s ease 0s 1 normal forwards;
}

@keyframes skew-in {
  from { transform: skewX(28deg) translateX(50px); opacity: 0; }
  to { transform: skewX(0deg) translateX(0); opacity: 1; }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @keyframes rubberBand {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
  transform: scale3d(1.25, 0.75, 1);
  }
  40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
  transform: scale3d(0.75, 1.25, 1);
  }
  50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
  transform: scale3d(1.15, 0.85, 1);
  }
  65% {
  -webkit-transform: scale3d(.95, 1.05, 1);
  transform: scale3d(.95, 1.05, 1);
  }
  75% {
  -webkit-transform: scale3d(1.05, .95, 1);
  transform: scale3d(1.05, .95, 1);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  }
  @keyframes rubberBand {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
  transform: scale3d(1.25, 0.75, 1);
  }
  40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
  transform: scale3d(0.75, 1.25, 1);
  }
  50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
  transform: scale3d(1.15, 0.85, 1);
  }
  65% {
  -webkit-transform: scale3d(.95, 1.05, 1);
  transform: scale3d(.95, 1.05, 1);
  }
  75% {
  -webkit-transform: scale3d(1.05, .95, 1);
  transform: scale3d(1.05, .95, 1);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  }
