/* Contenedor principal del slider */
.slider-clientes {
    width: 100%;
    height: 90vh; /* O usa un valor específico como 500px */
    position: relative;
    overflow: hidden;
}

/* Contenedor del slider */
.sliderC {
    width: 100%;
    height: 100%; /* Asegura que cubra todo el contenedor principal */
    position: relative;
    overflow: hidden;
}

/* Cada slide */
.slidec, .slidep {
    position: absolute;
    width: 100%;
    height: 100%; /* Asegura que cubra todo el contenedor del slider */
    background-size: cover; /* Ajusta la imagen para cubrir el contenedor */
    background-position: center; /* Centra la imagen */
    opacity: 1;
    /*transition: opacity 09s ease-in-out;*/
}

/* Mostrar el primer slide */
.slidec .caption, .slidep .caption{
    /*display: none;*/
    opacity: 0;
}

/* Estilos para el texto */
.caption {
    width:50%;
    position: relative;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    margin-top: 100px;
}

.vibrar {
  animation: vibrar 0.5s;
  animation-iteration-count: 3;
}

@keyframes vibrar {
  0% { transform: translateY(0); }
  20% { transform: translateY(-10px); }
  /*40% { transform: translateX(10px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0);
 }*/
}

.deta-servicios-a, .section-a, .deta-servicios-b, #listproductos{
    opacity: 0;
}

.rotate-img-icon{
    animation: rotate 5s linear infinite;
    transition: transform 0.5s ease;
}

@keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
