.sliderTaranto-container {
    position: relative;
    width: 100%;
    margin: 30px auto;
    overflow: hidden;
}

.sliderTaranto {
    display: flex;
}

.slideTaranto {
    flex: 0 0 100%;
    overflow: hidden;
    transition: transform 0.5s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.slideTaranto img {
    width: auto;
    height: 500px;
    margin: 0 auto;
}

.slideTaranto-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
}

.sliderTaranto-dots {
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*.active {
    background-color: blue;
}*/

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    cursor: pointer;

    /* Aumentamos el padding para hacer el fondo más ancho */
    z-index: 100;
    border-radius: 50%;
    margin: 0 1%;
    font-size: 30px;
    width: 60px;
    height: 60px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}