.ts-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    background: #F2E8D5;
}
.ts-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 32px 24px;
    box-sizing: border-box;
    text-align: center;
    display: none;
    transition: 0.3s;
}
.ts-slide.active { display: block; }
.ts-avatar img {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}
.ts-nome {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 3px;
}
.ts-estrelas {
    color: #D5CCB8;
    font-size: 1.8em;
    margin-bottom: -10px;
}
.ts-star { margin: 0 1px; }
.ts-texto {
    font-size: 1em;
    margin-top: 8px;
    padding-top:14px;
    color: #333;
}
.ts-prev, .ts-next {
    position: absolute;
    top: 16%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 2em;
    width: 32px; height: 32px;
    cursor: pointer;
    z-index: 10;
    color: #D5CCB8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.ts-prev { 
    left: 10px; 
    background: transparent;
    transition: all 0.4s ease;
}
.ts-next { 
    right: 10px; 
    background: transparent;
    transition: all 0.4s ease;
}

.ts-prev:hover, .ts-next:hover {
    color: #c0b8a6; 
    background: transparent;
    transition: all 0.8s ease;
}
.ts-prev:focus, .ts-next:focus {
    color: #c0b8a6; 
    background: transparent;
    transition: all 0.8s ease;
}

@media (max-width: 700px) {
    .ts-slider { 
        max-width: 98vw;
        margin-left: 14px;
        margin-right: 14px; 
    }

    .ts-slide { 
        padding: 16px 22px; 
        margin-bottom: 20px;
    }

}
