.wrapper {
  width: 100%;
  padding-top: 20px;
  text-align: center;
  background-color: #7b7a7a;
  padding-bottom: 20px;
  overflow: hidden;
}

.container-slick {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
}

.container-slick h3 {
  font-size: 12px;
  position: absolute;
  top: 30%;
  left: 1%;
  margin: 0;
  color: white;
  background-color: rgb(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 0px 10px 10px 0px;
}

.container-slick button {
  position: absolute;
  top: 60%;
  left: 1%;
  margin: 0;
}

h2 {
  font-family: sans-serif;
  color: #fff;
}

.carousel {
  width: 100%; 
  justify-content: center;
  align-items: center;
}

.slick-slide {
  margin: 10px;
}

.slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}

.wrapper .slick-dots li button:before {
  font-size: 20px;
  color: rgb(10, 9, 9);
}

.button-with-shadow {
  background-color: #ff3b66; /* Color de fondo del botón */
  color: white; /* Color del texto del botón */
  padding: 10px 20px; /* Espaciado interno del botón */
  border: none; /* Elimina el borde del botón */
  border-radius: 5px; /* Borde redondeado del botón */
  font-size: 16px; /* Tamaño del texto */
  cursor: pointer; /* Cursor al pasar por encima */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra del botón */
  transition: box-shadow 0.3s ease; /* Transición suave de la sombra al pasar por encima */
}

.button-with-shadow:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra aumentada al pasar por encima */
}