.testimonios-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.testimonios-container {
    position: relative;
    border: 2px solid #ffbe76;
    border-radius: 20px;
}

.testimonio {
    display: none;
    padding: 20px 50px 40px;

    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    animation: fadeEffect 1s;
}

.testimonio:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonio-imagen {
    margin-bottom: 20px;
    position: relative;
    top: -80px;
    z-index: 20;
}

.testimonio-imagen img {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #ffbe76;
}

.testimonio-titulo {
    color: #FFF;
    font-size: 1.5em;
    margin-top: -5rem;
}

.testimonio-contenido {
    margin-top: 10px;
    margin-bottom: 15px;
}

.testimonio-autor {
    font-style: italic;
    font-weight: bold;
    color:rgb(206, 206, 206);
    margin-top: 15px;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.testimonio-prev,
.testimonio-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f7be68;
    color: #333;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 3px;
}

.testimonio-prev {
    left: 0;
}

.testimonio-next {
    right: 0;
}

.testimonio-prev:hover,
.testimonio-next:hover {
    background: #bd8e48;
}